]> git.eshelyaron.com Git - emacs.git/commitdiff
(command-line-1): Initialize *scratch* with
authorRichard M. Stallman <rms@gnu.org>
Sun, 23 Mar 1997 20:51:17 +0000 (20:51 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 23 Mar 1997 20:51:17 +0000 (20:51 +0000)
text saying not to use it for creating a file.

lisp/startup.el

index 68f857cde74fabcafecd8bf3f9e81298885bb640..4c9e9bce7c0243e1c94a523d5c03cef0e4000e85 100644 (file)
@@ -778,11 +778,15 @@ Type \\[describe-distribution] for information on getting the latest version."))
 
                   (set-buffer-modified-p nil)
                   (sit-for 120))
-              (save-excursion
-                ;; In case the Emacs server has already selected
-                ;; another buffer, erase the one our message is in.
-                (set-buffer (get-buffer "*scratch*"))
+              (with-current-buffer (get-buffer "*scratch*")
                 (erase-buffer)
+                (insert "\
+If you want to create a file, don't type the text in this buffer.
+This buffer is for notes you don't want to save, and for Lisp evaluation.
+If you want to create a file, first visit that file with C-x C-f,
+then enter the text in that file's own buffer.
+
+")
                 (set-buffer-modified-p nil)))))
     ;; Delay 2 seconds after the init file error message
     ;; was displayed, so user can read it.