chiark
/
gitweb
/
~mdw
/
zone
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7cf6460
)
frontend.lisp: Return non-nil from `main'.
author
Mark Wooding
<mdw@distorted.org.uk>
Sun, 4 Feb 2024 19:37:54 +0000
(19:37 +0000)
committer
Mark Wooding
<mdw@distorted.org.uk>
Sun, 4 Feb 2024 19:37:54 +0000
(19:37 +0000)
Otherwise some versions of `cl-launch' force a nonzero exit status.
frontend.lisp
patch
|
blob
|
blame
|
history
diff --git
a/frontend.lisp
b/frontend.lisp
index 613fb21e7ab5c19abf34b4f7966f3c8211416c1e..e170731fbd70f77ab60fc7e1c8fe100cfc4075e0 100644
(file)
--- a/
frontend.lisp
+++ b/
frontend.lisp
@@
-121,6
+121,7
@@
(defun main ()
(die-usage)))
(if opt-debug
(run)
- (with-unix-error-reporting () (run))))))
+ (with-unix-error-reporting () (run)))
+ t)))
;;;----- That's all, folks --------------------------------------------------