]> git.eshelyaron.com Git - emacs.git/commitdiff
Always add initial message to *scratch* buffer if
authorJuri Linkov <juri@jurta.org>
Thu, 28 Feb 2008 22:50:26 +0000 (22:50 +0000)
committerJuri Linkov <juri@jurta.org>
Thu, 28 Feb 2008 22:50:26 +0000 (22:50 +0000)
`initial-scratch-message' is non-nil regardless of the value of
`inhibit-startup-screen'.
(inhibit-startup-screen, initial-scratch-message): Doc fix.
(command-line-1): Move code that inserts `initial-scratch-message'
up before the if-form that checks for `inhibit-startup-screen'.
Suggested by Jonathan Rockway <jon@jrock.us>.

lisp/ChangeLog
lisp/startup.el

index 6ea84c84d1ad5c94722c3946f57c8c6e42ef8bda..d3e3ccc66ae8c3e6d9a30f80770081e49efd42e0 100644 (file)
@@ -1,3 +1,13 @@
+2008-02-28  Juri Linkov  <juri@jurta.org>
+
+       * startup.el: Always add initial message to *scratch* buffer if
+       `initial-scratch-message' is non-nil regardless of the value of
+       `inhibit-startup-screen'.
+       (inhibit-startup-screen, initial-scratch-message): Doc fix.
+       (command-line-1): Move code that inserts `initial-scratch-message'
+       up before the if-form that checks for `inhibit-startup-screen'.
+       Suggested by Jonathan Rockway <jon@jrock.us>.
+
 2008-02-28  Juri Linkov  <juri@jurta.org>
 
        * cus-edit.el (custom-mode-map, custom-mode-link-map):
index 27589295c4455b555c7269d07681af2df2ce0146..5238a1e5936887e2ebe83aaf371f3568c71d9c52 100644 (file)
@@ -56,7 +56,6 @@ directory using `find-file'.  If t, open the `*scratch*' buffer."
 
 (defcustom inhibit-startup-screen nil
   "Non-nil inhibits the startup screen.
-It also inhibits display of the initial message in the `*scratch*' buffer.
 
 This is for use in your personal init file (but NOT site-start.el), once
 you are familiar with the contents of the startup screen."
@@ -1155,9 +1154,7 @@ opening the first frame (e.g. open a connection to an X server).")
 
 ")
   "Initial message displayed in *scratch* buffer at startup.
-If this is nil, no message will be displayed.
-If `inhibit-startup-screen' is non-nil, then no message is displayed,
-regardless of the value of this variable."
+If this is nil, no message will be displayed."
   :type '(choice (text :tag "Message")
                 (const :tag "none" nil))
   :group 'initialization)
@@ -2185,6 +2182,14 @@ A fancy display is used on graphic displays, normal otherwise."
            ((stringp initial-buffer-choice)
             (find-file initial-buffer-choice))))
 
+    ;; If *scratch* exists and is empty, insert initial-scratch-message.
+    (and initial-scratch-message
+        (get-buffer "*scratch*")
+        (with-current-buffer "*scratch*"
+          (when (zerop (buffer-size))
+            (insert initial-scratch-message)
+            (set-buffer-modified-p nil))))
+
     (if (or inhibit-startup-screen
            initial-buffer-choice
            noninteractive
@@ -2230,14 +2235,6 @@ A fancy display is used on graphic displays, normal otherwise."
       ;; (with-no-warnings
       ;;       (setq menubar-bindings-done t))
 
-      ;; If *scratch* exists and is empty, insert initial-scratch-message.
-      (and initial-scratch-message
-          (get-buffer "*scratch*")
-          (with-current-buffer "*scratch*"
-            (when (zerop (buffer-size))
-              (insert initial-scratch-message)
-              (set-buffer-modified-p nil))))
-
       (if (> file-count 0)
          (display-startup-screen t)
        (display-startup-screen nil)))))