[bugfix] case doesn't compare string equality
This commit is contained in:
parent
ea0ebf5126
commit
f09a27cd0a
|
@ -21,17 +21,17 @@
|
||||||
(display "\n")
|
(display "\n")
|
||||||
(display "Options:\n")
|
(display "Options:\n")
|
||||||
(display " -e [program] run one liner script\n")
|
(display " -e [program] run one liner script\n")
|
||||||
(display " -h show this help\n"))
|
(display " -h or --help show this help\n"))
|
||||||
|
|
||||||
(define (getopt)
|
(define (getopt)
|
||||||
(let ((args (cdr (command-line))))
|
(let ((args (cdr (command-line))))
|
||||||
(if (null? args)
|
(if (null? args)
|
||||||
#f
|
#f
|
||||||
(case (car args)
|
(case (string->symbol (car args))
|
||||||
(("-h")
|
((-h --help)
|
||||||
(print-help)
|
(print-help)
|
||||||
(exit 0))
|
(exit 0))
|
||||||
(("-e")
|
((-e)
|
||||||
(cadr args))
|
(cadr args))
|
||||||
(else
|
(else
|
||||||
(file->string (car args)))))))
|
(file->string (car args)))))))
|
||||||
|
|
Loading…
Reference in New Issue