diff options
| author | Richard M. Stallman | 1993-09-07 08:36:48 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-09-07 08:36:48 +0000 |
| commit | 8a988f456de1b6256781b8f831aa43eb2af32fef (patch) | |
| tree | 342d46e7c8137016f4ffd76c7f6f779fe6372885 | |
| parent | e7683fffbf7fd1b764ddfbeb788abc12a38e2b78 (diff) | |
| download | emacs-8a988f456de1b6256781b8f831aa43eb2af32fef.tar.gz emacs-8a988f456de1b6256781b8f831aa43eb2af32fef.zip | |
(command-line): Setq inhibit-startup-message to nil.
| -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 71848ce1106..bdce263ceca 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -245,6 +245,10 @@ this variable, if non-nil; 2. `~/.emacs'; 3. `default.el'.") | |||
| 245 | (if site-run-file | 245 | (if site-run-file |
| 246 | (load site-run-file t t)) | 246 | (load site-run-file t t)) |
| 247 | 247 | ||
| 248 | ;; Sites should not disable this. Only individuals should disable | ||
| 249 | ;; the startup message. | ||
| 250 | (setq inhibit-startup-message nil) | ||
| 251 | |||
| 248 | ;; Load that user's init file, or the default one, or none. | 252 | ;; Load that user's init file, or the default one, or none. |
| 249 | (let ((debug-on-error init-file-debug) | 253 | (let ((debug-on-error init-file-debug) |
| 250 | ;; This function actually reads the init files. | 254 | ;; This function actually reads the init files. |