325
|
1 ;; Info package for Emacs -- could use a "create node" feature.
|
|
2 ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc.
|
|
3
|
|
4 ;; This file is part of GNU Emacs.
|
|
5
|
|
6 ;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
7 ;; it under the terms of the GNU General Public License as published by
|
|
8 ;; the Free Software Foundation; either version 1, or (at your option)
|
|
9 ;; any later version.
|
|
10
|
|
11 ;; GNU Emacs is distributed in the hope that it will be useful,
|
|
12 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14 ;; GNU General Public License for more details.
|
|
15
|
|
16 ;; You should have received a copy of the GNU General Public License
|
|
17 ;; along with GNU Emacs; see the file COPYING. If not, write to
|
|
18 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
19
|
|
20 (provide 'info)
|
|
21
|
|
22 (defvar Info-history nil
|
|
23 "List of info nodes user has visited.
|
|
24 Each element of list is a list (FILENAME NODENAME BUFFERPOS).")
|
|
25
|
|
26 (defvar Info-enable-edit nil
|
|
27 "Non-nil means the \\<info-mode-map>\\[Info-edit] command in Info can edit the current node.")
|
|
28
|
|
29 (defvar Info-enable-active-nodes t
|
|
30 "Non-nil allows Info to execute Lisp code associated with nodes.
|
|
31 The Lisp code is executed when the node is selected.")
|
|
32
|
540
|
33 (defvar Info-default-directory-list nil
|
|
34 "List of default directories to search for Info documentation files.
|
|
35 This value is used as the default for `Info-directory-list'. It is set
|
|
36 in paths.el.")
|
|
37
|
|
38 (defvar Info-directory-list nil
|
325
|
39 "List of directories to search for Info documentation files.
|
540
|
40 nil means not yet initialized. In this case, Info uses the environment
|
|
41 variable INFODIR to initialize it, or `Info-default-directory-list'
|
|
42 if there is no INFODIR variable in the environment.")
|
325
|
43
|
|
44 (defvar Info-current-file nil
|
|
45 "Info file that Info is now looking at, or nil.")
|
|
46
|
|
47 (defvar Info-current-subfile nil
|
|
48 "Info subfile that is actually in the *info* buffer now,
|
|
49 or nil if current info file is not split into subfiles.")
|
|
50
|
|
51 (defvar Info-current-node nil
|
|
52 "Name of node that Info is now looking at, or nil.")
|
|
53
|
|
54 (defvar Info-tag-table-marker (make-marker)
|
|
55 "Marker pointing at beginning of current Info file's tag table.
|
|
56 Marker points nowhere if file has no tag table.")
|
|
57
|
|
58 ;;;###autoload
|
|
59 (defun info (&optional file)
|
|
60 "Enter Info, the documentation browser.
|
|
61 Optional argument FILE specifies the file to examine;
|
|
62 the default is the top-level directory of Info.
|
|
63
|
|
64 In interactive use, a prefix argument directs this command
|
|
65 to read a file name from the minibuffer."
|
|
66 (interactive (if current-prefix-arg
|
|
67 (list (read-file-name "Info file name: " nil nil t))))
|
540
|
68 (or Info-directory-list
|
|
69 (setq Info-directory-list
|
|
70 (let ((path (getenv "INFOPATH")))
|
|
71 (if path
|
|
72 (let ((list nil)
|
|
73 idx)
|
|
74 (while (> (length path) 0)
|
|
75 (setq idx (or (string-match ":" path) (length path))
|
|
76 list (cons (substring path 0 idx) list)
|
|
77 path (substring path (min (1+ idx)
|
|
78 (length path)))))
|
|
79 (nreverse list))
|
|
80 Info-default-directory-list))))
|
325
|
81 (if file
|
|
82 (Info-goto-node (concat "(" file ")"))
|
|
83 (if (get-buffer "*info*")
|
|
84 (switch-to-buffer "*info*")
|
|
85 (Info-directory))))
|
|
86
|
|
87 ;; Go to an info node specified as separate filename and nodename.
|
|
88 ;; no-going-back is non-nil if recovering from an error in this function;
|
|
89 ;; it says do not attempt further (recursive) error recovery.
|
|
90 (defun Info-find-node (filename nodename &optional no-going-back)
|
|
91 ;; Convert filename to lower case if not found as specified.
|
|
92 ;; Expand it.
|
|
93 (if filename
|
|
94 (let (temp temp-downcase found)
|
|
95 (setq filename (substitute-in-file-name filename))
|
|
96 (let ((dirs (if (string-match "^\\./" filename)
|
|
97 ;; If specified name starts with `./'
|
|
98 ;; then just try current directory.
|
|
99 '("./")
|
|
100 Info-directory-list)))
|
|
101 ;; Search the directory list for file FILENAME.
|
|
102 (while (and dirs (not found))
|
|
103 (setq temp (expand-file-name filename (car dirs)))
|
|
104 (setq temp-downcase
|
|
105 (expand-file-name (downcase filename) (car dirs)))
|
|
106 ;; Try several variants of specified name.
|
|
107 ;; Try downcasing, appending `.info', or both.
|
|
108 (cond ((file-exists-p temp)
|
|
109 (setq found temp))
|
|
110 ((file-exists-p temp-downcase)
|
|
111 (setq found temp-downcase))
|
|
112 ((file-exists-p (concat temp ".info"))
|
|
113 (setq found (concat temp ".info")))
|
|
114 ((file-exists-p (concat temp-downcase ".info"))
|
|
115 (setq found (concat temp-downcase ".info"))))
|
|
116 (setq dirs (cdr dirs))))
|
|
117 (if found
|
|
118 (setq filename found)
|
|
119 (error "Info file %s does not exist" filename))))
|
|
120 ;; Record the node we are leaving.
|
|
121 (if (and Info-current-file (not no-going-back))
|
|
122 (setq Info-history
|
|
123 (cons (list Info-current-file Info-current-node (point))
|
|
124 Info-history)))
|
|
125 ;; Go into info buffer.
|
|
126 (switch-to-buffer "*info*")
|
|
127 (buffer-flush-undo (current-buffer))
|
|
128 (or (eq major-mode 'Info-mode)
|
|
129 (Info-mode))
|
|
130 (widen)
|
|
131 (setq Info-current-node nil)
|
|
132 (unwind-protect
|
|
133 (progn
|
|
134 ;; Switch files if necessary
|
|
135 (or (null filename)
|
|
136 (equal Info-current-file filename)
|
|
137 (let ((buffer-read-only nil))
|
|
138 (setq Info-current-file nil
|
|
139 Info-current-subfile nil
|
|
140 buffer-file-name nil)
|
|
141 (erase-buffer)
|
|
142 (insert-file-contents filename t)
|
|
143 (set-buffer-modified-p nil)
|
|
144 (setq default-directory (file-name-directory filename))
|
|
145 ;; See whether file has a tag table. Record the location if yes.
|
|
146 (set-marker Info-tag-table-marker nil)
|
|
147 (goto-char (point-max))
|
|
148 (forward-line -8)
|
|
149 (or (equal nodename "*")
|
|
150 (not (search-forward "\^_\nEnd tag table\n" nil t))
|
|
151 (let (pos)
|
|
152 ;; We have a tag table. Find its beginning.
|
|
153 ;; Is this an indirect file?
|
|
154 (search-backward "\nTag table:\n")
|
|
155 (setq pos (point))
|
|
156 (if (save-excursion
|
|
157 (forward-line 2)
|
|
158 (looking-at "(Indirect)\n"))
|
|
159 ;; It is indirect. Copy it to another buffer
|
|
160 ;; and record that the tag table is in that buffer.
|
|
161 (save-excursion
|
|
162 (let ((buf (current-buffer)))
|
|
163 (set-buffer (get-buffer-create " *info tag table*"))
|
|
164 (buffer-flush-undo (current-buffer))
|
|
165 (setq case-fold-search t)
|
|
166 (erase-buffer)
|
|
167 (insert-buffer-substring buf)
|
|
168 (set-marker Info-tag-table-marker
|
|
169 (match-end 0))))
|
|
170 (set-marker Info-tag-table-marker pos))))
|
|
171 (setq Info-current-file
|
|
172 (file-name-sans-versions buffer-file-name))))
|
|
173 (if (equal nodename "*")
|
|
174 (progn (setq Info-current-node nodename)
|
|
175 (Info-set-mode-line))
|
|
176 ;; Search file for a suitable node.
|
|
177 ;; First get advice from tag table if file has one.
|
|
178 ;; Also, if this is an indirect info file,
|
|
179 ;; read the proper subfile into this buffer.
|
|
180 (let ((guesspos (point-min)))
|
|
181 (if (marker-position Info-tag-table-marker)
|
|
182 (save-excursion
|
|
183 (set-buffer (marker-buffer Info-tag-table-marker))
|
|
184 (goto-char Info-tag-table-marker)
|
|
185 (if (search-forward (concat "Node: " nodename "\177") nil t)
|
|
186 (progn
|
|
187 (setq guesspos (read (current-buffer)))
|
|
188 ;; If this is an indirect file,
|
|
189 ;; determine which file really holds this node
|
|
190 ;; and read it in.
|
|
191 (if (not (eq (current-buffer) (get-buffer "*info*")))
|
|
192 (setq guesspos
|
|
193 (Info-read-subfile guesspos))))
|
|
194 (error "No such node: \"%s\"" nodename))))
|
|
195 (goto-char (max (point-min) (- guesspos 1000))))
|
|
196 ;; Now search from our advised position (or from beg of buffer)
|
|
197 ;; to find the actual node.
|
|
198 (let ((regexp (concat "Node: *" (regexp-quote nodename) " *[,\t\n]")))
|
|
199 (catch 'foo
|
|
200 (while (search-forward "\n\^_" nil t)
|
|
201 (forward-line 1)
|
|
202 (let ((beg (point)))
|
|
203 (forward-line 1)
|
|
204 (if (re-search-backward regexp beg t)
|
|
205 (throw 'foo t))))
|
|
206 (error "No such node: %s" nodename)))
|
|
207 (Info-select-node)))
|
|
208 ;; If we did not finish finding the specified node,
|
|
209 ;; go back to the previous one.
|
|
210 (or Info-current-node no-going-back
|
|
211 (let ((hist (car Info-history)))
|
|
212 (setq Info-history (cdr Info-history))
|
|
213 (Info-find-node (nth 0 hist) (nth 1 hist) t)
|
|
214 (goto-char (nth 2 hist)))))
|
|
215 (goto-char (point-min)))
|
|
216
|
|
217 (defun Info-read-subfile (nodepos)
|
|
218 (set-buffer (marker-buffer Info-tag-table-marker))
|
|
219 (goto-char (point-min))
|
|
220 (search-forward "\n\^_")
|
|
221 (let (lastfilepos
|
|
222 lastfilename)
|
|
223 (forward-line 2)
|
|
224 (catch 'foo
|
|
225 (while (not (looking-at "\^_"))
|
|
226 (if (not (eolp))
|
|
227 (let ((beg (point))
|
|
228 thisfilepos thisfilename)
|
|
229 (search-forward ": ")
|
|
230 (setq thisfilename (buffer-substring beg (- (point) 2)))
|
|
231 (setq thisfilepos (read (current-buffer)))
|
|
232 ;; read in version 19 stops at the end of number.
|
|
233 ;; Advance to the next line.
|
|
234 (forward-line 1)
|
|
235 (if (> thisfilepos nodepos)
|
|
236 (throw 'foo t))
|
|
237 (setq lastfilename thisfilename)
|
|
238 (setq lastfilepos thisfilepos))
|
|
239 (forward-line 1))))
|
|
240 (set-buffer (get-buffer "*info*"))
|
|
241 (or (equal Info-current-subfile lastfilename)
|
|
242 (let ((buffer-read-only nil))
|
|
243 (setq buffer-file-name nil)
|
|
244 (widen)
|
|
245 (erase-buffer)
|
|
246 (insert-file-contents lastfilename)
|
|
247 (set-buffer-modified-p nil)
|
|
248 (setq Info-current-subfile lastfilename)))
|
|
249 (goto-char (point-min))
|
|
250 (search-forward "\n\^_")
|
|
251 (+ (- nodepos lastfilepos) (point))))
|
|
252
|
|
253 ;; Select the info node that point is in.
|
|
254 (defun Info-select-node ()
|
|
255 (save-excursion
|
|
256 ;; Find beginning of node.
|
|
257 (search-backward "\n\^_")
|
|
258 (forward-line 2)
|
|
259 ;; Get nodename spelled as it is in the node.
|
|
260 (re-search-forward "Node:[ \t]*")
|
|
261 (setq Info-current-node
|
|
262 (buffer-substring (point)
|
|
263 (progn
|
|
264 (skip-chars-forward "^,\t\n")
|
|
265 (point))))
|
|
266 (Info-set-mode-line)
|
|
267 ;; Find the end of it, and narrow.
|
|
268 (beginning-of-line)
|
|
269 (let (active-expression)
|
|
270 (narrow-to-region (point)
|
|
271 (if (re-search-forward "\n[\^_\f]" nil t)
|
|
272 (prog1
|
|
273 (1- (point))
|
|
274 (if (looking-at "[\n\^_\f]*execute: ")
|
|
275 (progn
|
|
276 (goto-char (match-end 0))
|
|
277 (setq active-expression
|
|
278 (read (current-buffer))))))
|
|
279 (point-max)))
|
|
280 (if Info-enable-active-nodes (eval active-expression)))))
|
|
281
|
|
282 (defun Info-set-mode-line ()
|
|
283 (setq mode-line-buffer-identification
|
|
284 (concat
|
|
285 "Info: ("
|
|
286 (if Info-current-file
|
|
287 (file-name-nondirectory Info-current-file)
|
|
288 "")
|
|
289 ")"
|
|
290 (or Info-current-node ""))))
|
|
291
|
|
292 ;; Go to an info node specified with a filename-and-nodename string
|
|
293 ;; of the sort that is found in pointers in nodes.
|
|
294
|
|
295 (defun Info-goto-node (nodename)
|
|
296 "Go to info node named NAME. Give just NODENAME or (FILENAME)NODENAME."
|
|
297 (interactive "sGoto node: ")
|
|
298 (let (filename)
|
|
299 (string-match "\\s *\\((\\s *\\([^\t)]*\\)\\s *)\\s *\\|\\)\\(.*\\)"
|
|
300 nodename)
|
|
301 (setq filename (if (= (match-beginning 1) (match-end 1))
|
|
302 ""
|
|
303 (substring nodename (match-beginning 2) (match-end 2)))
|
|
304 nodename (substring nodename (match-beginning 3) (match-end 3)))
|
|
305 (let ((trim (string-match "\\s *\\'" filename)))
|
|
306 (if trim (setq filename (substring filename 0 trim))))
|
|
307 (let ((trim (string-match "\\s *\\'" nodename)))
|
|
308 (if trim (setq nodename (substring nodename 0 trim))))
|
|
309 (Info-find-node (if (equal filename "") nil filename)
|
|
310 (if (equal nodename "") "Top" nodename))))
|
|
311
|
540
|
312 (defun Info-restore-point (hl)
|
|
313 "If this node has been visited, restore the point value when we left."
|
|
314 (if hl
|
|
315 (if (and (equal (nth 0 (car hl)) Info-current-file)
|
|
316 (equal (nth 1 (car hl)) Info-current-node))
|
|
317 (goto-char (nth 2 (car hl)))
|
|
318 (Info-restore-point (cdr hl)))))
|
|
319
|
325
|
320 (defvar Info-last-search nil
|
|
321 "Default regexp for \\<info-mode-map>\\[Info-search] command to search for.")
|
|
322
|
|
323 (defun Info-search (regexp)
|
|
324 "Search for REGEXP, starting from point, and select node it's found in."
|
|
325 (interactive "sSearch (regexp): ")
|
|
326 (if (equal regexp "")
|
|
327 (setq regexp Info-last-search)
|
|
328 (setq Info-last-search regexp))
|
|
329 (let ((found ()) current
|
|
330 (onode Info-current-node)
|
|
331 (ofile Info-current-file)
|
|
332 (opoint (point))
|
|
333 (osubfile Info-current-subfile))
|
|
334 (save-excursion
|
|
335 (save-restriction
|
|
336 (widen)
|
|
337 (if (null Info-current-subfile)
|
|
338 (progn (re-search-forward regexp) (setq found (point)))
|
|
339 (condition-case err
|
|
340 (progn (re-search-forward regexp) (setq found (point)))
|
|
341 (search-failed nil)))))
|
|
342 (if (not found) ;can only happen in subfile case -- else would have erred
|
|
343 (unwind-protect
|
|
344 (let ((list ()))
|
|
345 (set-buffer (marker-buffer Info-tag-table-marker))
|
|
346 (goto-char (point-min))
|
|
347 (search-forward "\n\^_\nIndirect:")
|
|
348 (save-restriction
|
|
349 (narrow-to-region (point)
|
|
350 (progn (search-forward "\n\^_")
|
|
351 (1- (point))))
|
|
352 (goto-char (point-min))
|
|
353 (search-forward (concat "\n" osubfile ": "))
|
|
354 (beginning-of-line)
|
|
355 (while (not (eobp))
|
|
356 (re-search-forward "\\(^.*\\): [0-9]+$")
|
|
357 (goto-char (+ (match-end 1) 2))
|
|
358 (setq list (cons (cons (read (current-buffer))
|
|
359 (buffer-substring (match-beginning 1)
|
|
360 (match-end 1)))
|
|
361 list))
|
|
362 (goto-char (1+ (match-end 0))))
|
|
363 (setq list (nreverse list)
|
|
364 current (car (car list))
|
|
365 list (cdr list)))
|
|
366 (while list
|
|
367 (message "Searching subfile %s..." (cdr (car list)))
|
|
368 (Info-read-subfile (car (car list)))
|
|
369 (setq list (cdr list))
|
|
370 (goto-char (point-min))
|
|
371 (if (re-search-forward regexp nil t)
|
|
372 (setq found (point) list ())))
|
|
373 (if found
|
|
374 (message "")
|
|
375 (signal 'search-failed (list regexp))))
|
|
376 (if (not found)
|
|
377 (progn (Info-read-subfile opoint)
|
|
378 (goto-char opoint)
|
|
379 (Info-select-node)))))
|
|
380 (widen)
|
|
381 (goto-char found)
|
|
382 (Info-select-node)
|
|
383 (or (and (equal onode Info-current-node)
|
|
384 (equal ofile Info-current-file))
|
|
385 (setq Info-history (cons (list ofile onode opoint)
|
|
386 Info-history)))))
|
|
387
|
|
388 ;; Extract the value of the node-pointer named NAME.
|
|
389 ;; If there is none, use ERRORNAME in the error message;
|
|
390 ;; if ERRORNAME is nil, just return nil.
|
|
391 (defun Info-extract-pointer (name &optional errorname)
|
|
392 (save-excursion
|
|
393 (goto-char (point-min))
|
|
394 (forward-line 1)
|
|
395 (if (re-search-backward (concat name ":") nil t)
|
|
396 (progn
|
|
397 (goto-char (match-end 0))
|
|
398 (Info-following-node-name))
|
|
399 (if (eq errorname t)
|
|
400 nil
|
|
401 (error (concat "Node has no " (capitalize (or errorname name))))))))
|
|
402
|
|
403 (defun Info-following-node-name (&optional allowedchars)
|
|
404 (skip-chars-forward " \t")
|
|
405 (buffer-substring
|
|
406 (point)
|
|
407 (progn
|
|
408 (while (looking-at (concat "[" (or allowedchars "^,\t\n") "]"))
|
|
409 (skip-chars-forward (concat (or allowedchars "^,\t\n") "("))
|
|
410 (if (looking-at "(")
|
|
411 (skip-chars-forward "^)")))
|
|
412 (skip-chars-backward " ")
|
|
413 (point))))
|
|
414
|
|
415 (defun Info-next ()
|
|
416 "Go to the next node of this node."
|
|
417 (interactive)
|
|
418 (Info-goto-node (Info-extract-pointer "next")))
|
|
419
|
|
420 (defun Info-prev ()
|
|
421 "Go to the previous node of this node."
|
|
422 (interactive)
|
|
423 (Info-goto-node (Info-extract-pointer "prev[ious]*" "previous")))
|
|
424
|
|
425 (defun Info-up ()
|
|
426 "Go to the superior node of this node."
|
|
427 (interactive)
|
540
|
428 (Info-goto-node (Info-extract-pointer "up"))
|
|
429 (Info-restore-point Info-history))
|
325
|
430
|
|
431 (defun Info-last ()
|
|
432 "Go back to the last node visited."
|
|
433 (interactive)
|
|
434 (or Info-history
|
|
435 (error "This is the first Info node you looked at"))
|
|
436 (let (filename nodename opoint)
|
|
437 (setq filename (car (car Info-history)))
|
|
438 (setq nodename (car (cdr (car Info-history))))
|
|
439 (setq opoint (car (cdr (cdr (car Info-history)))))
|
|
440 (setq Info-history (cdr Info-history))
|
|
441 (Info-find-node filename nodename)
|
|
442 (setq Info-history (cdr Info-history))
|
|
443 (goto-char opoint)))
|
|
444
|
|
445 (defun Info-directory ()
|
|
446 "Go to the Info directory node."
|
|
447 (interactive)
|
|
448 (Info-find-node "dir" "top"))
|
|
449
|
|
450 (defun Info-follow-reference (footnotename)
|
|
451 "Follow cross reference named NAME to the node it refers to.
|
|
452 NAME may be an abbreviation of the reference name."
|
|
453 (interactive
|
|
454 (let ((completion-ignore-case t)
|
|
455 completions default (start-point (point)) str i)
|
|
456 (save-excursion
|
|
457 (goto-char (point-min))
|
|
458 (while (re-search-forward "\\*note[ \n\t]*\\([^:]*\\):" nil t)
|
|
459 (setq str (buffer-substring
|
|
460 (match-beginning 1)
|
|
461 (1- (point))))
|
|
462 ;; See if this one should be the default.
|
|
463 (and (null default)
|
|
464 (< (match-beginning 0) start-point)
|
|
465 (<= start-point (point))
|
|
466 (setq default t))
|
|
467 (setq i 0)
|
|
468 (while (setq i (string-match "[ \n\t]+" str i))
|
|
469 (setq str (concat (substring str 0 i) " "
|
|
470 (substring str (match-end 0))))
|
|
471 (setq i (1+ i)))
|
|
472 ;; Record as a completion and perhaps as default.
|
|
473 (if (eq default t) (setq default str))
|
|
474 (setq completions
|
|
475 (cons (cons str nil)
|
|
476 completions))))
|
|
477 (if completions
|
|
478 (list (completing-read (if default
|
|
479 (concat "Follow reference named: ("
|
|
480 default ") ")
|
|
481 "Follow reference named: ")
|
|
482 completions default t))
|
|
483 (error "No cross-references in this node"))))
|
|
484 (let (target beg i (str (concat "\\*note " footnotename)))
|
|
485 (while (setq i (string-match " " str i))
|
|
486 (setq str (concat (substring str 0 i) "[ \t\n]+" (substring str (1+ i))))
|
|
487 (setq i (+ i 6)))
|
|
488 (save-excursion
|
|
489 (goto-char (point-min))
|
|
490 (or (re-search-forward str nil t)
|
|
491 (error "No cross-reference named %s" footnotename))
|
|
492 (goto-char (+ (match-beginning 0) 5))
|
|
493 (setq target
|
|
494 (Info-extract-menu-node-name "Bad format cross reference" t)))
|
|
495 (while (setq i (string-match "[ \t\n]+" target i))
|
|
496 (setq target (concat (substring target 0 i) " "
|
|
497 (substring target (match-end 0))))
|
|
498 (setq i (+ i 1)))
|
|
499 (Info-goto-node target)))
|
|
500
|
|
501 (defun Info-extract-menu-node-name (&optional errmessage multi-line)
|
|
502 (skip-chars-forward " \t\n")
|
|
503 (let ((beg (point))
|
|
504 str i)
|
|
505 (skip-chars-forward "^:")
|
|
506 (forward-char 1)
|
|
507 (setq str
|
|
508 (if (looking-at ":")
|
|
509 (buffer-substring beg (1- (point)))
|
|
510 (skip-chars-forward " \t\n")
|
|
511 (Info-following-node-name (if multi-line "^.,\t" "^.,\t\n"))))
|
|
512 (while (setq i (string-match "\n" str i))
|
|
513 (aset str i ?\ ))
|
|
514 str))
|
|
515
|
|
516 (defun Info-menu-item-sequence (list)
|
|
517 (while list
|
|
518 (Info-menu-item (car list))
|
|
519 (setq list (cdr list))))
|
|
520
|
|
521 (defun Info-menu (menu-item)
|
|
522 "Go to node for menu item named (or abbreviated) NAME.
|
|
523 Completion is allowed, and the menu item point is on is the default."
|
|
524 (interactive
|
|
525 (let ((completions '())
|
|
526 ;; If point is within a menu item, use that item as the default
|
|
527 (default nil)
|
|
528 (p (point))
|
|
529 (last nil))
|
|
530 (save-excursion
|
|
531 (goto-char (point-min))
|
|
532 (if (not (search-forward "\n* menu:" nil t))
|
|
533 (error "No menu in this node"))
|
|
534 (while (re-search-forward
|
|
535 "\n\\* \\([^:\t\n]*\\):" nil t)
|
|
536 (if (and (null default)
|
|
537 (prog1 (if last (< last p) nil)
|
|
538 (setq last (match-beginning 0)))
|
|
539 (<= p last))
|
|
540 (setq default (car (car completions))))
|
|
541 (setq completions (cons (cons (buffer-substring
|
|
542 (match-beginning 1)
|
|
543 (match-end 1))
|
|
544 (match-beginning 1))
|
|
545 completions)))
|
|
546 (if (and (null default) last
|
|
547 (< last p)
|
|
548 (<= p (progn (end-of-line) (point))))
|
|
549 (setq default (car (car completions)))))
|
|
550 (let ((item nil))
|
|
551 (while (null item)
|
|
552 (setq item (let ((completion-ignore-case t))
|
|
553 (completing-read (if default
|
|
554 (format "Menu item (default %s): "
|
|
555 default)
|
|
556 "Menu item: ")
|
|
557 completions nil t)))
|
540
|
558 ;; we rely on the fact that completing-read accepts an input
|
|
559 ;; of "" even when the require-match argument is true and ""
|
|
560 ;; is not a valid possibility
|
325
|
561 (if (string= item "")
|
|
562 (if default
|
|
563 (setq item default)
|
|
564 ;; ask again
|
|
565 (setq item nil))))
|
|
566 (list item))))
|
|
567 ;; there is a problem here in that if several menu items have the same
|
|
568 ;; name you can only go to the node of the first with this command.
|
|
569 (Info-goto-node (Info-extract-menu-item menu-item)))
|
|
570
|
|
571 (defun Info-extract-menu-item (menu-item)
|
|
572 (setq menu-item (regexp-quote menu-item))
|
|
573 (save-excursion
|
|
574 (goto-char (point-min))
|
|
575 (or (search-forward "\n* menu:" nil t)
|
|
576 (error "No menu in this node"))
|
|
577 (or (re-search-forward (concat "\n* " menu-item ":") nil t)
|
|
578 (re-search-forward (concat "\n* " menu-item) nil t)
|
|
579 (error "No such item in menu"))
|
|
580 (beginning-of-line)
|
|
581 (forward-char 2)
|
|
582 (Info-extract-menu-node-name)))
|
|
583
|
|
584 ;; If COUNT is nil, use the last item in the menu.
|
|
585 (defun Info-extract-menu-counting (count)
|
|
586 (save-excursion
|
|
587 (goto-char (point-min))
|
|
588 (or (search-forward "\n* menu:" nil t)
|
|
589 (error "No menu in this node"))
|
|
590 (if count
|
|
591 (or (search-forward "\n* " nil t count)
|
|
592 (error "Too few items in menu"))
|
|
593 (while (search-forward "\n* " nil t)
|
|
594 nil))
|
|
595 (Info-extract-menu-node-name)))
|
|
596
|
|
597 (defun Info-first-menu-item ()
|
|
598 "Go to the node of the first menu item."
|
|
599 (interactive)
|
|
600 (Info-goto-node (Info-extract-menu-counting 1)))
|
|
601
|
|
602 (defun Info-second-menu-item ()
|
|
603 "Go to the node of the second menu item."
|
|
604 (interactive)
|
|
605 (Info-goto-node (Info-extract-menu-counting 2)))
|
|
606
|
|
607 (defun Info-third-menu-item ()
|
|
608 "Go to the node of the third menu item."
|
|
609 (interactive)
|
|
610 (Info-goto-node (Info-extract-menu-counting 3)))
|
|
611
|
|
612 (defun Info-fourth-menu-item ()
|
|
613 "Go to the node of the fourth menu item."
|
|
614 (interactive)
|
|
615 (Info-goto-node (Info-extract-menu-counting 4)))
|
|
616
|
|
617 (defun Info-fifth-menu-item ()
|
|
618 "Go to the node of the fifth menu item."
|
|
619 (interactive)
|
|
620 (Info-goto-node (Info-extract-menu-counting 5)))
|
|
621
|
|
622 (defun Info-top-node ()
|
|
623 "Go to the Top node of this file."
|
|
624 (interactive)
|
|
625 (Info-goto-node "Top"))
|
|
626
|
|
627 (defun Info-final-node ()
|
|
628 "Go to the final node in this file."
|
|
629 (interactive)
|
|
630 (Info-goto-node "Top")
|
|
631 (let (Info-history)
|
|
632 ;; Go to the last node in the menu of Top.
|
|
633 (Info-goto-node (Info-extract-menu-counting nil))
|
|
634 ;; If the last node in the menu is not last in pointer structure,
|
|
635 ;; move forward until we can't go any farther.
|
|
636 (while (Info-forward-node t t) nil)
|
|
637 ;; Then keep moving down to last subnode, unless we reach an index.
|
|
638 (while (and (not (string-match "\\<index\\>" Info-current-node))
|
|
639 (save-excursion (search-forward "\n* Menu:" nil t)))
|
|
640 (Info-goto-node (Info-extract-menu-counting nil)))))
|
|
641
|
|
642 (defun Info-forward-node (&optional not-down no-error)
|
|
643 "Go forward one node, considering all nodes as forming one sequence."
|
|
644 (interactive)
|
|
645 (goto-char (point-min))
|
|
646 (forward-line 1)
|
|
647 ;; three possibilities, in order of priority:
|
|
648 ;; 1. next node is in a menu in this node (but not in an index)
|
|
649 ;; 2. next node is next at same level
|
|
650 ;; 3. next node is up and next
|
|
651 (cond ((and (not not-down)
|
|
652 (save-excursion (search-forward "\n* menu:" nil t))
|
|
653 (not (string-match "\\<index\\>" Info-current-node)))
|
|
654 (Info-first-menu-item)
|
|
655 t)
|
|
656 ((save-excursion (search-backward "next:" nil t))
|
|
657 (Info-next)
|
|
658 t)
|
|
659 ((and (save-excursion (search-backward "up:" nil t))
|
|
660 (not (equal (downcase (Info-extract-pointer "up")) "top")))
|
|
661 (let ((old-node Info-current-node))
|
|
662 (Info-up)
|
|
663 (let (Info-history success)
|
|
664 (unwind-protect
|
|
665 (setq success (Info-forward-node t no-error))
|
|
666 (or success (Info-goto-node old-node))))))
|
|
667 (no-error nil)
|
|
668 (t (error "No pointer forward from this node"))))
|
|
669
|
|
670 (defun Info-backward-node ()
|
|
671 "Go backward one node, considering all nodes as forming one sequence."
|
|
672 (interactive)
|
|
673 (let ((prevnode (Info-extract-pointer "prev[ious]*" t))
|
|
674 (upnode (Info-extract-pointer "up" t)))
|
|
675 (cond ((and upnode (string-match "(" upnode))
|
|
676 (error "First node in file"))
|
|
677 ((and upnode (or (null prevnode)
|
|
678 (equal (downcase prevnode) (downcase upnode))))
|
|
679 (Info-up))
|
|
680 (prevnode
|
|
681 ;; If we move back at the same level,
|
|
682 ;; go down to find the last subnode*.
|
|
683 (Info-prev)
|
|
684 (let (Info-history)
|
|
685 (while (and (not (string-match "\\<index\\>" Info-current-node))
|
|
686 (save-excursion (search-forward "\n* Menu:" nil t)))
|
|
687 (Info-goto-node (Info-extract-menu-counting nil)))))
|
|
688 (t
|
|
689 (error "No pointer backward from this node")))))
|
|
690
|
|
691 (defun Info-exit ()
|
|
692 "Exit Info by selecting some other buffer."
|
|
693 (interactive)
|
|
694 (switch-to-buffer (prog1 (other-buffer (current-buffer))
|
|
695 (bury-buffer (current-buffer)))))
|
|
696
|
|
697 (defun Info-undefined ()
|
|
698 "Make command be undefined in Info."
|
|
699 (interactive)
|
|
700 (ding))
|
|
701
|
|
702 (defun Info-help ()
|
|
703 "Enter the Info tutorial."
|
|
704 (interactive)
|
|
705 (delete-other-windows)
|
|
706 (Info-find-node "info"
|
|
707 (if (< (window-height) 23)
|
|
708 "Help-Small-Screen"
|
|
709 "Help")))
|
|
710
|
|
711 (defun Info-summary ()
|
|
712 "Display a brief summary of all Info commands."
|
|
713 (interactive)
|
|
714 (save-window-excursion
|
|
715 (switch-to-buffer "*Help*")
|
|
716 (erase-buffer)
|
|
717 (insert (documentation 'Info-mode))
|
|
718 (goto-char (point-min))
|
|
719 (let (ch flag)
|
|
720 (while (progn (setq flag (not (pos-visible-in-window-p (point-max))))
|
|
721 (message (if flag "Type Space to see more"
|
|
722 "Type Space to return to Info"))
|
|
723 (if (/= ?\ (setq ch (read-char)))
|
|
724 (progn (setq unread-command-char ch) nil)
|
|
725 flag))
|
|
726 (scroll-up)))))
|
|
727
|
|
728 (defun Info-get-token (pos start all &optional errorstring)
|
|
729 "Return the token around POS,
|
|
730 POS must be somewhere inside the token
|
|
731 START is a regular expression which will match the
|
|
732 beginning of the tokens delimited string
|
|
733 ALL is a regular expression with a single
|
|
734 parenthized subpattern which is the token to be
|
|
735 returned. E.g. '{\(.*\)}' would return any string
|
|
736 enclosed in braces around POS.
|
|
737 SIG optional fourth argument, controls action on no match
|
|
738 nil: return nil
|
|
739 t: beep
|
|
740 a string: signal an error, using that string."
|
|
741 (save-excursion
|
|
742 (goto-char pos)
|
|
743 (re-search-backward start (max (point-min) (- pos 200)) 'yes)
|
|
744 (while (and (re-search-forward all (min (point-max) (+ pos 200)) 'yes)
|
|
745 (not (and (<= (match-beginning 0) pos)
|
|
746 (> (match-end 0) pos)))))
|
|
747 (if (and (<= (match-beginning 0) pos)
|
|
748 (> (match-end 0) pos))
|
|
749 (buffer-substring (match-beginning 1) (match-end 1))
|
|
750 (cond ((null errorstring)
|
|
751 nil)
|
|
752 ((eq errorstring t)
|
|
753 (beep)
|
|
754 nil)
|
|
755 (t
|
|
756 (error "No %s around position %d" errorstring pos))))))
|
|
757
|
540
|
758 (defun Info-follow-nearest-node (click)
|
325
|
759 "\\<Info-mode-map>Follow a node reference near point. Like \\[Info-menu], \\Info-follow-reference], \\[Info-next], \\[Info-previous] or \\Info-up] command.
|
|
760 At end of the node's text, moves to the next node."
|
540
|
761 (interactive "K")
|
|
762 (let* ((relative-coordinates (coordinates-in-window-p (mouse-coords click)
|
325
|
763 (selected-window)))
|
|
764 (rel-x (car relative-coordinates))
|
540
|
765 (rel-y (cdr relative-coordinates)))
|
325
|
766 (move-to-window-line rel-y)
|
|
767 (move-to-column rel-x))
|
|
768 (let (node)
|
|
769 (cond
|
|
770 ((setq node (Info-get-token (point) "\\*note " "\\*note \\([^:]*\\):" t))
|
|
771 (Info-follow-reference node))
|
|
772 ((setq node (Info-get-token (point) "\\* " "\\* \\([^:]*\\)::" t))
|
|
773 (Info-goto-node node))
|
|
774 ((setq node (Info-get-token (point) "\\* " "\\* \\([^:]*\\):" t))
|
|
775 (Info-menu node))
|
|
776 ((setq node (Info-get-token (point) "Up: " "Up: \\([^,\n\t]*\\)" t))
|
|
777 (Info-goto-node node))
|
|
778 ((setq node (Info-get-token (point) "Next: " "Next: \\([^,\n\t]*\\)" t))
|
|
779 (Info-goto-node node))
|
|
780 ((setq node (Info-get-token (point) "File: " "File: \\([^,\n\t]*\\)" t))
|
|
781 (Info-goto-node "Top"))
|
|
782 ((setq node (Info-get-token (point) "Prev: " "Prev: \\([^,\n\t]*\\)" t))
|
|
783 (Info-goto-node node))
|
|
784 ((save-excursion (forward-line 1) (eobp))
|
|
785 (Info-next)))
|
|
786 ))
|
|
787
|
|
788 (defvar Info-mode-map nil
|
|
789 "Keymap containing Info commands.")
|
|
790 (if Info-mode-map
|
|
791 nil
|
|
792 (setq Info-mode-map (make-keymap))
|
|
793 (suppress-keymap Info-mode-map)
|
|
794 (define-key Info-mode-map "." 'beginning-of-buffer)
|
|
795 (define-key Info-mode-map " " 'scroll-up)
|
|
796 (define-key Info-mode-map "1" 'Info-first-menu-item)
|
|
797 (define-key Info-mode-map "2" 'Info-second-menu-item)
|
|
798 (define-key Info-mode-map "3" 'Info-third-menu-item)
|
|
799 (define-key Info-mode-map "4" 'Info-fourth-menu-item)
|
|
800 (define-key Info-mode-map "5" 'Info-fifth-menu-item)
|
|
801 (define-key Info-mode-map "6" 'undefined)
|
|
802 (define-key Info-mode-map "7" 'undefined)
|
|
803 (define-key Info-mode-map "8" 'undefined)
|
|
804 (define-key Info-mode-map "9" 'undefined)
|
|
805 (define-key Info-mode-map "0" 'undefined)
|
|
806 (define-key Info-mode-map "?" 'Info-summary)
|
|
807 (define-key Info-mode-map "]" 'Info-forward-node)
|
|
808 (define-key Info-mode-map "[" 'Info-backward-node)
|
|
809 (define-key Info-mode-map "<" 'Info-top-node)
|
|
810 (define-key Info-mode-map ">" 'Info-final-node)
|
|
811 (define-key Info-mode-map "b" 'beginning-of-buffer)
|
|
812 (define-key Info-mode-map "d" 'Info-directory)
|
|
813 (define-key Info-mode-map "e" 'Info-edit)
|
|
814 (define-key Info-mode-map "f" 'Info-follow-reference)
|
|
815 (define-key Info-mode-map "g" 'Info-goto-node)
|
|
816 (define-key Info-mode-map "h" 'Info-help)
|
|
817 (define-key Info-mode-map "l" 'Info-last)
|
|
818 (define-key Info-mode-map "m" 'Info-menu)
|
|
819 (define-key Info-mode-map "n" 'Info-next)
|
|
820 (define-key Info-mode-map "p" 'Info-prev)
|
|
821 (define-key Info-mode-map "q" 'Info-exit)
|
|
822 (define-key Info-mode-map "s" 'Info-search)
|
|
823 (define-key Info-mode-map "u" 'Info-up)
|
540
|
824 (define-key Info-mode-map "\177" 'scroll-down)
|
|
825 )
|
325
|
826
|
|
827 ;; Info mode is suitable only for specially formatted data.
|
|
828 (put 'info-mode 'mode-class 'special)
|
|
829
|
|
830 (defun Info-mode ()
|
|
831 "\\<Info-mode-map>
|
|
832 Info mode provides commands for browsing through the Info documentation tree.
|
|
833 Documentation in Info is divided into \"nodes\", each of which discusses
|
|
834 one topic and contains references to other nodes which discuss related
|
|
835 topics. Info has commands to follow the references and show you other nodes.
|
|
836
|
|
837 \\[Info-help] Invoke the Info tutorial.
|
|
838
|
|
839 Selecting other nodes:
|
|
840 \\[Info-next] Move to the \"next\" node of this node.
|
|
841 \\[Info-previous] Move to the \"previous\" node of this node.
|
|
842 \\[Info-up] Move \"up\" from this node.
|
|
843 \\[Info-menu] Pick menu item specified by name (or abbreviation).
|
|
844 Picking a menu item causes another node to be selected.
|
540
|
845 \\[Info-directory] Go to the Info directory node.
|
325
|
846 \\[Info-follow-reference] Follow a cross reference. Reads name of reference.
|
|
847 \\[Info-last] Move to the last node you were at.
|
|
848
|
|
849 Moving within a node:
|
|
850 \\[scroll-up] scroll forward a full screen. \\[scroll-down] scroll backward.
|
|
851 \\[beginning-of-buffer] Go to beginning of node.
|
|
852
|
|
853 Advanced commands:
|
|
854 \\[Info-exit] Quit Info: reselect previously selected buffer.
|
|
855 \\[Info-edit] Edit contents of selected node.
|
|
856 1 Pick first item in node's menu.
|
|
857 2, 3, 4, 5 Pick second ... fifth item in node's menu.
|
|
858 \\[Info-goto-node] Move to node specified by name.
|
|
859 You may include a filename as well, as (FILENAME)NODENAME.
|
|
860 \\[Info-search] Search through this Info file for specified regexp,
|
|
861 and select the node in which the next occurrence is found."
|
|
862 (kill-all-local-variables)
|
|
863 (setq major-mode 'Info-mode)
|
|
864 (setq mode-name "Info")
|
|
865 (use-local-map Info-mode-map)
|
|
866 (set-syntax-table text-mode-syntax-table)
|
|
867 (setq local-abbrev-table text-mode-abbrev-table)
|
|
868 (setq case-fold-search t)
|
|
869 (setq buffer-read-only t)
|
|
870 (make-local-variable 'Info-current-file)
|
|
871 (make-local-variable 'Info-current-subfile)
|
|
872 (make-local-variable 'Info-current-node)
|
|
873 (make-local-variable 'Info-tag-table-marker)
|
|
874 (make-local-variable 'Info-history)
|
|
875 (Info-set-mode-line)
|
|
876 (run-hooks 'Info-mode-hook))
|
|
877
|
|
878 (defvar Info-edit-map nil
|
|
879 "Local keymap used within `e' command of Info.")
|
|
880 (if Info-edit-map
|
|
881 nil
|
|
882 (setq Info-edit-map (nconc (make-sparse-keymap) text-mode-map))
|
|
883 (define-key Info-edit-map "\C-c\C-c" 'Info-cease-edit))
|
|
884
|
|
885 ;; Info-edit mode is suitable only for specially formatted data.
|
|
886 (put 'info-edit-mode 'mode-class 'special)
|
|
887
|
|
888 (defun Info-edit-mode ()
|
|
889 "Major mode for editing the contents of an Info node.
|
|
890 Like text mode with the addition of Info-cease-edit
|
|
891 which returns to Info mode for browsing.
|
|
892 \\{Info-edit-map}"
|
|
893 )
|
|
894
|
|
895 (defun Info-edit ()
|
|
896 "Edit the contents of this Info node.
|
|
897 Allowed only if variable `Info-enable-edit' is non-nil."
|
|
898 (interactive)
|
|
899 (or Info-enable-edit
|
|
900 (error "Editing info nodes is not enabled"))
|
|
901 (use-local-map Info-edit-map)
|
|
902 (setq major-mode 'Info-edit-mode)
|
|
903 (setq mode-name "Info Edit")
|
|
904 (kill-local-variable 'mode-line-buffer-identification)
|
|
905 (setq buffer-read-only nil)
|
|
906 ;; Make mode line update.
|
|
907 (set-buffer-modified-p (buffer-modified-p))
|
|
908 (message (substitute-command-keys
|
|
909 "Editing: Type \\<info-mode-map>\\[Info-cease-edit] to return to info")))
|
|
910
|
|
911 (defun Info-cease-edit ()
|
|
912 "Finish editing Info node; switch back to Info proper."
|
|
913 (interactive)
|
|
914 ;; Do this first, so nothing has changed if user C-g's at query.
|
|
915 (and (buffer-modified-p)
|
|
916 (y-or-n-p "Save the file? ")
|
|
917 (save-buffer))
|
|
918 (use-local-map Info-mode-map)
|
|
919 (setq major-mode 'Info-mode)
|
|
920 (setq mode-name "Info")
|
|
921 (Info-set-mode-line)
|
|
922 (setq buffer-read-only t)
|
|
923 ;; Make mode line update.
|
|
924 (set-buffer-modified-p (buffer-modified-p))
|
|
925 (and (marker-position Info-tag-table-marker)
|
|
926 (buffer-modified-p)
|
|
927 (message "Tags may have changed. Use Info-tagify if necessary")))
|
359
|
928
|
|
929 (defun Info-find-emacs-command-nodes (command)
|
|
930 "Return a list of locations documenting COMMAND in the Emacs Info manual.
|
|
931 The locations are of the format used in Info-history, i.e.
|
|
932 \(FILENAME NODENAME BUFFERPOS\)."
|
|
933 (require 'info)
|
|
934 (let ((where '())
|
|
935 (cmd-desc (concat "^\\* " (regexp-quote (symbol-name command))
|
|
936 ":\\s *\\(.*\\)\\.$")))
|
|
937 (save-excursion
|
|
938 (Info-find-node "emacs" "Command Index")
|
|
939 ;; Take the index node off the Info history.
|
|
940 (setq Info-history (cdr Info-history))
|
|
941 (goto-char (point-max))
|
|
942 (while (re-search-backward cmd-desc nil t)
|
|
943 (setq where (cons (list Info-current-file
|
|
944 (buffer-substring
|
|
945 (match-beginning 1)
|
|
946 (match-end 1))
|
|
947 0)
|
|
948 where)))
|
|
949 where)))
|
|
950
|
|
951 ;;;###autoload
|
|
952 (defun Info-goto-emacs-command-node (command)
|
|
953 "Go to the Info node in the Emacs manual for command COMMAND."
|
|
954 (interactive "CFind documentation for command: ")
|
|
955 (or (commandp command)
|
|
956 (signal 'wrong-type-argument (list 'commandp command)))
|
|
957 (let ((where (Info-find-emacs-command-nodes command)))
|
|
958 (if where
|
|
959 (let ((num-matches (length where)))
|
|
960 ;; Get Info running, and pop to it in another window.
|
|
961 (save-window-excursion
|
|
962 (info))
|
|
963 (pop-to-buffer "*info*")
|
|
964 (Info-find-node (car (car where))
|
|
965 (car (cdr (car where))))
|
|
966 (if (> num-matches 1)
|
|
967 (progn
|
|
968 ;; Info-find-node already pushed (car where) onto
|
|
969 ;; Info-history. Put the other nodes that were found on
|
|
970 ;; the history.
|
|
971 (setq Info-history (nconc (cdr where) Info-history))
|
|
972 (message (substitute-command-keys
|
|
973 "Found %d other entr%. Use \\[Info-last] to see %s."
|
|
974 (1- num-matches)
|
|
975 (if (> num-matches 2) "ies" "y")
|
|
976 (if (> num-matches 2) "them" "it"))))))
|
|
977 (error "Couldn't find documentation for %s." command))))
|
|
978 ;;;###autoload
|
|
979 (define-key help-map "\C-f" 'Info-goto-emacs-command-node)
|
|
980
|
|
981 ;;;###autoload
|
|
982 (defun Info-goto-emacs-key-command-node (key)
|
|
983 "Go to the Info node in the Emacs manual the command bound to KEY, a string.
|
|
984 Interactively, if the binding is execute-extended-command, a command is read."
|
|
985 (interactive "kFind documentation for key:")
|
|
986 (let ((command (key-binding key)))
|
|
987 (cond ((null command)
|
|
988 (message "%s is undefined" (key-description keys)))
|
|
989 ((and (interactive-p)
|
|
990 (eq command 'execute-extended-command))
|
|
991 (Info-goto-emacs-command-node
|
|
992 (read-command "Find documentation for command: ")))
|
|
993 (t
|
|
994 (Info-goto-emacs-command-node command)))))
|
|
995 ;;;###autoload
|
|
996 (define-key help-map "\C-k" 'Info-goto-emacs-key-command-node)
|