diff options
author | Eli Zaretskii <eliz@gnu.org> | 2017-03-04 17:37:53 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2017-03-04 17:37:53 +0200 |
commit | c26005455bfa9dd4851d59c399615e523f80c5ad (patch) | |
tree | 8936914cee9c282119a54e20fe9d83db9fe81cea /lisp/info.el | |
parent | 00f8369bbdd36b5b54249f2a729c8c93f632b440 (diff) | |
download | emacs-c26005455bfa9dd4851d59c399615e523f80c5ad.tar.gz |
Fix header shown by Info 'L' command
* lisp/info.el (Info-history-find-node): A better heading for the
list of visited nodes. (Bug#25876)
Diffstat (limited to 'lisp/info.el')
-rw-r--r-- | lisp/info.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/info.el b/lisp/info.el index 5f4ae5f0b09..a023080c8da 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -2361,8 +2361,8 @@ If SAME-FILE is non-nil, do not move to a different Info file." "History-specific implementation of `Info-find-node-2'." (insert (format "\n\^_\nFile: %s, Node: %s, Up: (dir)\n\n" (or filename Info-current-file) nodename)) - (insert "Recently Visited Nodes\n") - (insert "**********************\n\n") + (insert "History of Visited Nodes\n") + (insert "************************\n\n") (insert "* Menu:\n\n") (let ((hl (remove '("*History*" "Top") Info-history-list))) (while hl |