aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/startup.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/startup.el b/lisp/startup.el
index c64a25edef2..38b9b1b8afd 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -724,6 +724,11 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'."
724 ;; into user-init-file. 724 ;; into user-init-file.
725 (setq user-init-file t) 725 (setq user-init-file t)
726 (load user-init-file-1 t t) 726 (load user-init-file-1 t t)
727 ;; If we did not find the user's init file,
728 ;; set user-init-file conclusively to nil;
729 ;; don't let it be set from default.el.
730 (if (eq user-init-file t)
731 (setq user-init-file nil))
727 (or inhibit-default-init 732 (or inhibit-default-init
728 (let ((inhibit-startup-message nil)) 733 (let ((inhibit-startup-message nil))
729 ;; Users are supposed to be told their rights. 734 ;; Users are supposed to be told their rights.