(fancy-splash-screens, normal-splash-screen):
authorRichard M. Stallman <rms@gnu.org>
Sun, 24 Sep 2006 20:39:22 +0000 (20:39 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 24 Sep 2006 20:39:22 +0000 (20:39 +0000)
Call the splash buffer *About GNU Emacs*.

lisp/startup.el

index 3db972c..cd256f2 100644 (file)
@@ -1389,7 +1389,7 @@ mouse."
     (if (or (window-minibuffer-p)
            (window-dedicated-p (selected-window)))
        (pop-to-buffer (current-buffer))
-      (switch-to-buffer "GNU Emacs"))
+      (switch-to-buffer "*About GNU Emacs*"))
     (setq buffer-read-only nil)
     (erase-buffer)
     (if pure-space-overflow
@@ -1605,7 +1605,9 @@ Type \\[describe-distribution] for information on getting the latest version."))
             (error (pop-to-buffer (current-buffer))))))
       ;; Unwind ... ensure splash buffer is killed
       (if hide-on-input
-         (kill-buffer "GNU Emacs")))))
+         (kill-buffer "GNU Emacs")
+       (switch-to-buffer "GNU Emacs")
+       (rename-buffer "*About GNU Emacs*" t)))))
 
 
 (defun startup-echo-area-message ()