diff options
| author | Richard M. Stallman | 2007-12-15 22:33:43 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-12-15 22:33:43 +0000 |
| commit | d4a629de23fa30fabaa3a5d74b909dffb5a8f590 (patch) | |
| tree | 493b0d3595ca0361670a9d8b8f7c94c963eadfd4 /lisp | |
| parent | f5e0def798c3e77ea8212f0b18c15b06456b1773 (diff) | |
| download | emacs-d4a629de23fa30fabaa3a5d74b909dffb5a8f590.tar.gz emacs-d4a629de23fa30fabaa3a5d74b909dffb5a8f590.zip | |
(fancy-splash-help-echo): Var deleted.
(fancy-splash-insert): Get help-echo from (startup-echo-area-message).
(fancy-about-screen): Don't display fancy-splash-help-echo.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/startup.el | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index ad09ff2e834..82b6a449025 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -1288,8 +1288,6 @@ Each element in the list should be a list of strings or pairs | |||
| 1288 | 1288 | ||
| 1289 | ;; These are temporary storage areas for the splash screen display. | 1289 | ;; These are temporary storage areas for the splash screen display. |
| 1290 | 1290 | ||
| 1291 | (defvar fancy-splash-help-echo nil) | ||
| 1292 | |||
| 1293 | (defun fancy-splash-insert (&rest args) | 1291 | (defun fancy-splash-insert (&rest args) |
| 1294 | "Insert text into the current buffer, with faces. | 1292 | "Insert text into the current buffer, with faces. |
| 1295 | Arguments from ARGS should be either strings; functions called | 1293 | Arguments from ARGS should be either strings; functions called |
| @@ -1323,7 +1321,7 @@ a face or button specification." | |||
| 1323 | (funcall it) | 1321 | (funcall it) |
| 1324 | it)) | 1322 | it)) |
| 1325 | 'face current-face | 1323 | 'face current-face |
| 1326 | 'help-echo fancy-splash-help-echo)))) | 1324 | 'help-echo (startup-echo-area-message))))) |
| 1327 | (setq args (cdr args))))) | 1325 | (setq args (cdr args))))) |
| 1328 | 1326 | ||
| 1329 | 1327 | ||
| @@ -1505,8 +1503,6 @@ splash screen in another window." | |||
| 1505 | (dolist (text fancy-about-text) | 1503 | (dolist (text fancy-about-text) |
| 1506 | (apply #'fancy-splash-insert text) | 1504 | (apply #'fancy-splash-insert text) |
| 1507 | (insert "\n")) | 1505 | (insert "\n")) |
| 1508 | (unless (current-message) | ||
| 1509 | (message fancy-splash-help-echo)) | ||
| 1510 | (set-buffer-modified-p nil) | 1506 | (set-buffer-modified-p nil) |
| 1511 | (goto-char (point-min)) | 1507 | (goto-char (point-min)) |
| 1512 | (force-mode-line-update)) | 1508 | (force-mode-line-update)) |