diff options
| -rw-r--r-- | lisp/startup.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index 43e8bb7d20d..ac29ad87a9e 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -952,10 +952,13 @@ where FACE is a valid face specification, as it can be used with | |||
| 952 | (insert-image img (propertize "xxx" 'help-echo help-echo | 952 | (insert-image img (propertize "xxx" 'help-echo help-echo |
| 953 | 'keymap map))) | 953 | 'keymap map))) |
| 954 | (insert "\n")))) | 954 | (insert "\n")))) |
| 955 | (when (eq system-type 'gnu/linux) | 955 | (if (eq system-type 'gnu/linux) |
| 956 | (fancy-splash-insert | ||
| 957 | :face '(variable-pitch :foreground "red") | ||
| 958 | "GNU Emacs is one component of a Linux-based GNU system.") | ||
| 956 | (fancy-splash-insert | 959 | (fancy-splash-insert |
| 957 | :face '(variable-pitch :foreground "red") | 960 | :face '(variable-pitch :foreground "red") |
| 958 | "GNU Emacs is one component of a Linux-based GNU system.")) | 961 | "GNU Emacs is one component of the GNU operating system.")) |
| 959 | (insert "\n")) | 962 | (insert "\n")) |
| 960 | 963 | ||
| 961 | 964 | ||