From a1c81116b6f7cf2a004e144532707e32da62ad93 Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Thu, 6 Aug 1992 01:44:17 +0000
Subject: [PATCH] Set *ENVIRONMENT-LIST* to NIL before we start to push things
 on it in ENVIRONMENT-INIT so that we don't keep around the old values.

---
 code/save.lisp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/code/save.lisp b/code/save.lisp
index 69340429b..b77807acc 100644
--- a/code/save.lisp
+++ b/code/save.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/save.lisp,v 1.15 1992/05/25 21:37:20 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/save.lisp,v 1.16 1992/08/06 01:44:17 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -81,6 +81,7 @@
 ;;; search lists.
 ;;;
 (defun environment-init ()
+  (setq *environment-list* ())
   (dolist (ele lisp-environment-list)
     (let ((=pos (position #\= (the simple-string ele))))
       (when =pos
-- 
GitLab