# HG changeset patch # User Richard Westhaver # Date 1722216752 14400 # Node ID bf483eff77dcfd9d2bf0870dc4ffd9c69722e5a2 # Parent 953ef5152f84f22ca189968ee932bc541a54788f fix type decl2 diff -r 953ef5152f84 -r bf483eff77dc lisp/lib/cli/clap/macs.lisp --- a/lisp/lib/cli/clap/macs.lisp Sun Jul 28 21:31:32 2024 -0400 +++ b/lisp/lib/cli/clap/macs.lisp Sun Jul 28 21:32:32 2024 -0400 @@ -33,7 +33,7 @@ (defmacro defcmd (name &body body) `(defun ,name (args opts) (declare (ignorable args opts) - (vector args opts)) + (sequence args opts)) (setq *argc* (length args) *optc* (length opts)