aboutsummaryrefslogtreecommitdiff
path: root/app/app.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'app/app.lisp')
-rw-r--r--app/app.lisp8
1 files changed, 3 insertions, 5 deletions
diff --git a/app/app.lisp b/app/app.lisp
index dff5dcb..2a04c1d 100644
--- a/app/app.lisp
+++ b/app/app.lisp
@@ -38,7 +38,7 @@
(defun toplevel/handler (cmd)
"Prints usage statement and then exits"
- (cli:print-usage-and-exit cmd *standard-output*))
+ (cli:print-usage cmd *standard-output*))
(defun toplevel/command ()
"Returns the toplevel command object."
@@ -54,8 +54,6 @@
(defun main ()
(ol::with-local-state
- (handler-case
- (cli:run (toplevel/command)))
- (error (e)
- (format t "unhandled error ~e~%" e))))
+ (cli:run (toplevel/command))
+ (format t "moooooo~%")))