aboutsummaryrefslogtreecommitdiff
path: root/src/interp/htsetvar.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/htsetvar.boot')
-rw-r--r--src/interp/htsetvar.boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/htsetvar.boot b/src/interp/htsetvar.boot
index 1f82625b..ab5e9a6b 100644
--- a/src/interp/htsetvar.boot
+++ b/src/interp/htsetvar.boot
@@ -320,7 +320,7 @@ chkNonNegativeInteger s ==
chkRange s ==
(u := ncParseFromString s) and integer? u
- and u >= $htInitial and (NULL $htFinal or u <= $htFinal)
+ and u >= $htInitial and (null $htFinal or u <= $htFinal)
=> u
null $htFinal =>
STRCONC('"Please enter an integer greater than ",stringize ($htInitial - 1))