Added error catchall to CMD-WRAPPER

This commit is contained in:
Shinmera 2014-09-08 19:21:13 +02:00
parent 97e3ca3795
commit ba377a2853
1 changed files with 4 additions and 1 deletions

View File

@ -32,4 +32,7 @@
#+CMU extensions:*command-line-words*
#+CCL ccl:*command-line-argument-list*
NIL)))
(apply #'main (cdr args))))
(handler-case
(apply #'main (cdr args))
(error (err)
(format T "ERROR: ~a" err)))))