aboutsummaryrefslogtreecommitdiff
path: root/app/util.lisp
diff options
context:
space:
mode:
authorColin Okay <colin@cicadas.surf>2022-08-09 10:07:05 -0500
committerColin Okay <colin@cicadas.surf>2022-08-09 10:07:05 -0500
commite955869d2868a8cf867db44aad53534a92e10b92 (patch)
tree79db0588f1acb1195b542bf82522fca95bb6d2f2 /app/util.lisp
parent0fbf73d77b814f649323c48dc8c71d2f8f0769fc (diff)
[change] the printout of ol show; [remove] uneeded stuff
Diffstat (limited to 'app/util.lisp')
-rw-r--r--app/util.lisp3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/util.lisp b/app/util.lisp
index 6bcf577..b657e51 100644
--- a/app/util.lisp
+++ b/app/util.lisp
@@ -34,5 +34,6 @@ command.
(handler-case
(destructuring-bind ,args-pattern (clingon:command-arguments *cmd*)
,@body)
- (error ()
+ (#+sbcl sb-kernel::arg-count-error
+ #+ccl ccl::simple-program-error (e)
(clingon:print-usage *cmd* t)))))))