]> git.eshelyaron.com Git - emacs.git/commitdiff
* startup.el (fancy-splash-text): Move editing instructions to
authorChong Yidong <cyd@stupidchicken.com>
Thu, 14 Sep 2006 17:44:48 +0000 (17:44 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Thu, 14 Sep 2006 17:44:48 +0000 (17:44 +0000)
fancy-splash-head.
(fancy-splash-head): Issue editing instructions.
(fancy-splash-screens): Fixup whitespace.

lisp/ChangeLog
lisp/startup.el

index e2aca88e6814bedf56e1acccce15dd9231350cb2..fde192f0215b36236a11a98d68586a2587bc16a6 100644 (file)
@@ -1,3 +1,10 @@
+2006-09-14  Chong Yidong  <cyd@stupidchicken.com>
+
+       * startup.el (fancy-splash-text): Move editing instructions to
+       fancy-splash-head.
+       (fancy-splash-head): Issue editing instructions.
+       (fancy-splash-screens): Fixup whitespace.
+
 2006-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * bindings.el (mode-line-buffer-identification-keymap):
index bc51b4ee037b99a9577e0c9a56efcd3a0c54a5b4..c1adf617aa4e37ac9a377eb5aa32edcaa7f6b583 100644 (file)
@@ -1113,10 +1113,7 @@ regardless of the value of this variable."
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
 (defvar fancy-splash-text
-  '((:face variable-pitch
-          "You can do basic editing with the menu bar and scroll bar \
-using the mouse.\n\n"
-          :face (variable-pitch :weight bold)
+  '((:face (variable-pitch :weight bold)
           "Important Help menu items:\n"
           :face variable-pitch
            (lambda ()
@@ -1149,18 +1146,16 @@ Read the Emacs Manual\tView the Emacs manual using Info
 Copying Conditions\tConditions for redistributing and changing Emacs
 Getting New Versions\tHow to obtain the latest version of Emacs
 More Manuals / Ordering Manuals       Buying printed manuals from the FSF\n")
-  (:face variable-pitch
-          "You can do basic editing with the menu bar and scroll bar \
-using the mouse.\n\n"
-          :face (variable-pitch :weight bold)
-          "Useful File menu items:\n"
-          :face variable-pitch "\
+  (:face (variable-pitch :weight bold)
+        "Useful File menu items:\n"
+        :face variable-pitch "\
 Exit Emacs\t(Or type Control-x followed by Control-c)
 Recover Crashed Session\tRecover files you were editing before a crash
 
 
 
 
+
 "
           ))
   "A list of texts to show in the middle part of splash screens.
@@ -1265,6 +1260,10 @@ where FACE is a valid face specification, as it can be used with
        "GNU Emacs is one component of the GNU/Linux operating system."
      "GNU Emacs is one component of the GNU operating system."))
   (insert "\n")
+  (fancy-splash-insert
+   :face 'variable-pitch
+   "You can do basic editing with the menu bar and scroll bar \
+using the mouse.\n\n")
   (if fancy-splash-outer-buffer
       (fancy-splash-insert
        :face 'variable-pitch
@@ -1400,7 +1399,11 @@ Warning Warning!!!  Pure space overflow    !!!Warning Warning
     (let (fancy-splash-outer-buffer)
       (fancy-splash-head)
       (dolist (text fancy-splash-text)
-       (apply #'fancy-splash-insert text))
+       (apply #'fancy-splash-insert text)
+       (insert "\n"))
+      (skip-chars-backward "\n")
+      (delete-region (point) (point-max))
+      (insert "\n")
       (fancy-splash-tail)
       (set-buffer-modified-p nil)
       (setq buffer-read-only t)