diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-05-29 16:35:56 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-05-29 16:35:56 +0000 |
commit | 74dde8ad92903d94199ca133b6ddadd0e302f724 (patch) | |
tree | 83959fd591941492b30e39490e0cc54fdd030ea8 /lisp/info.el | |
parent | 7defe888a51ebcc4443fbd1b5be2281d45e416ca (diff) | |
download | emacs-74dde8ad92903d94199ca133b6ddadd0e302f724.tar.gz |
(Info-setup-header-line): Don't hide the links line.
Diffstat (limited to 'lisp/info.el')
-rw-r--r-- | lisp/info.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el index 4711346e836..37c32270c56 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -1034,7 +1034,10 @@ Bind this in case the user sets it to nil." (set (make-local-variable 'Info-header-line) (buffer-substring header-beg header-end)) (setq header-line-format 'Info-header-line) - (narrow-to-region (1+ header-end) (point-max)))) +;;; It is useful to be able to copy the links line out of the buffer +;;; with M-w. +;;; (narrow-to-region (1+ header-end) (point-max)) + )) ;; Go to an info node specified with a filename-and-nodename string ;; of the sort that is found in pointers in nodes. |