X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Ftoplevel.lisp;h=d3b3271f9f493cc2fed7ca41b6d8df230b11b4ed;hb=48ec282d877900caf5ea4ab42e9d87e566ce6b43;hp=9c01fa924a97d499a8ee1151b984fcd8d892b8cc;hpb=fec3614baf361523a4fb154ed80d9b73e1452b2d;p=sbcl.git diff --git a/src/code/toplevel.lisp b/src/code/toplevel.lisp index 9c01fa9..d3b3271 100644 --- a/src/code/toplevel.lisp +++ b/src/code/toplevel.lisp @@ -473,14 +473,14 @@ steppers to maintain contextual information.") (and maybe-dir-name (concatenate 'string maybe-dir-name "/" basename)))) (let ((sysinit-truename - (probe-init-files sysinit - (init-file-name (posix-getenv "SBCL_HOME") - "sbclrc") - "/etc/sbclrc")) + #!-win32 (probe-init-files sysinit + (init-file-name (posix-getenv "SBCL_HOME") + "sbclrc") + "/etc/sbclrc")) (userinit-truename - (probe-init-files userinit - (init-file-name (posix-getenv "HOME") - ".sbclrc")))) + #!-win32 (probe-init-files userinit + (init-file-name (posix-getenv "HOME") + ".sbclrc")))) ;; This CATCH is needed for the debugger command TOPLEVEL to ;; work. @@ -561,7 +561,7 @@ steppers to maintain contextual information.") (with-simple-restart (abort "~@") (catch 'toplevel-catcher - (sb!unix::reset-signal-mask) + #!-win32 (sb!unix::reset-signal-mask) ;; In the event of a control-stack-exhausted-error, we ;; should have unwound enough stack by the time we get ;; here that this is now possible.