aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-09-20 12:59:41 +0000
committerGerd Moellmann2000-09-20 12:59:41 +0000
commit26ff68aad761a7f393ecee4a0d03b1ab85286ac6 (patch)
treed1e9312bc2b6ec7f4216fd70256f51a2cbbc91d8
parentce9401f30b839389617facbbeb10a8aab3a51ba9 (diff)
downloademacs-26ff68aad761a7f393ecee4a0d03b1ab85286ac6.tar.gz
emacs-26ff68aad761a7f393ecee4a0d03b1ab85286ac6.zip
(fancy-splash-text): Don't quote faces.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/startup.el14
2 files changed, 9 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3366c911ed2..a121c5a4d3d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12000-09-20 Gerd Moellmann <gerd@gnu.org> 12000-09-20 Gerd Moellmann <gerd@gnu.org>
2 2
3 * startup.el (fancy-splash-text): Don't quote faces.
4
3 * dired.el (dired-font-lock-keywords): Undo last change. 5 * dired.el (dired-font-lock-keywords): Undo last change.
4 (dired-readin): Bind indent-tabs-mode to nil. 6 (dired-readin): Bind indent-tabs-mode to nil.
5 7
diff --git a/lisp/startup.el b/lisp/startup.el
index 717409a7e6a..f793b84e63e 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -842,12 +842,12 @@ If this is nil, no message will be displayed."
842;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 842;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
843 843
844(defvar fancy-splash-text 844(defvar fancy-splash-text
845 '((:face 'variable-pitch 845 '((:face variable-pitch
846 "The menu bar and scroll bar are sufficient \ 846 "The menu bar and scroll bar are sufficient \
847for basic editing with the mouse.\n\n" 847for basic editing with the mouse.\n\n"
848 :face '(variable-pitch :weight bold) 848 :face (variable-pitch :weight bold)
849 "Useful Files menu items:\n" 849 "Useful Files menu items:\n"
850 :face 'variable-pitch "\ 850 :face variable-pitch "\
851Exit Emacs (or type Control-x followed by Control-c) 851Exit Emacs (or type Control-x followed by Control-c)
852Recover Session recover files you were editing before a crash 852Recover Session recover files you were editing before a crash
853 853
@@ -857,15 +857,15 @@ Recover Session recover files you were editing before a crash
857 (:face 'variable-pitch 857 (:face 'variable-pitch
858 "The menu bar and scroll bar are sufficient \ 858 "The menu bar and scroll bar are sufficient \
859for basic editing with the mouse.\n\n" 859for basic editing with the mouse.\n\n"
860 :face '(variable-pitch :weight bold) 860 :face (variable-pitch :weight bold)
861 "Important Help menu items:\n" 861 "Important Help menu items:\n"
862 :face 'variable-pitch "\ 862 :face variable-pitch "\
863Emacs Tutorial Learn-by-doing tutorial for using Emacs efficiently. 863Emacs Tutorial Learn-by-doing tutorial for using Emacs efficiently.
864Emacs FAQ Frequently asked questions and answers 864Emacs FAQ Frequently asked questions and answers
865\(Non)Warranty GNU Emacs comes with " 865\(Non)Warranty GNU Emacs comes with "
866 :face '(variable-pitch :slant oblique) 866 :face (variable-pitch :slant oblique)
867 "ABSOLUTELY NO WARRANTY\n" 867 "ABSOLUTELY NO WARRANTY\n"
868 :face `variable-pitch 868 :face variable-pitch
869 "Copying Conditions Conditions for redistributing and \ 869 "Copying Conditions Conditions for redistributing and \
870changing Emacs\n")) 870changing Emacs\n"))
871 "A list of texts to show in the middle part of splash screens. 871 "A list of texts to show in the middle part of splash screens.