changelog shortlog graph tags branches files raw help

Mercurial > core / changeset: fix type decl2

changeset 565: bf483eff77dc
parent 564: 953ef5152f84
child 566: 9920c585a2b5
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 28 Jul 2024 21:32:32 -0400
files: lisp/lib/cli/clap/macs.lisp
description: fix type decl2
     1.1--- a/lisp/lib/cli/clap/macs.lisp	Sun Jul 28 21:31:32 2024 -0400
     1.2+++ b/lisp/lib/cli/clap/macs.lisp	Sun Jul 28 21:32:32 2024 -0400
     1.3@@ -33,7 +33,7 @@
     1.4 (defmacro defcmd (name &body body)
     1.5   `(defun ,name (args opts) 
     1.6      (declare (ignorable args opts)
     1.7-              (vector args opts))
     1.8+              (sequence args opts))
     1.9      (setq
    1.10       *argc* (length args)
    1.11       *optc* (length opts)