diff options
| author | Glenn Morris | 2007-10-12 02:50:38 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-10-12 02:50:38 +0000 |
| commit | 5f14478455a90bbd012bf9d5a4d351d8ca743550 (patch) | |
| tree | 7269f56b1633f971d5fc537232496366cb977682 | |
| parent | 5e8b0a322e0573b4d501fa11be6501bd54fe3a6c (diff) | |
| download | emacs-5f14478455a90bbd012bf9d5a4d351d8ca743550.tar.gz emacs-5f14478455a90bbd012bf9d5a4d351d8ca743550.zip | |
Comment.
| -rw-r--r-- | lisp/startup.el | 4 |
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 | ||