aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-10-12 02:49:58 +0000
committerGlenn Morris2007-10-12 02:49:58 +0000
commitdbffff5b06c438aae24f8143e5c771e009da093a (patch)
tree5f599e4767f6b4b531e8bd079b0c39cb37806613
parentb8044b69d3f7637170cb5f57213a2aedc983ee7a (diff)
downloademacs-dbffff5b06c438aae24f8143e5c771e009da093a.tar.gz
emacs-dbffff5b06c438aae24f8143e5c771e009da093a.zip
Comment.
-rw-r--r--lisp/startup.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/startup.el b/lisp/startup.el
index 19ef664a2fe..f90ffeba0ef 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -815,6 +815,10 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'."
815 ;; Run the site-start library if it exists. The point of this file is 815 ;; Run the site-start library if it exists. The point of this file is
816 ;; that it is run before .emacs. There is no point in doing this after 816 ;; that it is run before .emacs. There is no point in doing this after
817 ;; .emacs; that is useless. 817 ;; .emacs; that is useless.
818 ;; Note that user-init-file is nil at this point. Code that might
819 ;; be loaded from site-run-file and wants to test if -q was given
820 ;; should check init-file-user instead, since that is already set.
821 ;; See cus-edit.el for an example.
818 (if site-run-file 822 (if site-run-file
819 (load site-run-file t t)) 823 (load site-run-file t t))
820 824