Raymond Toy pushed to branch issue-360-add-site-init at cmucl / cmucl
Commits:
-
98bd9a4b
by Raymond Toy at 2024-12-15T18:14:43-08:00
-
814154aa
by Raymond Toy at 2024-12-15T18:18:39-08:00
1 changed file:
Changes:
... | ... | @@ -347,8 +347,8 @@ |
347 | 347 | (when (and site-init
|
348 | 348 | (not (and process-command-line
|
349 | 349 | (find-switch "nositeinit"))))
|
350 | - (or (load site-init :if-does-not-exist nil :verbose t)
|
|
351 | - (load "library:default-site-init" :if-does-not-exist nil :verbose t)))
|
|
350 | + (or (load site-init :if-does-not-exist nil :verbose nil)
|
|
351 | + (load "library:default-site-init" :if-does-not-exist nil :verbose nil)))
|
|
352 | 352 | (when (and process-command-line (find-switch "edit"))
|
353 | 353 | (setf *editor-lisp-p* t))
|
354 | 354 | (when (and load-init-file
|
... | ... | @@ -444,13 +444,7 @@ |
444 | 444 | |
445 | 445 | (setf (getf *herald-items* :bugs)
|
446 | 446 | `(,#'(lambda (stream)
|
447 | - (write-string (intl:gettext "Please report issues to ")
|
|
448 | - stream)
|
|
449 | - (write-string (intl:gettext "https://gitlab.common-lisp.net/cmucl/cmucl/-/issues")
|
|
450 | - stream))
|
|
451 | - terpri
|
|
452 | - ,#'(lambda (stream)
|
|
453 | - (write-string (intl:gettext "See <http://www.cmucl.org/> for support information.") stream))
|
|
447 | + (write-string (intl:gettext "See <http://www.cmucl.org/> for support information.") stream))
|
|
454 | 448 | terpri
|
455 | 449 | ,#'(lambda (stream)
|
456 | 450 | (write-string (intl:gettext "Loaded subsystems:") stream))))
|