Skip to content

Commit a3bf6b3

Browse files
committed
Bug fix: stringp not string
1 parent 97136f1 commit a3bf6b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

args.lisp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ and no-flag will be NIL if `--no-flag` was passed.
8484
The description of the command can be provided as a docstring for the
8585
form."
8686
(let ((description
87-
(or (and (string (car body)) (pop body))
87+
(or (and (stringp (car body)) (pop body))
8888
"")))
8989
(with-unique-names (options command opts)
9090
`(let* ((,options

0 commit comments

Comments
 (0)