diff options
| author | Gerd Moellmann | 2000-09-20 12:59:41 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-09-20 12:59:41 +0000 |
| commit | 26ff68aad761a7f393ecee4a0d03b1ab85286ac6 (patch) | |
| tree | d1e9312bc2b6ec7f4216fd70256f51a2cbbc91d8 | |
| parent | ce9401f30b839389617facbbeb10a8aab3a51ba9 (diff) | |
| download | emacs-26ff68aad761a7f393ecee4a0d03b1ab85286ac6.tar.gz emacs-26ff68aad761a7f393ecee4a0d03b1ab85286ac6.zip | |
(fancy-splash-text): Don't quote faces.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/startup.el | 14 |
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 @@ | |||
| 1 | 2000-09-20 Gerd Moellmann <gerd@gnu.org> | 1 | 2000-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 \ |
| 847 | for basic editing with the mouse.\n\n" | 847 | for 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 "\ |
| 851 | Exit Emacs (or type Control-x followed by Control-c) | 851 | Exit Emacs (or type Control-x followed by Control-c) |
| 852 | Recover Session recover files you were editing before a crash | 852 | Recover 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 \ |
| 859 | for basic editing with the mouse.\n\n" | 859 | for 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 "\ |
| 863 | Emacs Tutorial Learn-by-doing tutorial for using Emacs efficiently. | 863 | Emacs Tutorial Learn-by-doing tutorial for using Emacs efficiently. |
| 864 | Emacs FAQ Frequently asked questions and answers | 864 | Emacs 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 \ |
| 870 | changing Emacs\n")) | 870 | changing 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. |