diff options
author | Colin Okay <colin@cicadas.surf> | 2022-08-09 10:07:05 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-08-09 10:07:05 -0500 |
commit | e955869d2868a8cf867db44aad53534a92e10b92 (patch) | |
tree | 79db0588f1acb1195b542bf82522fca95bb6d2f2 /app | |
parent | 0fbf73d77b814f649323c48dc8c71d2f8f0769fc (diff) |
[change] the printout of ol show; [remove] uneeded stuff
Diffstat (limited to 'app')
-rw-r--r-- | app/util.lisp | 3 |
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))))))) |