From b801a3009df391e9dd5b8fc318a512e2422c195c Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Wed, 18 May 2022 23:42:35 +0200 Subject: Idea for disabling Lisp debugger on error Found this variable in the UIOP docs. Haven't tested it yet, but this is an idea to not enter the Lisp interpreter when an unhandled error is triggered. I wonder if we can conditionally only enable this in a release build. --- src/main.lisp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.lisp b/src/main.lisp index d74faf6..4f5e1e9 100644 --- a/src/main.lisp +++ b/src/main.lisp @@ -1,5 +1,7 @@ (in-package :wajir) +(defparameter uiop:*lisp-interaction* nil) + (defun main () ;; Query page of issues ;; Start watching issue -- cgit v1.2.3