Merge pull request #385 from arthurmaciel/master

Missing parenthesis in let*
This commit is contained in:
Justin Ethier 2020-05-30 22:23:57 -04:00 committed by GitHub
commit 36c447ea0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -94,7 +94,7 @@ Options:
(else (else
(let* ((sexp-str (apply string-append sexp-strs)) (let* ((sexp-str (apply string-append sexp-strs))
(in-port (open-input-string sexp-str)) (in-port (open-input-string sexp-str))
(sexp (cons 'begin (read-all in-port))) (sexp (cons 'begin (read-all in-port))))
(display (display
(eval sexp)) (eval sexp))
(newline) (newline)