From 0b26d64dcd91a3a2aa962842629a853261dd30fe Mon Sep 17 00:00:00 2001 From: Konrad Hinsen Date: Wed, 4 Sep 2024 16:52:21 +0200 Subject: [PATCH] Make the "quicklisp not installed" notice less of a warning and add newline --- repl.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repl.lisp b/repl.lisp index c9e7fa6..a95424c 100755 --- a/repl.lisp +++ b/repl.lisp @@ -68,7 +68,7 @@ #+quicklisp (format stream "~&Quicklisp: ~a~&" (ql-dist:all-dists)) #-quicklisp - (format stream "!! Quicklisp is not installed !!")) + (format stream "Quicklisp is not installed~&")) (defun read-hist-file () (with-open-file (in *hist-file* :if-does-not-exist :create)