aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/startup.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/startup.el b/lisp/startup.el
index ef0e750d7dc..53fdbf3939d 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -874,6 +874,10 @@ opening the first frame (e.g. open a connection to an X server).")
874 ;; Run the site-start library if it exists. The point of this file is 874 ;; Run the site-start library if it exists. The point of this file is
875 ;; that it is run before .emacs. There is no point in doing this after 875 ;; that it is run before .emacs. There is no point in doing this after
876 ;; .emacs; that is useless. 876 ;; .emacs; that is useless.
877 ;; Note that user-init-file is nil at this point. Code that might
878 ;; be loaded from site-run-file and wants to test if -q was given
879 ;; should check init-file-user instead, since that is already set.
880 ;; See cus-edit.el for an example.
877 (if site-run-file 881 (if site-run-file
878 (load site-run-file t t)) 882 (load site-run-file t t))
879 883