Skip to content
Snippets Groups Projects
Commit f387b155 authored by rtoy's avatar rtoy
Browse files

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.
parent e36c4f0f
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (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 @@ ...@@ -94,8 +94,7 @@
(let ((*load-verbose* *require-verbose*)) (let ((*load-verbose* *require-verbose*))
(if pathname (if pathname
(dolist (file (if (consp pathname) pathname (list pathname)) t) (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)) (unless (some (lambda (p) (funcall p module-name))
*module-provider-functions*) *module-provider-functions*)
(error "Don't know how to load ~A" module-name))))) (error "Don't know how to load ~A" module-name)))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment