X-Git-Url: https://git.distorted.org.uk/~mdw/sod/blobdiff_plain/92e590b029e3cffc62b2876149ab257f0e6d8eb3..8987c73e1fd651a6be4fd3c62c9efff849151c80:/src/optparse.lisp diff --git a/src/optparse.lisp b/src/optparse.lisp index 5017fe4..1de6dfe 100644 --- a/src/optparse.lisp +++ b/src/optparse.lisp @@ -672,7 +672,7 @@ RADIX may be nil to allow radix prefixes, or an integer between 2 and 36. An option-parse-error is signalled if the ARG is not a valid integer, or if it is not between MIN and MAX (either of which may be nil if no lower - resp. upper bound is wanted)." + or upper bound is wanted)." (multiple-value-bind (v end) (parse-c-integer arg :radix radix) (unless (and v (>= end (length arg))) (option-parse-error "Bad integer `~A'" arg))