X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fearly-fasl.lisp;h=11b57b43ad079b9d5d2840b59a8a873e9608f442;hb=fdc38abbd1ef5b211c9db03c72e1730284c6edbb;hp=5115bcb040990f1e7820cfc23af9e38ea6ca7d73;hpb=e1cf2466998905e8e19e14cae6e478861ffd04ee;p=sbcl.git diff --git a/src/code/early-fasl.lisp b/src/code/early-fasl.lisp index 5115bcb..11b57b4 100644 --- a/src/code/early-fasl.lisp +++ b/src/code/early-fasl.lisp @@ -35,7 +35,7 @@ (macrolet ((define-fasl-format-features () (let (;; master value for *F-P-A-F-F* - (fpaff '(:sb-thread))) + (fpaff '(:sb-thread :sb-package-locks))) `(progn ;; a list of *(SHEBANG-)FEATURES* flags which affect ;; binary compatibility, i.e. which must be the same @@ -144,9 +144,6 @@ :initial-element (lambda () (error "corrupt fasl file: losing FOP")))) -;;;; other miscellaneous loading-related stuff - - ;;;; variables (defvar *load-depth* 0 @@ -158,15 +155,4 @@ (defvar *fasl-input-stream*) (declaim (type ansi-stream *fasl-input-stream*)) -(defvar *load-print* nil - #!+sb-doc - "the default for the :PRINT argument to LOAD") -(defvar *load-verbose* nil - ;; Note that CMU CL's default for this was T, and ANSI says it's - ;; implementation-dependent. We choose NIL on the theory that it's - ;; a nicer default behavior for Unix programs. - #!+sb-doc - "the default for the :VERBOSE argument to LOAD") - (defvar *load-code-verbose* nil) -