mescc: Robustify against empty `V' in environment.
* module/mescc.scm: Robustify against empty V in environment.
This commit is contained in:
parent
1444c67010
commit
9cc3b10763
|
@ -38,7 +38,7 @@
|
|||
(define %prefix (getenv "%prefix"))
|
||||
(define %version (getenv "%version"))
|
||||
|
||||
(when (and=> (getenv "V") (lambda (v) (> (string->number v) 1)))
|
||||
(when (and=> (getenv "V") (lambda (v) (and (= (string-length v) 1) (> (string->number v) 1))))
|
||||
(format (current-error-port) "mescc[~a]...\n" %scheme))
|
||||
|
||||
(define (unclump-single o)
|
||||
|
|
Loading…
Reference in a new issue