aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2005-07-04 09:36:02 +0000
committerJuanma Barranquero2005-07-04 09:36:02 +0000
commitdb90d22569ef971a3afa3a3f7703d4a6ea476e16 (patch)
tree5ceeff2472c923fd710a37286ac4c4f582bad279
parent41700b79db6e52aee51d9d57c453b5f6fbd61e6e (diff)
downloademacs-db90d22569ef971a3afa3a3f7703d4a6ea476e16.tar.gz
emacs-db90d22569ef971a3afa3a3f7703d4a6ea476e16.zip
(Info-history, Info-history-forward, Info-history-list,
Info-speedbar-fetch-file-nodes): Doc fixes.
-rw-r--r--lisp/info.el10
1 files changed, 4 insertions, 6 deletions
diff --git a/lisp/info.el b/lisp/info.el
index 2f9ec3c4f0f..6bb8252f003 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -45,15 +45,15 @@
45 45
46(defvar Info-history nil 46(defvar Info-history nil
47 "Stack of info nodes user has visited. 47 "Stack of info nodes user has visited.
48Each element of list is a list (FILENAME NODENAME BUFFERPOS).") 48Each element of the stack is a list (FILENAME NODENAME BUFFERPOS).")
49 49
50(defvar Info-history-forward nil 50(defvar Info-history-forward nil
51 "Stack of info nodes user has visited with `Info-history-back' command. 51 "Stack of info nodes user has visited with `Info-history-back' command.
52Each element of list is a list (FILENAME NODENAME BUFFERPOS).") 52Each element of the stack is a list (FILENAME NODENAME BUFFERPOS).")
53 53
54(defvar Info-history-list nil 54(defvar Info-history-list nil
55 "List of all info nodes user has visited. 55 "List of all info nodes user has visited.
56Each element of list is a list (FILENAME NODENAME).") 56Each element of the list is a list (FILENAME NODENAME).")
57 57
58(defcustom Info-enable-edit nil 58(defcustom Info-enable-edit nil
59 "*Non-nil means the \\<Info-mode-map>\\[Info-edit] command in Info can edit the current node. 59 "*Non-nil means the \\<Info-mode-map>\\[Info-edit] command in Info can edit the current node.
@@ -3609,7 +3609,6 @@ Preserve text properties."
3609 keymap) 3609 keymap)
3610 "Keymap to put on the Prev link in the text or the header line.") 3610 "Keymap to put on the Prev link in the text or the header line.")
3611 3611
3612
3613(defvar Info-up-link-keymap 3612(defvar Info-up-link-keymap
3614 (let ((keymap (make-sparse-keymap))) 3613 (let ((keymap (make-sparse-keymap)))
3615 (define-key keymap [header-line mouse-1] 'Info-up) 3614 (define-key keymap [header-line mouse-1] 'Info-up)
@@ -4094,8 +4093,7 @@ INDENT is the current indentation depth."
4094 4093
4095(defun Info-speedbar-fetch-file-nodes (nodespec) 4094(defun Info-speedbar-fetch-file-nodes (nodespec)
4096 "Fetch the subnodes from the info NODESPEC. 4095 "Fetch the subnodes from the info NODESPEC.
4097NODESPEC is a string of the form: (file)node. 4096NODESPEC is a string of the form: (file)node."
4098Optional THISFILE represends the filename of"
4099 (save-excursion 4097 (save-excursion
4100 ;; Set up a buffer we can use to fake-out Info. 4098 ;; Set up a buffer we can use to fake-out Info.
4101 (set-buffer (get-buffer-create "*info-browse-tmp*")) 4099 (set-buffer (get-buffer-create "*info-browse-tmp*"))