diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/startup.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d3e3ccc66ae..2a813b43f37 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-02-28 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * startup.el (startup-echo-area-message): Check for about-emacs. | ||
| 4 | |||
| 1 | 2008-02-28 Juri Linkov <juri@jurta.org> | 5 | 2008-02-28 Juri Linkov <juri@jurta.org> |
| 2 | 6 | ||
| 3 | * startup.el: Always add initial message to *scratch* buffer if | 7 | * startup.el: Always add initial message to *scratch* buffer if |
diff --git a/lisp/startup.el b/lisp/startup.el index 5238a1e5936..6d99e27fdef 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -1893,7 +1893,7 @@ Type \\[describe-distribution] for information on ")) | |||
| 1893 | (insert "\tBuying printed manuals from the FSF\n")) | 1893 | (insert "\tBuying printed manuals from the FSF\n")) |
| 1894 | 1894 | ||
| 1895 | (defun startup-echo-area-message () | 1895 | (defun startup-echo-area-message () |
| 1896 | (if (eq (key-binding "\C-h\C-p") 'describe-project) | 1896 | (if (eq (key-binding "\C-h\C-a") 'about-emacs) |
| 1897 | "For information about GNU Emacs and the GNU system, type C-h C-a." | 1897 | "For information about GNU Emacs and the GNU system, type C-h C-a." |
| 1898 | (substitute-command-keys | 1898 | (substitute-command-keys |
| 1899 | "For information about GNU Emacs and the GNU system, type \ | 1899 | "For information about GNU Emacs and the GNU system, type \ |