Mercurial > emacs
annotate lisp/info.el @ 2816:7c0be881a633
Install David Mackenzie's patches to make ${srcdir} work.
* Makefile.in (srcdir, VPATH): Get this value from the top-level
Makefile.
(xmakefile): Use ${srcdir} to find the files from which we produce
xmakefile. Edit the values for srcdir and VPATH into xmakefile.
* ymakefile (srcdir, VPATH): New definitions for the Makefile
to edit.
(ALL_CFLAGS): Remove `-Is' and `-Im'; add `-I${srcdir}', and
`-I.'.
(emacs): Adjust dumping commands to deal with a separate source
directory.
(${etc}DOC): Pass `-d ${srcdir}' to make-docfile, to tell it where
to find the source files.
(prefix-args): Find the source code in ${srcdir}.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Sat, 15 May 1993 23:21:35 +0000 |
parents | 1bd4cf98df68 |
children | fa1b6b4e8409 |
rev | line source |
---|---|
754
b096f4af925c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
732
diff
changeset
|
1 ;;; info.el --- info package for Emacs. |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
2 |
1666
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
3 ;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
4 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
5 ;; Maintainer: FSF |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Keywords: help |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
7 |
325 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
325 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
24 ;;; Commentary: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
25 |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
26 ;;; Note that nowadays we expect info files to be made using makeinfo. |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
27 |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
28 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
29 |
325 | 30 (defvar Info-history nil |
31 "List of info nodes user has visited. | |
32 Each element of list is a list (FILENAME NODENAME BUFFERPOS).") | |
33 | |
34 (defvar Info-enable-edit nil | |
680
f99c8512cd41
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
660
diff
changeset
|
35 "*Non-nil means the \\<info-mode-map>\\[Info-edit] command in Info can edit the current node. |
f99c8512cd41
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
660
diff
changeset
|
36 This is convenient if you want to write info files by hand. |
f99c8512cd41
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
660
diff
changeset
|
37 However, we recommend that you not do this. |
f99c8512cd41
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
660
diff
changeset
|
38 It is better to write a Texinfo file and generate the Info file from that, |
f99c8512cd41
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
660
diff
changeset
|
39 because that gives you a printed manual as well.") |
325 | 40 |
41 (defvar Info-enable-active-nodes t | |
42 "Non-nil allows Info to execute Lisp code associated with nodes. | |
43 The Lisp code is executed when the node is selected.") | |
44 | |
540 | 45 (defvar Info-default-directory-list nil |
46 "List of default directories to search for Info documentation files. | |
47 This value is used as the default for `Info-directory-list'. It is set | |
48 in paths.el.") | |
49 | |
50 (defvar Info-directory-list nil | |
325 | 51 "List of directories to search for Info documentation files. |
540 | 52 nil means not yet initialized. In this case, Info uses the environment |
1979
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
53 variable INFOPATH to initialize it, or `Info-default-directory-list' |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
54 if there is no INFOPATH variable in the environment.") |
325 | 55 |
56 (defvar Info-current-file nil | |
57 "Info file that Info is now looking at, or nil.") | |
58 | |
59 (defvar Info-current-subfile nil | |
60 "Info subfile that is actually in the *info* buffer now, | |
61 or nil if current info file is not split into subfiles.") | |
62 | |
63 (defvar Info-current-node nil | |
64 "Name of node that Info is now looking at, or nil.") | |
65 | |
66 (defvar Info-tag-table-marker (make-marker) | |
67 "Marker pointing at beginning of current Info file's tag table. | |
68 Marker points nowhere if file has no tag table.") | |
69 | |
2561
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
70 (defvar Info-index-alternatives nil |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
71 "List of possible matches for last Info-index command.") |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
72 |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
73 (defvar Info-suffix-list '( ("" . nil) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
74 (".info" . nil) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
75 (".Z" . "uncompress") |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
76 (".Y" . "unyabba") |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
77 (".z" . "gunzip") |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
78 (".info.Z" . "uncompress") |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
79 (".info.Y" . "unyabba") |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
80 (".z" . "gunzip")) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
81 "List of file name suffixes and associated decoding commands. |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
82 Each entry should be (SUFFIX . STRING); the file is given to |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
83 the command as standard input. If STRING is nil, no decoding is done.") |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
84 |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
85 (defun info-insert-file-contents (filename &optional visit) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
86 "Insert the contents of an info file in the current buffer. |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
87 Do the right thing if the file has been compressed or zipped." |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
88 (if (null (catch 'ok |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
89 (mapcar |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
90 (function |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
91 (lambda (x) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
92 (let ((compressed (concat filename (car x)))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
93 (if (file-exists-p compressed) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
94 (progn |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
95 (insert-file-contents compressed visit) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
96 (if (cdr x) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
97 (let ((buffer-read-only nil)) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
98 (shell-command-on-region |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
99 (point-min) (point-max) (cdr x) t))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
100 (throw 'ok t)))))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
101 Info-suffix-list) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
102 nil)) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
103 (error "Can't find %s or any compressed version of it!" filename))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
104 |
325 | 105 ;;;###autoload |
106 (defun info (&optional file) | |
107 "Enter Info, the documentation browser. | |
108 Optional argument FILE specifies the file to examine; | |
109 the default is the top-level directory of Info. | |
110 | |
111 In interactive use, a prefix argument directs this command | |
112 to read a file name from the minibuffer." | |
113 (interactive (if current-prefix-arg | |
114 (list (read-file-name "Info file name: " nil nil t)))) | |
540 | 115 (or Info-directory-list |
116 (setq Info-directory-list | |
117 (let ((path (getenv "INFOPATH"))) | |
118 (if path | |
119 (let ((list nil) | |
120 idx) | |
121 (while (> (length path) 0) | |
122 (setq idx (or (string-match ":" path) (length path)) | |
123 list (cons (substring path 0 idx) list) | |
124 path (substring path (min (1+ idx) | |
125 (length path))))) | |
126 (nreverse list)) | |
127 Info-default-directory-list)))) | |
325 | 128 (if file |
129 (Info-goto-node (concat "(" file ")")) | |
130 (if (get-buffer "*info*") | |
131 (switch-to-buffer "*info*") | |
132 (Info-directory)))) | |
133 | |
134 ;; Go to an info node specified as separate filename and nodename. | |
135 ;; no-going-back is non-nil if recovering from an error in this function; | |
136 ;; it says do not attempt further (recursive) error recovery. | |
137 (defun Info-find-node (filename nodename &optional no-going-back) | |
138 ;; Convert filename to lower case if not found as specified. | |
139 ;; Expand it. | |
140 (if filename | |
141 (let (temp temp-downcase found) | |
142 (setq filename (substitute-in-file-name filename)) | |
1971
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
143 (if (string= (downcase (file-name-nondirectory filename)) "dir") |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
144 (setq found t) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
145 (let ((dirs (if (string-match "^\\./" filename) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
146 ;; If specified name starts with `./' |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
147 ;; then just try current directory. |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
148 '("./") |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
149 Info-directory-list))) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
150 ;; Search the directory list for file FILENAME. |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
151 (while (and dirs (not found)) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
152 (setq temp (expand-file-name filename (car dirs))) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
153 (setq temp-downcase |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
154 (expand-file-name (downcase filename) (car dirs))) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
155 ;; Try several variants of specified name. |
2561
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
156 (catch 'foundit |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
157 (mapcar |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
158 (function |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
159 (lambda (x) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
160 (if (file-exists-p (concat temp (car x))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
161 (progn |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
162 (setq found temp) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
163 (throw 'foundit nil))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
164 (if (file-exists-p (concat temp-downcase (car x))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
165 (progn |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
166 (setq found temp-downcase) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
167 (throw 'foundit nil))))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
168 Info-suffix-list)) |
1971
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
169 (setq dirs (cdr dirs))))) |
325 | 170 (if found |
171 (setq filename found) | |
172 (error "Info file %s does not exist" filename)))) | |
173 ;; Record the node we are leaving. | |
174 (if (and Info-current-file (not no-going-back)) | |
175 (setq Info-history | |
176 (cons (list Info-current-file Info-current-node (point)) | |
177 Info-history))) | |
178 ;; Go into info buffer. | |
179 (switch-to-buffer "*info*") | |
1484
6c2a714566d3
Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents:
1477
diff
changeset
|
180 (buffer-disable-undo (current-buffer)) |
325 | 181 (or (eq major-mode 'Info-mode) |
182 (Info-mode)) | |
183 (widen) | |
184 (setq Info-current-node nil) | |
185 (unwind-protect | |
186 (progn | |
187 ;; Switch files if necessary | |
188 (or (null filename) | |
189 (equal Info-current-file filename) | |
190 (let ((buffer-read-only nil)) | |
191 (setq Info-current-file nil | |
192 Info-current-subfile nil | |
2561
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
193 Info-index-alternatives nil |
325 | 194 buffer-file-name nil) |
195 (erase-buffer) | |
1971
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
196 (if (eq filename t) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
197 (Info-insert-dir) |
2561
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
198 (info-insert-file-contents filename t) |
1971
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
199 (setq default-directory (file-name-directory filename))) |
325 | 200 (set-buffer-modified-p nil) |
201 ;; See whether file has a tag table. Record the location if yes. | |
202 (set-marker Info-tag-table-marker nil) | |
203 (goto-char (point-max)) | |
204 (forward-line -8) | |
205 (or (equal nodename "*") | |
206 (not (search-forward "\^_\nEnd tag table\n" nil t)) | |
207 (let (pos) | |
208 ;; We have a tag table. Find its beginning. | |
209 ;; Is this an indirect file? | |
210 (search-backward "\nTag table:\n") | |
211 (setq pos (point)) | |
212 (if (save-excursion | |
213 (forward-line 2) | |
214 (looking-at "(Indirect)\n")) | |
215 ;; It is indirect. Copy it to another buffer | |
216 ;; and record that the tag table is in that buffer. | |
217 (save-excursion | |
218 (let ((buf (current-buffer))) | |
219 (set-buffer (get-buffer-create " *info tag table*")) | |
1484
6c2a714566d3
Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents:
1477
diff
changeset
|
220 (buffer-disable-undo (current-buffer)) |
325 | 221 (setq case-fold-search t) |
222 (erase-buffer) | |
223 (insert-buffer-substring buf) | |
224 (set-marker Info-tag-table-marker | |
225 (match-end 0)))) | |
998 | 226 (set-marker Info-tag-table-marker pos)))) |
325 | 227 (setq Info-current-file |
1971
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
228 (if (eq filename t) "dir" |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
229 (file-name-sans-versions buffer-file-name))))) |
325 | 230 (if (equal nodename "*") |
231 (progn (setq Info-current-node nodename) | |
232 (Info-set-mode-line)) | |
233 ;; Search file for a suitable node. | |
990
d76731ebdff0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
930
diff
changeset
|
234 (let ((guesspos (point-min)) |
d76731ebdff0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
930
diff
changeset
|
235 (regexp (concat "Node: *" (regexp-quote nodename) " *[,\t\n\177]"))) |
d76731ebdff0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
930
diff
changeset
|
236 ;; First get advice from tag table if file has one. |
d76731ebdff0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
930
diff
changeset
|
237 ;; Also, if this is an indirect info file, |
d76731ebdff0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
930
diff
changeset
|
238 ;; read the proper subfile into this buffer. |
325 | 239 (if (marker-position Info-tag-table-marker) |
240 (save-excursion | |
241 (set-buffer (marker-buffer Info-tag-table-marker)) | |
242 (goto-char Info-tag-table-marker) | |
990
d76731ebdff0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
930
diff
changeset
|
243 (if (re-search-forward regexp nil t) |
325 | 244 (progn |
245 (setq guesspos (read (current-buffer))) | |
246 ;; If this is an indirect file, | |
247 ;; determine which file really holds this node | |
248 ;; and read it in. | |
249 (if (not (eq (current-buffer) (get-buffer "*info*"))) | |
250 (setq guesspos | |
251 (Info-read-subfile guesspos)))) | |
252 (error "No such node: \"%s\"" nodename)))) | |
990
d76731ebdff0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
930
diff
changeset
|
253 (goto-char (max (point-min) (- guesspos 1000))) |
d76731ebdff0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
930
diff
changeset
|
254 ;; Now search from our advised position (or from beg of buffer) |
d76731ebdff0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
930
diff
changeset
|
255 ;; to find the actual node. |
325 | 256 (catch 'foo |
257 (while (search-forward "\n\^_" nil t) | |
258 (forward-line 1) | |
259 (let ((beg (point))) | |
260 (forward-line 1) | |
261 (if (re-search-backward regexp beg t) | |
262 (throw 'foo t)))) | |
263 (error "No such node: %s" nodename))) | |
264 (Info-select-node))) | |
265 ;; If we did not finish finding the specified node, | |
266 ;; go back to the previous one. | |
267 (or Info-current-node no-going-back | |
268 (let ((hist (car Info-history))) | |
269 (setq Info-history (cdr Info-history)) | |
270 (Info-find-node (nth 0 hist) (nth 1 hist) t) | |
271 (goto-char (nth 2 hist))))) | |
272 (goto-char (point-min))) | |
273 | |
1979
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
274 ;; Cache the contents of the (virtual) dir file, once we have merged |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
275 ;; it for the first time, so we can save time subsequently. |
1971
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
276 (defvar Info-dir-contents nil) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
277 |
1979
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
278 ;; Cache for the directory we decided to use for the default-directory |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
279 ;; of the merged dir text. |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
280 (defvar Info-dir-contents-directory nil) |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
281 |
1971
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
282 ;; Construct the Info directory node by merging the files named `dir' |
1979
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
283 ;; from various directories. Set the *info* buffer's |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
284 ;; default-directory to the first directory we actually get any text |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
285 ;; from. |
1971
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
286 (defun Info-insert-dir () |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
287 (if Info-dir-contents |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
288 (insert Info-dir-contents) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
289 (let ((dirs Info-directory-list) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
290 buffers buffer others nodes) |
1979
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
291 |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
292 ;; Search the directory list for the directory file. |
1971
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
293 (while dirs |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
294 ;; Try several variants of specified name. |
1979
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
295 ;; Try upcasing, appending `.info', or both. |
2036
a71101e5abff
(Info-forward-node): Properly go to first menu item.
Richard M. Stallman <rms@gnu.org>
parents:
2032
diff
changeset
|
296 (let* (temp |
a71101e5abff
(Info-forward-node): Properly go to first menu item.
Richard M. Stallman <rms@gnu.org>
parents:
2032
diff
changeset
|
297 (buffer |
a71101e5abff
(Info-forward-node): Properly go to first menu item.
Richard M. Stallman <rms@gnu.org>
parents:
2032
diff
changeset
|
298 (cond |
a71101e5abff
(Info-forward-node): Properly go to first menu item.
Richard M. Stallman <rms@gnu.org>
parents:
2032
diff
changeset
|
299 ((progn (setq temp (expand-file-name "DIR" (car dirs))) |
a71101e5abff
(Info-forward-node): Properly go to first menu item.
Richard M. Stallman <rms@gnu.org>
parents:
2032
diff
changeset
|
300 (file-exists-p temp)) |
a71101e5abff
(Info-forward-node): Properly go to first menu item.
Richard M. Stallman <rms@gnu.org>
parents:
2032
diff
changeset
|
301 (find-file-noselect temp)) |
a71101e5abff
(Info-forward-node): Properly go to first menu item.
Richard M. Stallman <rms@gnu.org>
parents:
2032
diff
changeset
|
302 ((progn (setq temp (expand-file-name "dir" (car dirs))) |
a71101e5abff
(Info-forward-node): Properly go to first menu item.
Richard M. Stallman <rms@gnu.org>
parents:
2032
diff
changeset
|
303 (file-exists-p temp)) |
a71101e5abff
(Info-forward-node): Properly go to first menu item.
Richard M. Stallman <rms@gnu.org>
parents:
2032
diff
changeset
|
304 (find-file-noselect temp)) |
a71101e5abff
(Info-forward-node): Properly go to first menu item.
Richard M. Stallman <rms@gnu.org>
parents:
2032
diff
changeset
|
305 ((progn (setq temp (expand-file-name "DIR.INFO" (car dirs))) |
a71101e5abff
(Info-forward-node): Properly go to first menu item.
Richard M. Stallman <rms@gnu.org>
parents:
2032
diff
changeset
|
306 (file-exists-p temp)) |
a71101e5abff
(Info-forward-node): Properly go to first menu item.
Richard M. Stallman <rms@gnu.org>
parents:
2032
diff
changeset
|
307 (find-file-noselect temp)) |
a71101e5abff
(Info-forward-node): Properly go to first menu item.
Richard M. Stallman <rms@gnu.org>
parents:
2032
diff
changeset
|
308 ((progn (setq temp (expand-file-name "dir.info" (car dirs))) |
a71101e5abff
(Info-forward-node): Properly go to first menu item.
Richard M. Stallman <rms@gnu.org>
parents:
2032
diff
changeset
|
309 (file-exists-p temp)) |
a71101e5abff
(Info-forward-node): Properly go to first menu item.
Richard M. Stallman <rms@gnu.org>
parents:
2032
diff
changeset
|
310 (find-file-noselect temp))))) |
1979
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
311 (if buffer (setq buffers (cons buffer buffers))) |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
312 (setq dirs (cdr dirs)))) |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
313 |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
314 ;; Distinguish the dir file that comes with Emacs from all the |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
315 ;; others. [This sounds like baloney - who knows what order |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
316 ;; Info-directory-list is in, especially after checking the |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
317 ;; INFOPATH variable, and why should Emacs's dir be special? If |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
318 ;; you understand what this comment should have said, please |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
319 ;; change it.] |
1971
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
320 (setq buffer (car buffers) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
321 others (cdr buffers)) |
1979
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
322 |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
323 ;; Insert the entire original dir file as a start; use its |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
324 ;; default directory as the default directory for the whole |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
325 ;; concatenation. |
1971
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
326 (insert-buffer buffer) |
1979
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
327 (setq Info-dir-contents-directory (save-excursion |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
328 (set-buffer buffer) |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
329 default-directory)) |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
330 |
1971
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
331 ;; Look at each of the other buffers one by one. |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
332 (while others |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
333 (let ((other (car others))) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
334 ;; In each, find all the menus. |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
335 (save-excursion |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
336 (set-buffer other) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
337 (goto-char (point-min)) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
338 ;; Find each menu, and add an elt to NODES for it. |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
339 (while (re-search-forward "^\\* Menu:" nil t) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
340 (let (beg nodename end) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
341 (forward-line 1) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
342 (setq beg (point)) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
343 (search-backward "\n") |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
344 (search-forward "Node: ") |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
345 (setq nodename (Info-following-node-name)) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
346 (search-forward "\n" nil 'move) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
347 (beginning-of-line) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
348 (setq end (point)) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
349 (setq nodes (cons (list nodename other beg end) nodes)))))) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
350 (setq others (cdr others))) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
351 ;; Add to the main menu a menu item for each other node. |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
352 (re-search-forward "^\\* Menu:") |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
353 (forward-line 1) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
354 (let ((menu-items '("top")) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
355 (nodes nodes) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
356 (case-fold-search t) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
357 (end (save-excursion (search-forward "" nil t) (point)))) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
358 (while nodes |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
359 (let ((nodename (car (car nodes)))) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
360 (or (member (downcase nodename) menu-items) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
361 (re-search-forward (concat "^\\* " (regexp-quote nodename) ":") |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
362 end t) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
363 (progn |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
364 (insert "* " nodename "\n") |
2038
dd9ab1e9467e
(Info-insert-dir): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
2036
diff
changeset
|
365 (setq menu-items (cons nodename menu-items))))) |
1971
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
366 (setq nodes (cdr nodes)))) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
367 ;; Now take each node of each of the other buffers |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
368 ;; and merge it into the main buffer. |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
369 (while nodes |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
370 (let ((nodename (car (car nodes)))) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
371 (goto-char (point-min)) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
372 ;; Find the like-named node in the main buffer. |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
373 (if (re-search-forward (concat "\n.*\n.*Node: " |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
374 (regexp-quote nodename) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
375 "[,\n\t]") |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
376 nil t) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
377 (progn |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
378 (search-forward "\n" nil 'move) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
379 (beginning-of-line)) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
380 ;; If none exists, add one. |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
381 (goto-char (point-max)) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
382 (insert "\nFile: dir\tnode: " nodename "\n\n* Menu:\n\n")) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
383 ;; Merge the text from the other buffer's menu |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
384 ;; into the menu in the like-named node in the main buffer. |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
385 (apply 'insert-buffer-substring (cdr (car nodes))) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
386 (insert "\n")) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
387 (setq nodes (cdr nodes))) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
388 ;; Kill all the buffers we just made. |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
389 (while buffers |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
390 (kill-buffer (car buffers)) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
391 (setq buffers (cdr buffers)))) |
1979
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
392 (setq Info-dir-contents (buffer-string))) |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
393 (setq default-directory Info-dir-contents-directory)) |
1971
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
394 |
325 | 395 (defun Info-read-subfile (nodepos) |
396 (set-buffer (marker-buffer Info-tag-table-marker)) | |
397 (goto-char (point-min)) | |
398 (search-forward "\n\^_") | |
399 (let (lastfilepos | |
400 lastfilename) | |
401 (forward-line 2) | |
402 (catch 'foo | |
403 (while (not (looking-at "\^_")) | |
404 (if (not (eolp)) | |
405 (let ((beg (point)) | |
406 thisfilepos thisfilename) | |
407 (search-forward ": ") | |
408 (setq thisfilename (buffer-substring beg (- (point) 2))) | |
409 (setq thisfilepos (read (current-buffer))) | |
410 ;; read in version 19 stops at the end of number. | |
411 ;; Advance to the next line. | |
412 (forward-line 1) | |
413 (if (> thisfilepos nodepos) | |
414 (throw 'foo t)) | |
415 (setq lastfilename thisfilename) | |
416 (setq lastfilepos thisfilepos)) | |
417 (forward-line 1)))) | |
418 (set-buffer (get-buffer "*info*")) | |
419 (or (equal Info-current-subfile lastfilename) | |
420 (let ((buffer-read-only nil)) | |
421 (setq buffer-file-name nil) | |
422 (widen) | |
423 (erase-buffer) | |
2561
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
424 (info-insert-file-contents lastfilename) |
325 | 425 (set-buffer-modified-p nil) |
426 (setq Info-current-subfile lastfilename))) | |
427 (goto-char (point-min)) | |
428 (search-forward "\n\^_") | |
429 (+ (- nodepos lastfilepos) (point)))) | |
430 | |
431 ;; Select the info node that point is in. | |
432 (defun Info-select-node () | |
433 (save-excursion | |
434 ;; Find beginning of node. | |
435 (search-backward "\n\^_") | |
436 (forward-line 2) | |
437 ;; Get nodename spelled as it is in the node. | |
438 (re-search-forward "Node:[ \t]*") | |
439 (setq Info-current-node | |
440 (buffer-substring (point) | |
441 (progn | |
442 (skip-chars-forward "^,\t\n") | |
443 (point)))) | |
444 (Info-set-mode-line) | |
445 ;; Find the end of it, and narrow. | |
446 (beginning-of-line) | |
447 (let (active-expression) | |
448 (narrow-to-region (point) | |
449 (if (re-search-forward "\n[\^_\f]" nil t) | |
450 (prog1 | |
451 (1- (point)) | |
452 (if (looking-at "[\n\^_\f]*execute: ") | |
453 (progn | |
454 (goto-char (match-end 0)) | |
455 (setq active-expression | |
456 (read (current-buffer)))))) | |
457 (point-max))) | |
458 (if Info-enable-active-nodes (eval active-expression))))) | |
459 | |
460 (defun Info-set-mode-line () | |
461 (setq mode-line-buffer-identification | |
462 (concat | |
463 "Info: (" | |
464 (if Info-current-file | |
465 (file-name-nondirectory Info-current-file) | |
466 "") | |
467 ")" | |
468 (or Info-current-node "")))) | |
469 | |
470 ;; Go to an info node specified with a filename-and-nodename string | |
471 ;; of the sort that is found in pointers in nodes. | |
472 | |
473 (defun Info-goto-node (nodename) | |
474 "Go to info node named NAME. Give just NODENAME or (FILENAME)NODENAME." | |
475 (interactive "sGoto node: ") | |
476 (let (filename) | |
477 (string-match "\\s *\\((\\s *\\([^\t)]*\\)\\s *)\\s *\\|\\)\\(.*\\)" | |
478 nodename) | |
479 (setq filename (if (= (match-beginning 1) (match-end 1)) | |
480 "" | |
481 (substring nodename (match-beginning 2) (match-end 2))) | |
482 nodename (substring nodename (match-beginning 3) (match-end 3))) | |
483 (let ((trim (string-match "\\s *\\'" filename))) | |
484 (if trim (setq filename (substring filename 0 trim)))) | |
485 (let ((trim (string-match "\\s *\\'" nodename))) | |
486 (if trim (setq nodename (substring nodename 0 trim)))) | |
487 (Info-find-node (if (equal filename "") nil filename) | |
488 (if (equal nodename "") "Top" nodename)))) | |
489 | |
540 | 490 (defun Info-restore-point (hl) |
491 "If this node has been visited, restore the point value when we left." | |
492 (if hl | |
493 (if (and (equal (nth 0 (car hl)) Info-current-file) | |
494 (equal (nth 1 (car hl)) Info-current-node)) | |
495 (goto-char (nth 2 (car hl))) | |
496 (Info-restore-point (cdr hl))))) | |
497 | |
325 | 498 (defvar Info-last-search nil |
499 "Default regexp for \\<info-mode-map>\\[Info-search] command to search for.") | |
500 | |
501 (defun Info-search (regexp) | |
502 "Search for REGEXP, starting from point, and select node it's found in." | |
503 (interactive "sSearch (regexp): ") | |
504 (if (equal regexp "") | |
505 (setq regexp Info-last-search) | |
506 (setq Info-last-search regexp)) | |
507 (let ((found ()) current | |
508 (onode Info-current-node) | |
509 (ofile Info-current-file) | |
510 (opoint (point)) | |
511 (osubfile Info-current-subfile)) | |
512 (save-excursion | |
513 (save-restriction | |
514 (widen) | |
515 (if (null Info-current-subfile) | |
516 (progn (re-search-forward regexp) (setq found (point))) | |
517 (condition-case err | |
518 (progn (re-search-forward regexp) (setq found (point))) | |
519 (search-failed nil))))) | |
520 (if (not found) ;can only happen in subfile case -- else would have erred | |
521 (unwind-protect | |
522 (let ((list ())) | |
523 (set-buffer (marker-buffer Info-tag-table-marker)) | |
524 (goto-char (point-min)) | |
525 (search-forward "\n\^_\nIndirect:") | |
526 (save-restriction | |
527 (narrow-to-region (point) | |
528 (progn (search-forward "\n\^_") | |
529 (1- (point)))) | |
530 (goto-char (point-min)) | |
531 (search-forward (concat "\n" osubfile ": ")) | |
532 (beginning-of-line) | |
533 (while (not (eobp)) | |
534 (re-search-forward "\\(^.*\\): [0-9]+$") | |
535 (goto-char (+ (match-end 1) 2)) | |
536 (setq list (cons (cons (read (current-buffer)) | |
537 (buffer-substring (match-beginning 1) | |
538 (match-end 1))) | |
539 list)) | |
540 (goto-char (1+ (match-end 0)))) | |
541 (setq list (nreverse list) | |
542 current (car (car list)) | |
543 list (cdr list))) | |
544 (while list | |
545 (message "Searching subfile %s..." (cdr (car list))) | |
546 (Info-read-subfile (car (car list))) | |
547 (setq list (cdr list)) | |
548 (goto-char (point-min)) | |
549 (if (re-search-forward regexp nil t) | |
550 (setq found (point) list ()))) | |
551 (if found | |
552 (message "") | |
553 (signal 'search-failed (list regexp)))) | |
554 (if (not found) | |
555 (progn (Info-read-subfile opoint) | |
556 (goto-char opoint) | |
557 (Info-select-node))))) | |
558 (widen) | |
559 (goto-char found) | |
560 (Info-select-node) | |
561 (or (and (equal onode Info-current-node) | |
562 (equal ofile Info-current-file)) | |
563 (setq Info-history (cons (list ofile onode opoint) | |
564 Info-history))))) | |
565 | |
566 ;; Extract the value of the node-pointer named NAME. | |
567 ;; If there is none, use ERRORNAME in the error message; | |
568 ;; if ERRORNAME is nil, just return nil. | |
569 (defun Info-extract-pointer (name &optional errorname) | |
570 (save-excursion | |
571 (goto-char (point-min)) | |
572 (forward-line 1) | |
573 (if (re-search-backward (concat name ":") nil t) | |
574 (progn | |
575 (goto-char (match-end 0)) | |
576 (Info-following-node-name)) | |
577 (if (eq errorname t) | |
578 nil | |
579 (error (concat "Node has no " (capitalize (or errorname name)))))))) | |
580 | |
1971
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
581 ;; Return the node name in the buffer following point. |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
582 ;; ALLOWEDCHARS, if non-nil, goes within [...] to make a regexp |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
583 ;; saying which chas may appear in the node name. |
325 | 584 (defun Info-following-node-name (&optional allowedchars) |
585 (skip-chars-forward " \t") | |
586 (buffer-substring | |
587 (point) | |
588 (progn | |
589 (while (looking-at (concat "[" (or allowedchars "^,\t\n") "]")) | |
590 (skip-chars-forward (concat (or allowedchars "^,\t\n") "(")) | |
591 (if (looking-at "(") | |
592 (skip-chars-forward "^)"))) | |
593 (skip-chars-backward " ") | |
594 (point)))) | |
595 | |
596 (defun Info-next () | |
597 "Go to the next node of this node." | |
598 (interactive) | |
599 (Info-goto-node (Info-extract-pointer "next"))) | |
600 | |
601 (defun Info-prev () | |
602 "Go to the previous node of this node." | |
603 (interactive) | |
604 (Info-goto-node (Info-extract-pointer "prev[ious]*" "previous"))) | |
605 | |
606 (defun Info-up () | |
607 "Go to the superior node of this node." | |
608 (interactive) | |
540 | 609 (Info-goto-node (Info-extract-pointer "up")) |
610 (Info-restore-point Info-history)) | |
325 | 611 |
612 (defun Info-last () | |
613 "Go back to the last node visited." | |
614 (interactive) | |
615 (or Info-history | |
616 (error "This is the first Info node you looked at")) | |
617 (let (filename nodename opoint) | |
618 (setq filename (car (car Info-history))) | |
619 (setq nodename (car (cdr (car Info-history)))) | |
620 (setq opoint (car (cdr (cdr (car Info-history))))) | |
621 (setq Info-history (cdr Info-history)) | |
622 (Info-find-node filename nodename) | |
623 (setq Info-history (cdr Info-history)) | |
624 (goto-char opoint))) | |
625 | |
626 (defun Info-directory () | |
627 "Go to the Info directory node." | |
628 (interactive) | |
629 (Info-find-node "dir" "top")) | |
630 | |
631 (defun Info-follow-reference (footnotename) | |
632 "Follow cross reference named NAME to the node it refers to. | |
633 NAME may be an abbreviation of the reference name." | |
634 (interactive | |
635 (let ((completion-ignore-case t) | |
636 completions default (start-point (point)) str i) | |
637 (save-excursion | |
638 (goto-char (point-min)) | |
639 (while (re-search-forward "\\*note[ \n\t]*\\([^:]*\\):" nil t) | |
640 (setq str (buffer-substring | |
641 (match-beginning 1) | |
642 (1- (point)))) | |
643 ;; See if this one should be the default. | |
644 (and (null default) | |
645 (< (match-beginning 0) start-point) | |
646 (<= start-point (point)) | |
647 (setq default t)) | |
648 (setq i 0) | |
649 (while (setq i (string-match "[ \n\t]+" str i)) | |
650 (setq str (concat (substring str 0 i) " " | |
651 (substring str (match-end 0)))) | |
652 (setq i (1+ i))) | |
653 ;; Record as a completion and perhaps as default. | |
654 (if (eq default t) (setq default str)) | |
655 (setq completions | |
656 (cons (cons str nil) | |
657 completions)))) | |
658 (if completions | |
659 (list (completing-read (if default | |
660 (concat "Follow reference named: (" | |
661 default ") ") | |
662 "Follow reference named: ") | |
663 completions default t)) | |
664 (error "No cross-references in this node")))) | |
665 (let (target beg i (str (concat "\\*note " footnotename))) | |
666 (while (setq i (string-match " " str i)) | |
667 (setq str (concat (substring str 0 i) "[ \t\n]+" (substring str (1+ i)))) | |
668 (setq i (+ i 6))) | |
669 (save-excursion | |
670 (goto-char (point-min)) | |
671 (or (re-search-forward str nil t) | |
672 (error "No cross-reference named %s" footnotename)) | |
673 (goto-char (+ (match-beginning 0) 5)) | |
674 (setq target | |
675 (Info-extract-menu-node-name "Bad format cross reference" t))) | |
676 (while (setq i (string-match "[ \t\n]+" target i)) | |
677 (setq target (concat (substring target 0 i) " " | |
678 (substring target (match-end 0)))) | |
679 (setq i (+ i 1))) | |
680 (Info-goto-node target))) | |
681 | |
682 (defun Info-extract-menu-node-name (&optional errmessage multi-line) | |
683 (skip-chars-forward " \t\n") | |
684 (let ((beg (point)) | |
685 str i) | |
686 (skip-chars-forward "^:") | |
687 (forward-char 1) | |
688 (setq str | |
689 (if (looking-at ":") | |
690 (buffer-substring beg (1- (point))) | |
691 (skip-chars-forward " \t\n") | |
692 (Info-following-node-name (if multi-line "^.,\t" "^.,\t\n")))) | |
693 (while (setq i (string-match "\n" str i)) | |
694 (aset str i ?\ )) | |
695 str)) | |
696 | |
1484
6c2a714566d3
Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents:
1477
diff
changeset
|
697 ;; No one calls this and Info-menu-item doesn't exist. |
6c2a714566d3
Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents:
1477
diff
changeset
|
698 ;;(defun Info-menu-item-sequence (list) |
6c2a714566d3
Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents:
1477
diff
changeset
|
699 ;; (while list |
6c2a714566d3
Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents:
1477
diff
changeset
|
700 ;; (Info-menu-item (car list)) |
6c2a714566d3
Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents:
1477
diff
changeset
|
701 ;; (setq list (cdr list)))) |
325 | 702 |
703 (defun Info-menu (menu-item) | |
704 "Go to node for menu item named (or abbreviated) NAME. | |
705 Completion is allowed, and the menu item point is on is the default." | |
706 (interactive | |
707 (let ((completions '()) | |
708 ;; If point is within a menu item, use that item as the default | |
709 (default nil) | |
710 (p (point)) | |
711 (last nil)) | |
712 (save-excursion | |
713 (goto-char (point-min)) | |
714 (if (not (search-forward "\n* menu:" nil t)) | |
715 (error "No menu in this node")) | |
716 (while (re-search-forward | |
717 "\n\\* \\([^:\t\n]*\\):" nil t) | |
718 (if (and (null default) | |
719 (prog1 (if last (< last p) nil) | |
720 (setq last (match-beginning 0))) | |
721 (<= p last)) | |
722 (setq default (car (car completions)))) | |
723 (setq completions (cons (cons (buffer-substring | |
724 (match-beginning 1) | |
725 (match-end 1)) | |
726 (match-beginning 1)) | |
727 completions))) | |
728 (if (and (null default) last | |
729 (< last p) | |
730 (<= p (progn (end-of-line) (point)))) | |
731 (setq default (car (car completions))))) | |
732 (let ((item nil)) | |
733 (while (null item) | |
734 (setq item (let ((completion-ignore-case t)) | |
735 (completing-read (if default | |
736 (format "Menu item (default %s): " | |
737 default) | |
738 "Menu item: ") | |
739 completions nil t))) | |
540 | 740 ;; we rely on the fact that completing-read accepts an input |
741 ;; of "" even when the require-match argument is true and "" | |
742 ;; is not a valid possibility | |
325 | 743 (if (string= item "") |
744 (if default | |
745 (setq item default) | |
746 ;; ask again | |
747 (setq item nil)))) | |
748 (list item)))) | |
749 ;; there is a problem here in that if several menu items have the same | |
750 ;; name you can only go to the node of the first with this command. | |
751 (Info-goto-node (Info-extract-menu-item menu-item))) | |
752 | |
753 (defun Info-extract-menu-item (menu-item) | |
754 (setq menu-item (regexp-quote menu-item)) | |
755 (save-excursion | |
756 (goto-char (point-min)) | |
757 (or (search-forward "\n* menu:" nil t) | |
758 (error "No menu in this node")) | |
759 (or (re-search-forward (concat "\n* " menu-item ":") nil t) | |
760 (re-search-forward (concat "\n* " menu-item) nil t) | |
761 (error "No such item in menu")) | |
762 (beginning-of-line) | |
763 (forward-char 2) | |
764 (Info-extract-menu-node-name))) | |
765 | |
766 ;; If COUNT is nil, use the last item in the menu. | |
767 (defun Info-extract-menu-counting (count) | |
768 (save-excursion | |
769 (goto-char (point-min)) | |
770 (or (search-forward "\n* menu:" nil t) | |
771 (error "No menu in this node")) | |
772 (if count | |
773 (or (search-forward "\n* " nil t count) | |
774 (error "Too few items in menu")) | |
775 (while (search-forward "\n* " nil t) | |
776 nil)) | |
777 (Info-extract-menu-node-name))) | |
778 | |
1666
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
779 (defun Info-nth-menu-item () |
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
780 "Go to the node of the Nth menu item. |
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
781 N is the digit argument used to invoke this command." |
325 | 782 (interactive) |
1666
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
783 (Info-goto-node |
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
784 (Info-extract-menu-counting |
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
785 (- (aref (this-command-keys) (1- (length (this-command-keys)))) ?0)))) |
325 | 786 |
787 (defun Info-top-node () | |
788 "Go to the Top node of this file." | |
789 (interactive) | |
790 (Info-goto-node "Top")) | |
791 | |
792 (defun Info-final-node () | |
793 "Go to the final node in this file." | |
794 (interactive) | |
795 (Info-goto-node "Top") | |
796 (let (Info-history) | |
797 ;; Go to the last node in the menu of Top. | |
798 (Info-goto-node (Info-extract-menu-counting nil)) | |
799 ;; If the last node in the menu is not last in pointer structure, | |
800 ;; move forward until we can't go any farther. | |
801 (while (Info-forward-node t t) nil) | |
802 ;; Then keep moving down to last subnode, unless we reach an index. | |
803 (while (and (not (string-match "\\<index\\>" Info-current-node)) | |
804 (save-excursion (search-forward "\n* Menu:" nil t))) | |
805 (Info-goto-node (Info-extract-menu-counting nil))))) | |
806 | |
807 (defun Info-forward-node (&optional not-down no-error) | |
808 "Go forward one node, considering all nodes as forming one sequence." | |
809 (interactive) | |
810 (goto-char (point-min)) | |
811 (forward-line 1) | |
812 ;; three possibilities, in order of priority: | |
813 ;; 1. next node is in a menu in this node (but not in an index) | |
814 ;; 2. next node is next at same level | |
815 ;; 3. next node is up and next | |
816 (cond ((and (not not-down) | |
817 (save-excursion (search-forward "\n* menu:" nil t)) | |
818 (not (string-match "\\<index\\>" Info-current-node))) | |
2036
a71101e5abff
(Info-forward-node): Properly go to first menu item.
Richard M. Stallman <rms@gnu.org>
parents:
2032
diff
changeset
|
819 (Info-goto-node (Info-extract-menu-counting 1)) |
325 | 820 t) |
821 ((save-excursion (search-backward "next:" nil t)) | |
822 (Info-next) | |
823 t) | |
824 ((and (save-excursion (search-backward "up:" nil t)) | |
825 (not (equal (downcase (Info-extract-pointer "up")) "top"))) | |
826 (let ((old-node Info-current-node)) | |
827 (Info-up) | |
828 (let (Info-history success) | |
829 (unwind-protect | |
830 (setq success (Info-forward-node t no-error)) | |
831 (or success (Info-goto-node old-node)))))) | |
832 (no-error nil) | |
833 (t (error "No pointer forward from this node")))) | |
834 | |
835 (defun Info-backward-node () | |
836 "Go backward one node, considering all nodes as forming one sequence." | |
837 (interactive) | |
838 (let ((prevnode (Info-extract-pointer "prev[ious]*" t)) | |
839 (upnode (Info-extract-pointer "up" t))) | |
840 (cond ((and upnode (string-match "(" upnode)) | |
841 (error "First node in file")) | |
842 ((and upnode (or (null prevnode) | |
843 (equal (downcase prevnode) (downcase upnode)))) | |
844 (Info-up)) | |
845 (prevnode | |
846 ;; If we move back at the same level, | |
847 ;; go down to find the last subnode*. | |
848 (Info-prev) | |
849 (let (Info-history) | |
850 (while (and (not (string-match "\\<index\\>" Info-current-node)) | |
851 (save-excursion (search-forward "\n* Menu:" nil t))) | |
852 (Info-goto-node (Info-extract-menu-counting nil))))) | |
853 (t | |
854 (error "No pointer backward from this node"))))) | |
855 | |
856 (defun Info-exit () | |
857 "Exit Info by selecting some other buffer." | |
858 (interactive) | |
859 (switch-to-buffer (prog1 (other-buffer (current-buffer)) | |
860 (bury-buffer (current-buffer))))) | |
861 | |
929
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
862 (defun Info-next-menu-item () |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
863 (interactive) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
864 (save-excursion |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
865 (forward-line -1) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
866 (search-forward "\n* menu:" nil t) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
867 (or (search-forward "\n* " nil t) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
868 (error "No more items in menu")) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
869 (Info-goto-node (Info-extract-menu-node-name)))) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
870 |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
871 (defun Info-last-menu-item () |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
872 (interactive) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
873 (save-excursion |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
874 (forward-line 1) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
875 (search-backward "\n* menu:" nil t) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
876 (or (search-backward "\n* " nil t) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
877 (error "No previous items in menu")) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
878 (Info-goto-node (Info-extract-menu-node-name)))) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
879 |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
880 (defmacro no-error (&rest body) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
881 (list 'condition-case nil (cons 'progn (append body '(t))) '(error nil))) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
882 |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
883 (defun Info-next-preorder () |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
884 "Go to the next node, popping up a level if there is none." |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
885 (interactive) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
886 (cond ((no-error (Info-next-menu-item)) ) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
887 ((no-error (Info-up)) (forward-line 1)) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
888 (t (error "No more nodes")))) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
889 |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
890 (defun Info-last-preorder () |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
891 "Go to the last node, popping up a level if there is none." |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
892 (interactive) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
893 (cond ((no-error (Info-last-menu-item)) ) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
894 ((no-error (Info-up)) (forward-line -1)) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
895 (t (error "No previous nodes")))) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
896 |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
897 (defun Info-scroll-up () |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
898 "Read the next screen. If end of buffer is visible, go to next entry." |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
899 (interactive) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
900 (if (pos-visible-in-window-p (point-max)) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
901 (Info-next-preorder) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
902 (scroll-up)) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
903 ) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
904 |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
905 (defun Info-scroll-down () |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
906 "Read the previous screen. If start of buffer is visible, go to last entry." |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
907 (interactive) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
908 (if (pos-visible-in-window-p (point-min)) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
909 (Info-last-preorder) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
910 (scroll-down)) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
911 ) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
912 |
2561
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
913 (defun Info-index (topic) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
914 "Look up a string in the index for this file. |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
915 The index is defined as the first node in the top-level menu whose |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
916 name contains the word \"Index\", plus any immediately following |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
917 nodes whose names also contain the word \"Index\". |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
918 If there are no exact matches to the specified topic, this chooses |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
919 the first match which is a case-insensitive substring of a topic. |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
920 Use the `,' command to see the other matches. |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
921 Give a blank topic name to go to the Index node itself." |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
922 (interactive "sIndex topic: ") |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
923 (let ((orignode Info-current-node) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
924 (rnode nil) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
925 (pattern (format "\n\\* \\([^\n:]*%s[^\n:]*\\):[ \t]*\\([^.\n]*\\)\\.[ t]*\\([0-9]*\\)" |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
926 (regexp-quote topic))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
927 node) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
928 (Info-goto-node "Top") |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
929 (or (search-forward "\n* menu:" nil t) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
930 (error "No index")) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
931 (or (re-search-forward "\n\\* \\(.*\\<Index\\>\\)" nil t) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
932 (error "No index")) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
933 (goto-char (match-beginning 1)) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
934 (let ((Info-keeping-history nil)) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
935 (Info-goto-node (Info-extract-menu-node-name))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
936 (or (equal topic "") |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
937 (let ((matches nil) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
938 (exact nil) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
939 (Info-keeping-history nil) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
940 found) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
941 (while |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
942 (progn |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
943 (goto-char (point-min)) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
944 (while (re-search-forward pattern nil t) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
945 (setq matches |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
946 (cons (list (buffer-substring (match-beginning 1) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
947 (match-end 1)) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
948 (buffer-substring (match-beginning 2) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
949 (match-end 2)) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
950 Info-current-node |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
951 (string-to-int (concat "0" |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
952 (buffer-substring |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
953 (match-beginning 3) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
954 (match-end 3))))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
955 matches))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
956 (and (setq node (Info-extract-pointer "next" t)) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
957 (string-match "\\<Index\\>" node))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
958 (Info-goto-node node)) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
959 (or matches |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
960 (progn |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
961 (Info-last) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
962 (error "No \"%s\" in index" topic))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
963 ;; Here it is a feature that assoc is case-sensitive. |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
964 (while (setq found (assoc topic matches)) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
965 (setq exact (cons found exact) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
966 matches (delq found matches))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
967 (setq Info-index-alternatives (nconc exact (nreverse matches))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
968 (Info-index-next 0))))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
969 |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
970 (defun Info-index-next (num) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
971 "Go to the next matching index item from the last `i' command." |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
972 (interactive "p") |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
973 (or Info-index-alternatives |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
974 (error "No previous `i' command in this file")) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
975 (while (< num 0) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
976 (setq num (+ num (length Info-index-alternatives)))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
977 (while (> num 0) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
978 (setq Info-index-alternatives |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
979 (nconc (cdr Info-index-alternatives) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
980 (list (car Info-index-alternatives))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
981 num (1- num))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
982 (Info-goto-node (nth 1 (car Info-index-alternatives))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
983 (if (> (nth 3 (car Info-index-alternatives)) 0) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
984 (forward-line (nth 3 (car Info-index-alternatives))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
985 (forward-line 3) ; don't search in headers |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
986 (let ((name (car (car Info-index-alternatives)))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
987 (if (or (re-search-forward (format |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
988 "\\(Function\\|Command\\): %s\\( \\|$\\)" |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
989 (regexp-quote name)) nil t) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
990 (search-forward (format "`%s'" name) nil t) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
991 (and (string-match "\\`.*\\( (.*)\\)\\'" name) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
992 (search-forward |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
993 (format "`%s'" (substring name 0 (match-beginning 1))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
994 nil t)) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
995 (search-forward name nil t)) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
996 (beginning-of-line) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
997 (goto-char (point-min))))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
998 (message "Found \"%s\" in %s. %s" |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
999 (car (car Info-index-alternatives)) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
1000 (nth 2 (car Info-index-alternatives)) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
1001 (if (cdr Info-index-alternatives) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
1002 "(Press `,' for more)" |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
1003 "(Only match)"))) |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
1004 |
325 | 1005 (defun Info-undefined () |
1006 "Make command be undefined in Info." | |
1007 (interactive) | |
1008 (ding)) | |
1009 | |
1010 (defun Info-help () | |
1011 "Enter the Info tutorial." | |
1012 (interactive) | |
1013 (delete-other-windows) | |
1014 (Info-find-node "info" | |
1015 (if (< (window-height) 23) | |
1016 "Help-Small-Screen" | |
1017 "Help"))) | |
1018 | |
1019 (defun Info-summary () | |
1020 "Display a brief summary of all Info commands." | |
1021 (interactive) | |
1022 (save-window-excursion | |
1023 (switch-to-buffer "*Help*") | |
1024 (erase-buffer) | |
1025 (insert (documentation 'Info-mode)) | |
1026 (goto-char (point-min)) | |
1027 (let (ch flag) | |
1028 (while (progn (setq flag (not (pos-visible-in-window-p (point-max)))) | |
1029 (message (if flag "Type Space to see more" | |
1030 "Type Space to return to Info")) | |
2032
20cc6c34421c
(Info-summary): Handle any event when flushing the display.
Richard M. Stallman <rms@gnu.org>
parents:
1979
diff
changeset
|
1031 (if (not (eq ?\ (setq ch (read-event)))) |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1667
diff
changeset
|
1032 (progn (setq unread-command-events (list ch)) nil) |
325 | 1033 flag)) |
1034 (scroll-up))))) | |
1035 | |
1036 (defun Info-get-token (pos start all &optional errorstring) | |
1037 "Return the token around POS, | |
1038 POS must be somewhere inside the token | |
1039 START is a regular expression which will match the | |
1040 beginning of the tokens delimited string | |
1041 ALL is a regular expression with a single | |
1042 parenthized subpattern which is the token to be | |
1043 returned. E.g. '{\(.*\)}' would return any string | |
1044 enclosed in braces around POS. | |
1045 SIG optional fourth argument, controls action on no match | |
1046 nil: return nil | |
1047 t: beep | |
1048 a string: signal an error, using that string." | |
1049 (save-excursion | |
1050 (goto-char pos) | |
1051 (re-search-backward start (max (point-min) (- pos 200)) 'yes) | |
1052 (while (and (re-search-forward all (min (point-max) (+ pos 200)) 'yes) | |
1053 (not (and (<= (match-beginning 0) pos) | |
1054 (> (match-end 0) pos))))) | |
1055 (if (and (<= (match-beginning 0) pos) | |
1056 (> (match-end 0) pos)) | |
1057 (buffer-substring (match-beginning 1) (match-end 1)) | |
1058 (cond ((null errorstring) | |
1059 nil) | |
1060 ((eq errorstring t) | |
1061 (beep) | |
1062 nil) | |
1063 (t | |
1064 (error "No %s around position %d" errorstring pos)))))) | |
1065 | |
540 | 1066 (defun Info-follow-nearest-node (click) |
1309
aa286e6e7bec
(Info-follow-nearest-node): Handle line breaks after *note.
Richard M. Stallman <rms@gnu.org>
parents:
998
diff
changeset
|
1067 "\\<Info-mode-map>Follow a node reference near point. |
aa286e6e7bec
(Info-follow-nearest-node): Handle line breaks after *note.
Richard M. Stallman <rms@gnu.org>
parents:
998
diff
changeset
|
1068 Like \\[Info-menu], \\[Info-follow-reference], \\[Info-next], \\[Info-prev] or \\[Info-up] command, depending on where you click. |
325 | 1069 At end of the node's text, moves to the next node." |
1309
aa286e6e7bec
(Info-follow-nearest-node): Handle line breaks after *note.
Richard M. Stallman <rms@gnu.org>
parents:
998
diff
changeset
|
1070 (interactive "e") |
1484
6c2a714566d3
Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents:
1477
diff
changeset
|
1071 (let* ((start (event-start click)) |
6c2a714566d3
Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents:
1477
diff
changeset
|
1072 (window (car start)) |
6c2a714566d3
Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents:
1477
diff
changeset
|
1073 (pos (car (cdr start)))) |
6c2a714566d3
Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents:
1477
diff
changeset
|
1074 (select-window window) |
6c2a714566d3
Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents:
1477
diff
changeset
|
1075 (goto-char pos)) |
325 | 1076 (let (node) |
1077 (cond | |
1309
aa286e6e7bec
(Info-follow-nearest-node): Handle line breaks after *note.
Richard M. Stallman <rms@gnu.org>
parents:
998
diff
changeset
|
1078 ((setq node (Info-get-token (point) "\\*note[ \n]" "\\*note[ \n]\\([^:]*\\):" t)) |
325 | 1079 (Info-follow-reference node)) |
1080 ((setq node (Info-get-token (point) "\\* " "\\* \\([^:]*\\)::" t)) | |
1081 (Info-goto-node node)) | |
1082 ((setq node (Info-get-token (point) "\\* " "\\* \\([^:]*\\):" t)) | |
1083 (Info-menu node)) | |
1084 ((setq node (Info-get-token (point) "Up: " "Up: \\([^,\n\t]*\\)" t)) | |
1085 (Info-goto-node node)) | |
1086 ((setq node (Info-get-token (point) "Next: " "Next: \\([^,\n\t]*\\)" t)) | |
1087 (Info-goto-node node)) | |
1088 ((setq node (Info-get-token (point) "File: " "File: \\([^,\n\t]*\\)" t)) | |
1089 (Info-goto-node "Top")) | |
1090 ((setq node (Info-get-token (point) "Prev: " "Prev: \\([^,\n\t]*\\)" t)) | |
1091 (Info-goto-node node)) | |
1092 ((save-excursion (forward-line 1) (eobp)) | |
1093 (Info-next))) | |
1094 )) | |
1095 | |
1096 (defvar Info-mode-map nil | |
1097 "Keymap containing Info commands.") | |
1098 (if Info-mode-map | |
1099 nil | |
1100 (setq Info-mode-map (make-keymap)) | |
1101 (suppress-keymap Info-mode-map) | |
1102 (define-key Info-mode-map "." 'beginning-of-buffer) | |
929
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
1103 (define-key Info-mode-map " " 'Info-scroll-up) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
1104 (define-key Info-mode-map "\C-m" 'Info-next-preorder) |
1666
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
1105 (define-key Info-mode-map "1" 'Info-nth-menu-item) |
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
1106 (define-key Info-mode-map "2" 'Info-nth-menu-item) |
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
1107 (define-key Info-mode-map "3" 'Info-nth-menu-item) |
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
1108 (define-key Info-mode-map "4" 'Info-nth-menu-item) |
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
1109 (define-key Info-mode-map "5" 'Info-nth-menu-item) |
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
1110 (define-key Info-mode-map "6" 'Info-nth-menu-item) |
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
1111 (define-key Info-mode-map "7" 'Info-nth-menu-item) |
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
1112 (define-key Info-mode-map "8" 'Info-nth-menu-item) |
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
1113 (define-key Info-mode-map "9" 'Info-nth-menu-item) |
1667
9c0e14881b8f
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1666
diff
changeset
|
1114 (define-key Info-mode-map "0" 'undefined) |
325 | 1115 (define-key Info-mode-map "?" 'Info-summary) |
1116 (define-key Info-mode-map "]" 'Info-forward-node) | |
1117 (define-key Info-mode-map "[" 'Info-backward-node) | |
1118 (define-key Info-mode-map "<" 'Info-top-node) | |
1119 (define-key Info-mode-map ">" 'Info-final-node) | |
1120 (define-key Info-mode-map "b" 'beginning-of-buffer) | |
1121 (define-key Info-mode-map "d" 'Info-directory) | |
1122 (define-key Info-mode-map "e" 'Info-edit) | |
1123 (define-key Info-mode-map "f" 'Info-follow-reference) | |
1124 (define-key Info-mode-map "g" 'Info-goto-node) | |
1125 (define-key Info-mode-map "h" 'Info-help) | |
2561
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
1126 (define-key Info-mode-map "i" 'Info-index) |
325 | 1127 (define-key Info-mode-map "l" 'Info-last) |
1128 (define-key Info-mode-map "m" 'Info-menu) | |
1129 (define-key Info-mode-map "n" 'Info-next) | |
1130 (define-key Info-mode-map "p" 'Info-prev) | |
1131 (define-key Info-mode-map "q" 'Info-exit) | |
1132 (define-key Info-mode-map "s" 'Info-search) | |
2561
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
1133 (define-key Info-mode-map "t" 'Info-top) |
325 | 1134 (define-key Info-mode-map "u" 'Info-up) |
2561
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
1135 (define-key Info-mode-map "," 'Info-index-next) |
930
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
929
diff
changeset
|
1136 (define-key Info-mode-map "\177" 'Info-scroll-down) |
1309
aa286e6e7bec
(Info-follow-nearest-node): Handle line breaks after *note.
Richard M. Stallman <rms@gnu.org>
parents:
998
diff
changeset
|
1137 (define-key Info-mode-map [mouse-3] 'Info-follow-nearest-node) |
540 | 1138 ) |
325 | 1139 |
1140 ;; Info mode is suitable only for specially formatted data. | |
1141 (put 'info-mode 'mode-class 'special) | |
1142 | |
1143 (defun Info-mode () | |
1144 "\\<Info-mode-map> | |
1145 Info mode provides commands for browsing through the Info documentation tree. | |
1146 Documentation in Info is divided into \"nodes\", each of which discusses | |
1147 one topic and contains references to other nodes which discuss related | |
1148 topics. Info has commands to follow the references and show you other nodes. | |
1149 | |
1150 \\[Info-help] Invoke the Info tutorial. | |
1151 | |
1152 Selecting other nodes: | |
1153 \\[Info-next] Move to the \"next\" node of this node. | |
1154 \\[Info-previous] Move to the \"previous\" node of this node. | |
1155 \\[Info-up] Move \"up\" from this node. | |
1156 \\[Info-menu] Pick menu item specified by name (or abbreviation). | |
1157 Picking a menu item causes another node to be selected. | |
540 | 1158 \\[Info-directory] Go to the Info directory node. |
325 | 1159 \\[Info-follow-reference] Follow a cross reference. Reads name of reference. |
1160 \\[Info-last] Move to the last node you were at. | |
2561
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
1161 \\[Info-index] Look up a topic in this file's Index and move to that node. |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
1162 \\[Info-index-next] (comma) Move to the next match from a previous `i' command. |
325 | 1163 |
1164 Moving within a node: | |
930
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
929
diff
changeset
|
1165 \\[scroll-up] Normally, scroll forward a full screen. If the end of the buffer is |
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
929
diff
changeset
|
1166 already visible, try to go to the next menu entry, or up if there is none. |
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
929
diff
changeset
|
1167 \\[scroll-down] Normally, scroll backward. If the beginning of the buffer is |
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
929
diff
changeset
|
1168 already visible, try to go to the previous menu entry, or up if there is none. |
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
929
diff
changeset
|
1169 \\[beginning-of-buffer] Go to beginning of node. |
325 | 1170 |
1171 Advanced commands: | |
1172 \\[Info-exit] Quit Info: reselect previously selected buffer. | |
1173 \\[Info-edit] Edit contents of selected node. | |
1174 1 Pick first item in node's menu. | |
1175 2, 3, 4, 5 Pick second ... fifth item in node's menu. | |
1176 \\[Info-goto-node] Move to node specified by name. | |
1177 You may include a filename as well, as (FILENAME)NODENAME. | |
1178 \\[Info-search] Search through this Info file for specified regexp, | |
930
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
929
diff
changeset
|
1179 and select the node in which the next occurrence is found. |
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
929
diff
changeset
|
1180 \\[Info-next-preorder] Next-preorder; that is, try to go to the next menu item, |
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
929
diff
changeset
|
1181 and if that fails try to move up, and if that fails, tell user |
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
929
diff
changeset
|
1182 he/she is done reading." |
325 | 1183 (kill-all-local-variables) |
1184 (setq major-mode 'Info-mode) | |
1185 (setq mode-name "Info") | |
1186 (use-local-map Info-mode-map) | |
1187 (set-syntax-table text-mode-syntax-table) | |
1188 (setq local-abbrev-table text-mode-abbrev-table) | |
1189 (setq case-fold-search t) | |
1190 (setq buffer-read-only t) | |
1191 (make-local-variable 'Info-current-file) | |
1192 (make-local-variable 'Info-current-subfile) | |
1193 (make-local-variable 'Info-current-node) | |
1194 (make-local-variable 'Info-tag-table-marker) | |
1195 (make-local-variable 'Info-history) | |
2561
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
1196 (make-local-variable 'Info-index-alternatives) |
325 | 1197 (Info-set-mode-line) |
1198 (run-hooks 'Info-mode-hook)) | |
1199 | |
1200 (defvar Info-edit-map nil | |
1201 "Local keymap used within `e' command of Info.") | |
1202 (if Info-edit-map | |
1203 nil | |
1204 (setq Info-edit-map (nconc (make-sparse-keymap) text-mode-map)) | |
1205 (define-key Info-edit-map "\C-c\C-c" 'Info-cease-edit)) | |
1206 | |
1207 ;; Info-edit mode is suitable only for specially formatted data. | |
1208 (put 'info-edit-mode 'mode-class 'special) | |
1209 | |
1210 (defun Info-edit-mode () | |
1211 "Major mode for editing the contents of an Info node. | |
1477 | 1212 Like text mode with the addition of `Info-cease-edit' |
325 | 1213 which returns to Info mode for browsing. |
1214 \\{Info-edit-map}" | |
1215 ) | |
1216 | |
1217 (defun Info-edit () | |
1218 "Edit the contents of this Info node. | |
1219 Allowed only if variable `Info-enable-edit' is non-nil." | |
1220 (interactive) | |
1221 (or Info-enable-edit | |
1222 (error "Editing info nodes is not enabled")) | |
1223 (use-local-map Info-edit-map) | |
1224 (setq major-mode 'Info-edit-mode) | |
1225 (setq mode-name "Info Edit") | |
1226 (kill-local-variable 'mode-line-buffer-identification) | |
1227 (setq buffer-read-only nil) | |
1228 ;; Make mode line update. | |
1229 (set-buffer-modified-p (buffer-modified-p)) | |
1230 (message (substitute-command-keys | |
1231 "Editing: Type \\<info-mode-map>\\[Info-cease-edit] to return to info"))) | |
1232 | |
1233 (defun Info-cease-edit () | |
1234 "Finish editing Info node; switch back to Info proper." | |
1235 (interactive) | |
1236 ;; Do this first, so nothing has changed if user C-g's at query. | |
1237 (and (buffer-modified-p) | |
1238 (y-or-n-p "Save the file? ") | |
1239 (save-buffer)) | |
1240 (use-local-map Info-mode-map) | |
1241 (setq major-mode 'Info-mode) | |
1242 (setq mode-name "Info") | |
1243 (Info-set-mode-line) | |
1244 (setq buffer-read-only t) | |
1245 ;; Make mode line update. | |
1246 (set-buffer-modified-p (buffer-modified-p)) | |
1247 (and (marker-position Info-tag-table-marker) | |
1248 (buffer-modified-p) | |
1249 (message "Tags may have changed. Use Info-tagify if necessary"))) | |
359 | 1250 |
1251 (defun Info-find-emacs-command-nodes (command) | |
1252 "Return a list of locations documenting COMMAND in the Emacs Info manual. | |
1253 The locations are of the format used in Info-history, i.e. | |
1254 \(FILENAME NODENAME BUFFERPOS\)." | |
1255 (require 'info) | |
1256 (let ((where '()) | |
1257 (cmd-desc (concat "^\\* " (regexp-quote (symbol-name command)) | |
1258 ":\\s *\\(.*\\)\\.$"))) | |
1259 (save-excursion | |
1260 (Info-find-node "emacs" "Command Index") | |
1261 ;; Take the index node off the Info history. | |
1262 (setq Info-history (cdr Info-history)) | |
1263 (goto-char (point-max)) | |
1264 (while (re-search-backward cmd-desc nil t) | |
1265 (setq where (cons (list Info-current-file | |
1266 (buffer-substring | |
1267 (match-beginning 1) | |
1268 (match-end 1)) | |
1269 0) | |
1270 where))) | |
1271 where))) | |
1272 | |
1273 ;;;###autoload | |
1274 (defun Info-goto-emacs-command-node (command) | |
1275 "Go to the Info node in the Emacs manual for command COMMAND." | |
1276 (interactive "CFind documentation for command: ") | |
1277 (or (commandp command) | |
1278 (signal 'wrong-type-argument (list 'commandp command))) | |
1279 (let ((where (Info-find-emacs-command-nodes command))) | |
1280 (if where | |
1281 (let ((num-matches (length where))) | |
1282 ;; Get Info running, and pop to it in another window. | |
1283 (save-window-excursion | |
1284 (info)) | |
1285 (pop-to-buffer "*info*") | |
1286 (Info-find-node (car (car where)) | |
1287 (car (cdr (car where)))) | |
1288 (if (> num-matches 1) | |
1289 (progn | |
1290 ;; Info-find-node already pushed (car where) onto | |
1291 ;; Info-history. Put the other nodes that were found on | |
1292 ;; the history. | |
1293 (setq Info-history (nconc (cdr where) Info-history)) | |
1294 (message (substitute-command-keys | |
1295 "Found %d other entr%. Use \\[Info-last] to see %s." | |
1296 (1- num-matches) | |
1297 (if (> num-matches 2) "ies" "y") | |
1298 (if (> num-matches 2) "them" "it")))))) | |
1299 (error "Couldn't find documentation for %s." command)))) | |
1300 | |
1301 ;;;###autoload | |
1302 (defun Info-goto-emacs-key-command-node (key) | |
1303 "Go to the Info node in the Emacs manual the command bound to KEY, a string. | |
1304 Interactively, if the binding is execute-extended-command, a command is read." | |
1305 (interactive "kFind documentation for key:") | |
1306 (let ((command (key-binding key))) | |
1307 (cond ((null command) | |
1484
6c2a714566d3
Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents:
1477
diff
changeset
|
1308 (message "%s is undefined" (key-description key))) |
359 | 1309 ((and (interactive-p) |
1310 (eq command 'execute-extended-command)) | |
1311 (Info-goto-emacs-command-node | |
1312 (read-command "Find documentation for command: "))) | |
1313 (t | |
1314 (Info-goto-emacs-command-node command))))) | |
584 | 1315 |
1316 (provide 'info) | |
1317 | |
660
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1318 ;;; info.el ends here |