From 9913d8518303c520d58d6c9f6869d6938f07fda7 Mon Sep 17 00:00:00 2001 From: David Botton Date: Mon, 25 Mar 2024 17:24:38 -0400 Subject: [PATCH] return nil from clog:shutdown --- source/clog-system.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/clog-system.lisp b/source/clog-system.lisp index 424fc03..7567ef1 100644 --- a/source/clog-system.lisp +++ b/source/clog-system.lisp @@ -162,8 +162,8 @@ BOOT-FILE will be used. If BOOT-FILE is nil path is removed." "Shutdown CLOG." (when *clog-running* (clrhash *url-to-on-new-window*) - (setf *clog-running* nil) - (clog-connection:shutdown-clog))) + (clog-connection:shutdown-clog) + (setf *clog-running* nil))) ;;;;;;;;;;;;;;;; ;; debug-mode ;;