aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/startup.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 65a59f4da6d..12d283e7120 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12014-08-26 Dmitry Antipov <dmantipov@yandex.ru>
2
3 * startup.el (normal-top-level): Use top-level-message.
4
12014-08-25 Lars Magne Ingebrigtsen <larsi@gnus.org> 52014-08-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 6
3 * net/shr.el (shr-copy-url): Encode copied URL to avoid getting 7 * net/shr.el (shr-copy-url): Encode copied URL to avoid getting
diff --git a/lisp/startup.el b/lisp/startup.el
index 144d732272f..1d5ae250505 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -497,7 +497,7 @@ It sets `command-line-processed', processes the command-line,
497reads the initialization files, etc. 497reads the initialization files, etc.
498It is the default value of the variable `top-level'." 498It is the default value of the variable `top-level'."
499 (if command-line-processed 499 (if command-line-processed
500 (message "Back to top level.") 500 (message top-level-message)
501 (setq command-line-processed t) 501 (setq command-line-processed t)
502 502
503 ;; Look in each dir in load-path for a subdirs.el file. If we 503 ;; Look in each dir in load-path for a subdirs.el file. If we