changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > core / lisp/lib/cli/clap/pkg.lisp

revision 645: 3e6a17fb5712
parent 643: f901de70a80e
child 646: 95fd920af398
     1.1--- a/lisp/lib/cli/clap/pkg.lisp	Tue Sep 10 21:52:14 2024 -0400
     1.2+++ b/lisp/lib/cli/clap/pkg.lisp	Wed Sep 11 17:24:07 2024 -0400
     1.3@@ -19,7 +19,8 @@
     1.4 (defpackage :cli/clap/macs
     1.5   (:use :cl :std :log :sb-ext :cli/clap/util :cli/clap/vars)
     1.6   (:export :defopt :defcmd
     1.7-   :make-opt-parser :with-cli-handlers :make-shorty))
     1.8+   :make-opt-parser :with-cli-handlers :make-shorty
     1.9+   :with-opt-restart-case))
    1.10 
    1.11 (defpackage :cli/clap/proto
    1.12   (:use :cl :std :log :sb-ext)
    1.13@@ -28,7 +29,11 @@
    1.14    :print-usage :print-version :do-cmds :do-cmd
    1.15    :active-cmds :active-opts :call-opt :do-opt
    1.16    :push-cmd :push-opt :cli-equal
    1.17-   :do-opts))
    1.18+   :do-opts
    1.19+   :clap-simple-error
    1.20+   :clap-simple-warning
    1.21+   :clap-warning
    1.22+   :clap-unknown-argument))
    1.23 
    1.24 (defpackage :cli/clap/ast
    1.25   (:use :cl :std :log :dat/sxp)