diff options
| author | Eli Zaretskii | 2007-02-25 21:16:11 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2007-02-25 21:16:11 +0000 |
| commit | 3b61abfe71dc16e0d3ee271788f8f96daef9d22a (patch) | |
| tree | 3b39e359a2e65687ef6ce5e683f63ffdda58490e | |
| parent | 70614fa4353d9b64f39eeec23a7e3aeae2c0f170 (diff) | |
| download | emacs-3b61abfe71dc16e0d3ee271788f8f96daef9d22a.tar.gz emacs-3b61abfe71dc16e0d3ee271788f8f96daef9d22a.zip | |
Add comment explaining why we look for simple.el on startup.
| -rw-r--r-- | lisp/startup.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index 3e26aa17409..10fadfbfd77 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -647,6 +647,8 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'." | |||
| 647 | 647 | ||
| 648 | ;; Convert preloaded file names in load-history to absolute. | 648 | ;; Convert preloaded file names in load-history to absolute. |
| 649 | (let ((simple-file-name | 649 | (let ((simple-file-name |
| 650 | ;; Look for simple.el or simple.elc and use their directory | ||
| 651 | ;; as the place where all Lisp files live. | ||
| 650 | (locate-file "simple" load-path (get-load-suffixes))) | 652 | (locate-file "simple" load-path (get-load-suffixes))) |
| 651 | lisp-dir) | 653 | lisp-dir) |
| 652 | ;; Don't abort if simple.el cannot be found, but print a warning. | 654 | ;; Don't abort if simple.el cannot be found, but print a warning. |