From bcb7c6470b5820121ada5e1656e9e8e39f3f7da2 Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Thu, 7 Feb 1991 20:18:54 +0000
Subject: [PATCH] Fixed FIND-SYMBOL-OR-LOSE to work on NIL, and also to intern
 the symbol if the error is continued, rather than randomly returning the
 result of CERROR.

---
 code/package.lisp | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/code/package.lisp b/code/package.lisp
index 95374479a..6b76e54cb 100644
--- a/code/package.lisp
+++ b/code/package.lisp
@@ -712,9 +712,14 @@
 (defun find-symbol-or-lose (symbol package)
   "Tries to find SYMBOL in PACKAGE, but signals a continuable error if
    it's not there."
-  (or (find-symbol symbol package)
-      (cerror "Ignore this symbol." "Can't find the symbol named ~S in ~S."
-	      symbol package)))
+  (multiple-value-bind (sym how)
+		       (find-symbol symbol package)
+    (cond ((not how)
+	   (cerror "INTERN this symbol."
+		   "Can't find the symbol named ~S in ~S."
+		   symbol package)
+	   (values (intern symbol package)))
+	  (t sym))))
 
 (defun stringify-symbols (symbols)
   "Takes a list of symbols and/or strings and returns a list of
-- 
GitLab