From f387b15538b982da7e9c1c6915fd6e3123f5fcaa Mon Sep 17 00:00:00 2001
From: rtoy <rtoy>
Date: Fri, 4 Mar 2005 17:09:06 +0000
Subject: [PATCH] REQUIRE should not disable package locks when loading the
 desired file.  But we still disable package locks for our system libraries
 like clx, clm, gray-streams, hemlock, etc.

---
 code/module.lisp | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/code/module.lisp b/code/module.lisp
index 1ad5936ca..187abc166 100644
--- a/code/module.lisp
+++ b/code/module.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/module.lisp,v 1.9 2004/06/20 17:43:28 pmai Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/module.lisp,v 1.10 2005/03/04 17:09:06 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 
@@ -94,8 +94,7 @@
       (let ((*load-verbose* *require-verbose*))
         (if pathname
             (dolist (file (if (consp pathname) pathname (list pathname)) t)
-              (ext:without-package-locks
-                (load file)))
+	      (load file))
             (unless (some (lambda (p) (funcall p module-name))
                           *module-provider-functions*)
               (error "Don't know how to load ~A" module-name)))))
-- 
GitLab