fix a bug with n:MIN

FossilOrigin-Name: 5f0d547a60b25530e9833b47d6ef24ef43c0553d35f30bd9e60ea42e71ab3517
This commit is contained in:
crc 2017-10-25 01:36:47 +00:00
parent 06e82a103c
commit 17ca162acb
3 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View file

@ -125,7 +125,7 @@ With this I can then define `immediate` (for state-smart words) and
~~~
:immediate (-) &class:macro reclass ;
:data (-) &class:data reclass ;
:data (-) &class:data reclass ;
~~~
`depth` returns the number of items on the data stack. This is
@ -346,7 +346,7 @@ And then some numeric comparators.
~~~
:n:MAX (-n) #2147483647 ;
:n:MIN (-n) #2147483648 ;
:n:MIN (-n) #-2147483648 ;
:n:zero? (n-f) #0 eq? ;
:n:-zero? (n-f) #0 -eq? ;
:n:negative? (n-f) #0 lt? ;

BIN
ngaImage

Binary file not shown.