aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2001-02-22 11:18:28 +0000
committerGerd Moellmann2001-02-22 11:18:28 +0000
commitd7618b6028c0616415b448a25ff7c0a3c602f749 (patch)
treeaea59e7b98ae60a35804f31d106a1ca4bb1d140b
parent754084bb4231fe33fba8d5405b12f89188d60473 (diff)
downloademacs-d7618b6028c0616415b448a25ff7c0a3c602f749.tar.gz
emacs-d7618b6028c0616415b448a25ff7c0a3c602f749.zip
(fancy-splash-text): Add a line for ordering
manuals. Reverse order of splash screens shown. (use-fancy-splash-screens-p): Adapt to the text line added.
-rw-r--r--lisp/startup.el32
1 files changed, 17 insertions, 15 deletions
diff --git a/lisp/startup.el b/lisp/startup.el
index a759a409dbb..3f024fc7426 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -981,28 +981,30 @@ If this is nil, no message will be displayed."
981 "You can do basic editing with the menu bar and scroll bar \ 981 "You can do basic editing with the menu bar and scroll bar \
982using the mouse.\n\n" 982using the mouse.\n\n"
983 :face (variable-pitch :weight bold) 983 :face (variable-pitch :weight bold)
984 "Useful File menu items:\n"
985 :face variable-pitch "\
986Exit Emacs\t(or type Control-x followed by Control-c)
987Recover Session\trecover files you were editing before a crash
988
989
990"
991 )
992 (:face variable-pitch
993 "You can do basic editing with the menu bar and scroll bar \
994using the mouse.\n\n"
995 :face (variable-pitch :weight bold)
996 "Important Help menu items:\n" 984 "Important Help menu items:\n"
997 :face variable-pitch "\ 985 :face variable-pitch "\
998Emacs Tutorial\tLearn-by-doing tutorial for using Emacs efficiently. 986Emacs Tutorial\tLearn-by-doing tutorial for using Emacs efficiently
999Emacs FAQ\tFrequently asked questions and answers 987Emacs FAQ\tFrequently asked questions and answers
1000\(Non)Warranty\tGNU Emacs comes with " 988\(Non)Warranty\tGNU Emacs comes with "
1001 :face (variable-pitch :slant oblique) 989 :face (variable-pitch :slant oblique)
1002 "ABSOLUTELY NO WARRANTY\n" 990 "ABSOLUTELY NO WARRANTY\n"
1003 :face variable-pitch 991 :face variable-pitch
1004 "\ 992 "\
1005Copying Conditions\tConditions for redistributing and changing Emacs\n")) 993Copying Conditions\tConditions for redistributing and changing Emacs
994Ordering Manuals\tHow to order Emacs manuals from the Free Software Foundation\n")
995 (:face variable-pitch
996 "You can do basic editing with the menu bar and scroll bar \
997using the mouse.\n\n"
998 :face (variable-pitch :weight bold)
999 "Useful File menu items:\n"
1000 :face variable-pitch "\
1001Exit Emacs\t(Or type Control-x followed by Control-c)
1002Recover Session\tRecover files you were editing before a crash
1003
1004
1005
1006"
1007 ))
1006 "A list of texts to show in the middle part of splash screens. 1008 "A list of texts to show in the middle part of splash screens.
1007Each element in the list should be a list of strings or pairs 1009Each element in the list should be a list of strings or pairs
1008`:face FACE', like `fancy-splash-insert' accepts them.") 1010`:face FACE', like `fancy-splash-insert' accepts them.")
@@ -1183,7 +1185,7 @@ where FACE is a valid face specification, as it can be used with
1183 "splash.xpm" "splash.pbm")))) 1185 "splash.xpm" "splash.pbm"))))
1184 (image-height (and img (cdr (image-size img)))) 1186 (image-height (and img (cdr (image-size img))))
1185 (window-height (1- (window-height (selected-window))))) 1187 (window-height (1- (window-height (selected-window)))))
1186 (> window-height (+ image-height 14))))) 1188 (> window-height (+ image-height 15)))))
1187 1189
1188 1190
1189(defun startup-echo-area-message () 1191(defun startup-echo-area-message ()