We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ed75e5 commit 42b4e4aCopy full SHA for 42b4e4a
main.lisp
@@ -290,10 +290,10 @@ Primarily used anonymize IPs and hash fields with ANONIP and HASH."
290
;;
291
;; if you handle END-OF-FILE here, it prevents the RESTART-CASE in the COMPILE-RUNTIME-* functions from being
292
;; able to handle the restarts. unsure why.
293
- (sb-int:broken-pipe nil)
+ #+sbcl (sb-int:broken-pipe nil)
294
;; If there's a debugger error, after aborting SIMPLE-FILE-ERROR is raised again. This let's a user immediately
295
;; exit after running into an error.
296
- (sb-int:simple-file-error nil)))))
+ #+sbcl (sb-int:simple-file-error nil)))))
297
298
(defun cat/command ()
299
(clingon:make-command
0 commit comments