]> code.delx.au - gnu-emacs/blob - lisp/info.el
(Info-goto-emacs-key-command-node): Leave a space after
[gnu-emacs] / lisp / info.el
1 ;;; info.el --- info package for Emacs.
2
3 ;; Copyright (C) 1985, 86, 92, 93, 94, 95, 96, 97, 98, 99, 2000 Free Software
4 ;; Foundation, Inc.
5
6 ;; Maintainer: FSF
7 ;; Keywords: help
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Commentary:
27
28 ;; Note that nowadays we expect info files to be made using makeinfo.
29
30 ;;; Code:
31
32 (eval-when-compile (require 'jka-compr))
33
34 (defgroup info nil
35 "Info subsystem"
36 :group 'help
37 :group 'docs)
38
39
40 (defvar Info-history nil
41 "List of info nodes user has visited.
42 Each element of list is a list (FILENAME NODENAME BUFFERPOS).")
43
44 (defcustom Info-enable-edit nil
45 "*Non-nil means the \\<Info-mode-map>\\[Info-edit] command in Info can edit the current node.
46 This is convenient if you want to write info files by hand.
47 However, we recommend that you not do this.
48 It is better to write a Texinfo file and generate the Info file from that,
49 because that gives you a printed manual as well."
50 :type 'boolean
51 :group 'info)
52
53 (defvar Info-enable-active-nodes nil
54 "Non-nil allows Info to execute Lisp code associated with nodes.
55 The Lisp code is executed when the node is selected.")
56 (put 'Info-enable-active-nodes 'risky-local-variable t)
57
58 (defcustom Info-fontify t
59 "*Non-nil enables highlighting and fonts in Info nodes."
60 :type 'boolean
61 :group 'info)
62
63 (defface info-node
64 '((((class color)) (:foreground "brown" :bold t :italic t))
65 (t (:bold t :italic t)))
66 "Face for Info node names."
67 :group 'info)
68
69 (defface info-menu-5
70 '((((class color)) (:foreground "red1"))
71 (t (:underline t)))
72 "Face for the fifth and tenth `*' in an Info menu."
73 :group 'info)
74
75 (defface info-xref
76 '((((class color)) (:foreground "magenta4" :bold t))
77 (t (:bold t)))
78 "Face for Info cross-references."
79 :group 'info)
80
81 (defcustom Info-fontify-maximum-menu-size 100000
82 "*Maximum size of menu to fontify if `Info-fontify' is non-nil."
83 :type 'integer
84 :group 'info)
85
86 (defvar Info-directory-list nil
87 "List of directories to search for Info documentation files.
88 nil means not yet initialized. In this case, Info uses the environment
89 variable INFOPATH to initialize it, or `Info-default-directory-list'
90 if there is no INFOPATH variable in the environment.
91 The last element of `Info-default-directory-list' is the directory
92 where Emacs installs the Info files that come with it.
93
94 If you run the Emacs executable from the `src' directory in the Emacs
95 source tree, the `info' directory in the source tree is used as the last
96 element, in place of the installation Info directory. This is useful
97 when you run a version of Emacs without installing it.")
98
99 (defcustom Info-additional-directory-list nil
100 "List of additional directories to search for Info documentation files.
101 These directories are not searched for merging the `dir' file."
102 :type '(repeat directory)
103 :group 'info)
104
105 (defvar Info-current-file nil
106 "Info file that Info is now looking at, or nil.
107 This is the name that was specified in Info, not the actual file name.
108 It doesn't contain directory names or file name extensions added by Info.
109 Can also be t when using `Info-on-current-buffer'.")
110
111 (defvar Info-current-subfile nil
112 "Info subfile that is actually in the *info* buffer now.
113 nil if current info file is not split into subfiles.")
114
115 (defvar Info-current-node nil
116 "Name of node that Info is now looking at, or nil.")
117
118 (defvar Info-tag-table-marker nil
119 "Marker pointing at beginning of current Info file's tag table.
120 Marker points nowhere if file has no tag table.")
121
122 (defvar Info-tag-table-buffer nil
123 "Buffer used for indirect tag tables.")
124
125 (defvar Info-current-file-completions nil
126 "Cached completion list for current Info file.")
127
128 (defvar Info-index-alternatives nil
129 "List of possible matches for last `Info-index' command.")
130
131 (defvar Info-standalone nil
132 "Non-nil if Emacs was started solely as an Info browser.")
133 \f
134 (defvar Info-suffix-list
135 ;; The MS-DOS list should work both when long file names are
136 ;; supported (Windows 9X), and when only 8+3 file names are available.
137 (if (eq system-type 'ms-dos)
138 '( (".gz" . "gunzip")
139 (".z" . "gunzip")
140 (".bz2" . "bzip2 -dc")
141 (".inz" . "gunzip")
142 (".igz" . "gunzip")
143 (".info.Z" . "gunzip")
144 (".info.gz" . "gunzip")
145 ("-info.Z" . "gunzip")
146 ("-info.gz" . "gunzip")
147 ("/index.gz". "gunzip")
148 ("/index.z" . "gunzip")
149 (".inf" . nil)
150 (".info" . nil)
151 ("-info" . nil)
152 ("/index" . nil)
153 ("" . nil))
154 '( (".info.Z". "uncompress")
155 (".info.Y". "unyabba")
156 (".info.gz". "gunzip")
157 (".info.z". "gunzip")
158 (".info.bz2" . "bzip2 -dc")
159 (".info". nil)
160 ("-info.Z". "uncompress")
161 ("-info.Y". "unyabba")
162 ("-info.gz". "gunzip")
163 ("-info.bz2" . "bzip2 -dc")
164 ("-info.z". "gunzip")
165 ("-info". nil)
166 ("/index.Z". "uncompress")
167 ("/index.Y". "unyabba")
168 ("/index.gz". "gunzip")
169 ("/index.z". "gunzip")
170 ("/index.bz2". "bzip2 -dc")
171 ("/index". nil)
172 (".Z". "uncompress")
173 (".Y". "unyabba")
174 (".gz". "gunzip")
175 (".z". "gunzip")
176 (".bz2" . "bzip2 -dc")
177 ("". nil)))
178 "List of file name suffixes and associated decoding commands.
179 Each entry should be (SUFFIX . STRING); the file is given to
180 the command as standard input. If STRING is nil, no decoding is done.
181 Because the SUFFIXes are tried in order, the empty string should
182 be last in the list.")
183
184 ;; Concatenate SUFFIX onto FILENAME. SUFFIX should start with a dot.
185 ;; First, on ms-dos, delete some of the extension in FILENAME
186 ;; to make room.
187 (defun info-insert-file-contents-1 (filename suffix)
188 (if (not (eq system-type 'ms-dos))
189 (concat filename suffix)
190 (let* ((sans-exts (file-name-sans-extension filename))
191 ;; How long is the extension in FILENAME (not counting the dot).
192 (ext-len (max 0 (- (length filename) (length sans-exts) 1)))
193 ext-left)
194 ;; SUFFIX starts with a dot. If FILENAME already has one,
195 ;; get rid of the one in SUFFIX (unless suffix is empty).
196 (or (and (<= ext-len 0)
197 (not (eq (aref filename (1- (length filename))) ?.)))
198 (= (length suffix) 0)
199 (setq suffix (substring suffix 1)))
200 ;; How many chars of that extension should we keep?
201 (setq ext-left (min ext-len (max 0 (- 3 (length suffix)))))
202 ;; Get rid of the rest of the extension, and add SUFFIX.
203 (concat (substring filename 0 (- (length filename)
204 (- ext-len ext-left)))
205 suffix))))
206
207 (defun info-file-exists-p (filename)
208 (and (file-exists-p filename)
209 (not (file-directory-p filename))))
210
211 (defun info-insert-file-contents (filename &optional visit)
212 "Insert the contents of an info file in the current buffer.
213 Do the right thing if the file has been compressed or zipped."
214 (let ((tail Info-suffix-list)
215 fullname decoder)
216 (if (file-exists-p filename)
217 ;; FILENAME exists--see if that name contains a suffix.
218 ;; If so, set DECODE accordingly.
219 (progn
220 (while (and tail
221 (not (string-match
222 (concat (regexp-quote (car (car tail))) "$")
223 filename)))
224 (setq tail (cdr tail)))
225 (setq fullname filename
226 decoder (cdr (car tail))))
227 ;; Try adding suffixes to FILENAME and see if we can find something.
228 (while (and tail
229 (not (info-file-exists-p (info-insert-file-contents-1
230 filename (car (car tail))))))
231 (setq tail (cdr tail)))
232 ;; If we found a file with a suffix, set DECODER according to the suffix
233 ;; and set FULLNAME to the file's actual name.
234 (setq fullname (info-insert-file-contents-1 filename (car (car tail)))
235 decoder (cdr (car tail)))
236 (or tail
237 (error "Can't find %s or any compressed version of it" filename)))
238 ;; check for conflict with jka-compr
239 (if (and (featurep 'jka-compr)
240 (jka-compr-installed-p)
241 (jka-compr-get-compression-info fullname))
242 (setq decoder nil))
243 (if decoder
244 (progn
245 (insert-file-contents-literally fullname visit)
246 (let ((buffer-read-only nil)
247 (coding-system-for-write 'no-conversion)
248 (default-directory (or (file-name-directory fullname)
249 default-directory)))
250 (call-process-region (point-min) (point-max) decoder t t)))
251 (insert-file-contents fullname visit))))
252 \f
253 (defun info-initialize ()
254 "Initialize `Info-directory-list', if that hasn't been done yet."
255 (unless Info-directory-list
256 (let ((path (getenv "INFOPATH"))
257 (source (expand-file-name "info/" source-directory))
258 (sibling (if installation-directory
259 (expand-file-name "info/" installation-directory)))
260 alternative)
261 (setq Info-directory-list
262 (prune-directory-list
263 (if path
264 (split-string path (regexp-quote path-separator))
265 (if (and sibling (file-exists-p sibling))
266 ;; Uninstalled, Emacs builddir != srcdir.
267 (setq alternative sibling)
268 ;; Uninstalled, builddir == srcdir
269 (setq alternative source))
270 (if (or (member alternative Info-default-directory-list)
271 ;; On DOS/NT, we use movable executables always,
272 ;; and we must always find the Info dir at run time.
273 (if (memq system-type '(ms-dos windows-nt))
274 nil
275 ;; Use invocation-directory for Info
276 ;; only if we used it for exec-directory also.
277 (not (string= exec-directory
278 (expand-file-name "lib-src/"
279 installation-directory))))
280 (not (file-exists-p alternative)))
281 Info-default-directory-list
282 ;; `alternative' contains the Info files that came with this
283 ;; version, so we should look there first. `Info-insert-dir'
284 ;; currently expects to find `alternative' first on the list.
285 (cons alternative
286 (reverse (cdr (reverse Info-default-directory-list)))))))))))
287
288 ;;;###autoload
289 (defun info-other-window (&optional file)
290 "Like `info' but show the Info buffer in another window."
291 (interactive (if current-prefix-arg
292 (list (read-file-name "Info file name: " nil nil t))))
293 (let (same-window-buffer-names)
294 (info file)))
295
296 ;;;###autoload (add-hook 'same-window-buffer-names "*info*")
297
298 ;;;###autoload
299 (defun info (&optional file)
300 "Enter Info, the documentation browser.
301 Optional argument FILE specifies the file to examine;
302 the default is the top-level directory of Info.
303 Called from a program, FILE may specify an Info node of the form
304 `(FILENAME)NODENAME'.
305
306 In interactive use, a prefix argument directs this command
307 to read a file name from the minibuffer.
308
309 The search path for Info files is in the variable `Info-directory-list'.
310 The top-level Info directory is made by combining all the files named `dir'
311 in all the directories in that path."
312 (interactive (if current-prefix-arg
313 (list (read-file-name "Info file name: " nil nil t))))
314 (if file
315 (progn
316 (pop-to-buffer "*info*")
317 ;; If argument already contains parentheses, don't add another set
318 ;; since the argument will then be parsed improperly. This also
319 ;; has the added benefit of allowing node names to be included
320 ;; following the parenthesized filename.
321 (if (and (stringp file) (string-match "(.*)" file))
322 (Info-goto-node file)
323 (Info-goto-node (concat "(" file ")"))))
324 (if (get-buffer "*info*")
325 (pop-to-buffer "*info*")
326 (Info-directory))))
327
328 ;;;###autoload
329 (defun info-standalone ()
330 "Run Emacs as a standalone Info reader.
331 Usage: emacs -f info-standalone [filename]
332 In standalone mode, \\<Info-mode-map>\\[Info-exit] exits Emacs itself."
333 (setq Info-standalone t)
334 (if (and command-line-args-left
335 (not (string-match "^-" (car command-line-args-left))))
336 (condition-case err
337 (progn
338 (info (car command-line-args-left))
339 (setq command-line-args-left (cdr command-line-args-left)))
340 (error (send-string-to-terminal
341 (format "%s\n" (if (eq (car-safe err) 'error)
342 (nth 1 err) err)))
343 (save-buffers-kill-emacs)))
344 (info)))
345 \f
346 ;; See if the the accessible portion of the buffer begins with a node
347 ;; delimiter, and the node header line which follows matches REGEXP.
348 ;; Typically, this test will be followed by a loop that examines the
349 ;; rest of the buffer with (search-forward "\n\^_"), and it's a pity
350 ;; to have the overhead of this special test inside the loop.
351
352 ;; This function changes match-data, but supposedly the caller might
353 ;; want to use the results of re-search-backward.
354
355 ;; The return value is the value of point at the beginning of matching
356 ;; REGERXP, if the function succeeds, nil otherwise.
357 (defun Info-node-at-bob-matching (regexp)
358 (and (bobp) ; are we at beginning of buffer?
359 (looking-at "\^_") ; does it begin with node delimiter?
360 (let (beg)
361 (forward-line 1)
362 (setq beg (point))
363 (forward-line 1) ; does the line after delimiter match REGEXP?
364 (re-search-backward regexp beg t))))
365
366 (defun Info-find-node (filename nodename &optional no-going-back)
367 "Go to an info node specified as separate FILENAME and NODENAME.
368 NO-GOING-BACK is non-nil if recovering from an error in this function;
369 it says do not attempt further (recursive) error recovery."
370 (info-initialize)
371 ;; Convert filename to lower case if not found as specified.
372 ;; Expand it.
373 (if (stringp filename)
374 (let (temp temp-downcase found)
375 (setq filename (substitute-in-file-name filename))
376 (if (string= (downcase filename) "dir")
377 (setq found t)
378 (let ((dirs (if (string-match "^\\./" filename)
379 ;; If specified name starts with `./'
380 ;; then just try current directory.
381 '("./")
382 (if (file-name-absolute-p filename)
383 ;; No point in searching for an
384 ;; absolute file name
385 '(nil)
386 (if Info-additional-directory-list
387 (append Info-directory-list
388 Info-additional-directory-list)
389 Info-directory-list)))))
390 ;; Search the directory list for file FILENAME.
391 (while (and dirs (not found))
392 (setq temp (expand-file-name filename (car dirs)))
393 (setq temp-downcase
394 (expand-file-name (downcase filename) (car dirs)))
395 ;; Try several variants of specified name.
396 (let ((suffix-list Info-suffix-list))
397 (while (and suffix-list (not found))
398 (cond ((info-file-exists-p
399 (info-insert-file-contents-1
400 temp (car (car suffix-list))))
401 (setq found temp))
402 ((info-file-exists-p
403 (info-insert-file-contents-1
404 temp-downcase (car (car suffix-list))))
405 (setq found temp-downcase)))
406 (setq suffix-list (cdr suffix-list))))
407 (setq dirs (cdr dirs)))))
408 (if found
409 (setq filename found)
410 (error "Info file %s does not exist" filename))))
411 ;; Record the node we are leaving.
412 (if (and Info-current-file (not no-going-back))
413 (setq Info-history
414 (cons (list Info-current-file Info-current-node (point))
415 Info-history)))
416 ;; Go into info buffer.
417 (or (eq major-mode 'Info-mode) (pop-to-buffer "*info*"))
418 (Info-find-node-2 filename nodename no-going-back))
419
420 (defun Info-on-current-buffer (&optional nodename)
421 "Use the `Info-mode' to browse the current info buffer.
422 If a prefix arg is provided, it queries for the NODENAME which
423 else defaults to `Top'."
424 (interactive
425 (list (if current-prefix-arg
426 (completing-read "Node name: " (Info-build-node-completions)
427 nil t "Top")
428 "Top")))
429 (info-initialize)
430 (Info-mode)
431 (set (make-local-variable 'Info-current-file) t)
432 (Info-find-node-2 nil nodename))
433
434 (defun Info-find-in-tag-table-1 (marker regexp case-fold)
435 "Find a node in a tag table.
436 MARKER specifies the buffer and position to start searching at.
437 REGEXP is a regular expression matching nodes or references. Its first
438 group should match `Node:' or `Ref:'.
439 CASE-FOLD t means search for a case-insensitive match.
440 If a match was found, value is a list (FOUND-ANCHOR POS MODE), where
441 FOUND-ANCHOR is non-nil if a `Ref:' was matched, POS is the position
442 where the match was found, and MODE is `major-mode' of the buffer in
443 which the match was found."
444 (let ((case-fold-search case-fold)
445 found-mode guesspos found-anchor)
446 (save-excursion
447 (set-buffer (marker-buffer marker))
448 (goto-char marker)
449
450 ;; Search tag table
451 (beginning-of-line)
452 (when (re-search-forward regexp nil t)
453 (list (string-equal "Ref:" (match-string 1))
454 (1+ (read (current-buffer)))
455 major-mode)))))
456
457 (defun Info-find-in-tag-table (marker regexp)
458 "Find a node in a tag table.
459 MARKER specifies the buffer and position to start searching at.
460 REGEXP is a regular expression matching nodes or references. Its first
461 group should match `Node:' or `Ref:'.
462 If a match was found, value is a list (FOUND-ANCHOR POS MODE), where
463 FOUND-ANCHOR is non-nil if a `Ref:' was matched, POS is the position
464 where the match was found, and MODE is `major-mode' of the buffer in
465 which the match was found.
466 This function tries to find a case-sensitive match first, then a
467 case-insensitive match is tried."
468 (let ((result (Info-find-in-tag-table-1 marker regexp nil)))
469 (when (null (car result))
470 (setq result (Info-find-in-tag-table-1 marker regexp t)))
471 result))
472
473 (defun Info-find-node-in-buffer-1 (regexp case-fold)
474 "Find a node or anchor in the current buffer.
475 REGEXP is a regular expression matching nodes or references. Its first
476 group should match `Node:' or `Ref:'.
477 CASE-FOLD t means search for a case-insensitive match.
478 Value is the position at which a match was found, or nil if not found."
479 (let ((case-fold-search case-fold)
480 found)
481 (save-excursion
482 (when (Info-node-at-bob-matching regexp)
483 (setq found (point)))
484 (while (and (not found)
485 (search-forward "\n\^_" nil t))
486 (forward-line 1)
487 (let ((beg (point)))
488 (forward-line 1)
489 (when (re-search-backward regexp beg t)
490 (beginning-of-line)
491 (setq found (point)))))
492 found)))
493
494 (defun Info-find-node-in-buffer (regexp)
495 "Find a node or anchor in the current buffer.
496 REGEXP is a regular expression matching nodes or references. Its first
497 group should match `Node:' or `Ref:'.
498 Value is the position at which a match was found, or nil if not found.
499 This function looks for a case-sensitive match first. If none is found,
500 a case-insensitive match is tried."
501 (or (Info-find-node-in-buffer-1 regexp nil)
502 (Info-find-node-in-buffer-1 regexp t)))
503
504 (defun Info-find-node-2 (filename nodename &optional no-going-back)
505 (buffer-disable-undo (current-buffer))
506 (or (eq major-mode 'Info-mode)
507 (Info-mode))
508 (widen)
509 (setq Info-current-node nil)
510 (unwind-protect
511 (let ((case-fold-search t)
512 anchorpos)
513 ;; Switch files if necessary
514 (or (null filename)
515 (equal Info-current-file filename)
516 (let ((buffer-read-only nil))
517 (setq Info-current-file nil
518 Info-current-subfile nil
519 Info-current-file-completions nil
520 buffer-file-name nil)
521 (erase-buffer)
522 (if (eq filename t)
523 (Info-insert-dir)
524 (info-insert-file-contents filename t)
525 (setq default-directory (file-name-directory filename)))
526 (set-buffer-modified-p nil)
527 ;; See whether file has a tag table. Record the location if yes.
528 (goto-char (point-max))
529 (forward-line -8)
530 ;; Use string-equal, not equal, to ignore text props.
531 (if (not (or (string-equal nodename "*")
532 (not
533 (search-forward "\^_\nEnd tag table\n" nil t))))
534 (let (pos)
535 ;; We have a tag table. Find its beginning.
536 ;; Is this an indirect file?
537 (search-backward "\nTag table:\n")
538 (setq pos (point))
539 (if (save-excursion
540 (forward-line 2)
541 (looking-at "(Indirect)\n"))
542 ;; It is indirect. Copy it to another buffer
543 ;; and record that the tag table is in that buffer.
544 (let ((buf (current-buffer))
545 (tagbuf
546 (or Info-tag-table-buffer
547 (generate-new-buffer " *info tag table*"))))
548 (setq Info-tag-table-buffer tagbuf)
549 (save-excursion
550 (set-buffer tagbuf)
551 (buffer-disable-undo (current-buffer))
552 (setq case-fold-search t)
553 (erase-buffer)
554 (insert-buffer-substring buf))
555 (set-marker Info-tag-table-marker
556 (match-end 0) tagbuf))
557 (set-marker Info-tag-table-marker pos)))
558 (set-marker Info-tag-table-marker nil))
559 (setq Info-current-file
560 (if (eq filename t) "dir" filename))))
561 ;; Use string-equal, not equal, to ignore text props.
562 (if (string-equal nodename "*")
563 (progn (setq Info-current-node nodename)
564 (Info-set-mode-line))
565 ;; Possibilities:
566 ;;
567 ;; 1. Anchor found in tag table
568 ;; 2. Anchor *not* in tag table
569 ;;
570 ;; 3. Node found in tag table
571 ;; 4. Node *not* found in tag table, but found in file
572 ;; 5. Node *not* in tag table, and *not* in file
573 ;;
574 ;; *Or* the same, but in an indirect subfile.
575
576 ;; Search file for a suitable node.
577 (let ((guesspos (point-min))
578 (regexp (concat "\\(Node:\\|Ref:\\) *\\("
579 (regexp-quote nodename)
580 "\\) *[,\t\n\177]"))
581 (nodepos nil))
582
583 (catch 'foo
584
585 ;; First, search a tag table, if any
586 (when (marker-position Info-tag-table-marker)
587 (let* ((m Info-tag-table-marker)
588 (found (Info-find-in-tag-table m regexp)))
589
590 (when found
591 ;; FOUND is (ANCHOR POS MODE).
592 (setq guesspos (nth 1 found))
593
594 ;; If this is an indirect file, determine which
595 ;; file really holds this node and read it in.
596 (unless (eq (nth 2 found) 'Info-mode)
597 ;; Note that the current buffer must be the
598 ;; *info* buffer on entry to
599 ;; Info-read-subfile. Thus the hackery above.
600 (setq guesspos (Info-read-subfile guesspos)))
601
602 ;; Handle anchor
603 (when (nth 0 found)
604 (goto-char (setq anchorpos guesspos))
605 (throw 'foo t)))))
606
607 ;; Else we may have a node, which we search for:
608 (goto-char (max (point-min)
609 (- (byte-to-position guesspos) 1000)))
610
611 ;; Now search from our advised position (or from beg of
612 ;; buffer) to find the actual node. First, check
613 ;; whether the node is right where we are, in case the
614 ;; buffer begins with a node.
615 (let ((pos (Info-find-node-in-buffer regexp)))
616 (when pos
617 (goto-char pos)
618 (throw 'foo t))
619 (error "No such anchor in tag table or node in tag table or file: %s"
620 nodename)))
621
622 (Info-select-node)
623 (goto-char (or anchorpos (point-min))))))
624 ;; If we did not finish finding the specified node,
625 ;; go back to the previous one.
626 (or Info-current-node no-going-back (null Info-history)
627 (let ((hist (car Info-history)))
628 (setq Info-history (cdr Info-history))
629 (Info-find-node (nth 0 hist) (nth 1 hist) t)
630 (goto-char (nth 2 hist))))))
631
632 ;; Cache the contents of the (virtual) dir file, once we have merged
633 ;; it for the first time, so we can save time subsequently.
634 (defvar Info-dir-contents nil)
635
636 ;; Cache for the directory we decided to use for the default-directory
637 ;; of the merged dir text.
638 (defvar Info-dir-contents-directory nil)
639
640 ;; Record the file attributes of all the files from which we
641 ;; constructed Info-dir-contents.
642 (defvar Info-dir-file-attributes nil)
643
644 (defvar Info-dir-file-name nil)
645
646 ;; Construct the Info directory node by merging the files named `dir'
647 ;; from various directories. Set the *info* buffer's
648 ;; default-directory to the first directory we actually get any text
649 ;; from.
650 (defun Info-insert-dir ()
651 (if (and Info-dir-contents Info-dir-file-attributes
652 ;; Verify that none of the files we used has changed
653 ;; since we used it.
654 (eval (cons 'and
655 (mapcar (lambda (elt)
656 (let ((curr (file-attributes
657 ;; Handle symlinks
658 (file-truename (car elt)))))
659
660 ;; Don't compare the access time.
661 (if curr (setcar (nthcdr 4 curr) 0))
662 (setcar (nthcdr 4 (cdr elt)) 0)
663 (equal (cdr elt) curr)))
664 Info-dir-file-attributes))))
665 (progn
666 (insert Info-dir-contents)
667 (goto-char (point-min)))
668 (let ((dirs Info-directory-list)
669 ;; Bind this in case the user sets it to nil.
670 (case-fold-search t)
671 ;; This is set non-nil if we find a problem in some input files.
672 problems
673 buffers buffer others nodes dirs-done)
674
675 (setq Info-dir-file-attributes nil)
676
677 ;; Search the directory list for the directory file.
678 (while dirs
679 (let ((truename (file-truename (expand-file-name (car dirs)))))
680 (or (member truename dirs-done)
681 (member (directory-file-name truename) dirs-done)
682 ;; Try several variants of specified name.
683 ;; Try upcasing, appending `.info', or both.
684 (let* (file
685 (attrs
686 (or
687 (progn (setq file (expand-file-name "dir" truename))
688 (file-attributes file))
689 (progn (setq file (expand-file-name "DIR" truename))
690 (file-attributes file))
691 (progn (setq file (expand-file-name "dir.info" truename))
692 (file-attributes file))
693 (progn (setq file (expand-file-name "DIR.INFO" truename))
694 (file-attributes file)))))
695 (setq dirs-done
696 (cons truename
697 (cons (directory-file-name truename)
698 dirs-done)))
699 (if attrs
700 (save-excursion
701 (or buffers
702 (message "Composing main Info directory..."))
703 (set-buffer (generate-new-buffer " info dir"))
704 (condition-case nil
705 (progn
706 (insert-file-contents file)
707 (make-local-variable 'Info-dir-file-name)
708 (setq Info-dir-file-name file)
709 (setq buffers (cons (current-buffer) buffers)
710 Info-dir-file-attributes
711 (cons (cons file attrs)
712 Info-dir-file-attributes)))
713 (error (kill-buffer (current-buffer))))))))
714 (or (cdr dirs) (setq Info-dir-contents-directory
715 (file-name-as-directory (car dirs))))
716 (setq dirs (cdr dirs))))
717
718 (or buffers
719 (error "Can't find the Info directory node"))
720 ;; Distinguish the dir file that comes with Emacs from all the
721 ;; others. Yes, that is really what this is supposed to do.
722 ;; The definition of `Info-directory-list' puts it first on that
723 ;; list and so last in `buffers' at this point.
724 (setq buffer (car (last buffers))
725 others (delq buffer buffers))
726
727 ;; Insert the entire original dir file as a start; note that we've
728 ;; already saved its default directory to use as the default
729 ;; directory for the whole concatenation.
730 (insert-buffer buffer)
731
732 ;; Look at each of the other buffers one by one.
733 (while others
734 (let ((other (car others))
735 ;; Bind this in case the user sets it to nil.
736 (case-fold-search t)
737 this-buffer-nodes)
738 ;; In each, find all the menus.
739 (save-excursion
740 (set-buffer other)
741 (goto-char (point-min))
742 ;; Find each menu, and add an elt to NODES for it.
743 (while (re-search-forward "^\\* Menu:" nil t)
744 (let (beg nodename end)
745 (forward-line 1)
746 (setq beg (point))
747 (or (search-backward "\n\^_" nil 'move)
748 (looking-at "\^_")
749 (signal 'search-failed (list "\n\^_")))
750 (search-forward "Node: ")
751 (setq nodename (Info-following-node-name))
752 (search-forward "\n\^_" nil 'move)
753 (beginning-of-line)
754 (setq end (point))
755 (setq this-buffer-nodes
756 (cons (list nodename other beg end)
757 this-buffer-nodes))))
758 (if (assoc-ignore-case "top" this-buffer-nodes)
759 (setq nodes (nconc this-buffer-nodes nodes))
760 (setq problems t)
761 (message "No `top' node in %s" Info-dir-file-name))))
762 (setq others (cdr others)))
763 ;; Add to the main menu a menu item for each other node.
764 (let ((case-fold-search t)
765 (re-search-forward "^\\* Menu:")))
766 (forward-line 1)
767 (let ((menu-items '("top"))
768 (nodes nodes)
769 (case-fold-search t)
770 (end (save-excursion (search-forward "\^_" nil t) (point))))
771 (while nodes
772 (let ((nodename (car (car nodes))))
773 (save-excursion
774 (or (member (downcase nodename) menu-items)
775 (re-search-forward (concat "^\\* +"
776 (regexp-quote nodename)
777 "::")
778 end t)
779 (progn
780 (insert "* " nodename "::" "\n")
781 (setq menu-items (cons nodename menu-items))))))
782 (setq nodes (cdr nodes))))
783 ;; Now take each node of each of the other buffers
784 ;; and merge it into the main buffer.
785 (while nodes
786 (let ((case-fold-search t)
787 (nodename (car (car nodes))))
788 (goto-char (point-min))
789 ;; Find the like-named node in the main buffer.
790 (if (re-search-forward (concat "^\^_.*\n.*Node: "
791 (regexp-quote nodename)
792 "[,\n\t]")
793 nil t)
794 (progn
795 (search-forward "\n\^_" nil 'move)
796 (beginning-of-line)
797 (insert "\n"))
798 ;; If none exists, add one.
799 (goto-char (point-max))
800 (insert "\^_\nFile: dir\tNode: " nodename "\n\n* Menu:\n\n"))
801 ;; Merge the text from the other buffer's menu
802 ;; into the menu in the like-named node in the main buffer.
803 (apply 'insert-buffer-substring (cdr (car nodes))))
804 (setq nodes (cdr nodes)))
805 ;; Kill all the buffers we just made.
806 (while buffers
807 (kill-buffer (car buffers))
808 (setq buffers (cdr buffers)))
809 (goto-char (point-min))
810 (if problems
811 (message "Composing main Info directory...problems encountered, see `*Messages*'")
812 (message "Composing main Info directory...done")))
813 (setq Info-dir-contents (buffer-string)))
814 (setq default-directory Info-dir-contents-directory))
815
816 ;; Note that on entry to this function the current-buffer must be the
817 ;; *info* buffer; not the info tags buffer.
818 (defun Info-read-subfile (nodepos)
819 ;; NODEPOS is either a position (in the Info file as a whole,
820 ;; not relative to a subfile) or the name of a subfile.
821 (let (lastfilepos
822 lastfilename)
823 (if (numberp nodepos)
824 (save-excursion
825 (set-buffer (marker-buffer Info-tag-table-marker))
826 (goto-char (point-min))
827 (or (looking-at "\^_")
828 (search-forward "\n\^_"))
829 (forward-line 2)
830 (catch 'foo
831 (while (not (looking-at "\^_"))
832 (if (not (eolp))
833 (let ((beg (point))
834 thisfilepos thisfilename)
835 (search-forward ": ")
836 (setq thisfilename (buffer-substring beg (- (point) 2)))
837 (setq thisfilepos (read (current-buffer)))
838 ;; read in version 19 stops at the end of number.
839 ;; Advance to the next line.
840 (forward-line 1)
841 (if (> thisfilepos nodepos)
842 (throw 'foo t))
843 (setq lastfilename thisfilename)
844 (setq lastfilepos thisfilepos))
845 (forward-line 1)))))
846 (setq lastfilename nodepos)
847 (setq lastfilepos 0))
848 ;; Assume previous buffer is in Info-mode.
849 ;; (set-buffer (get-buffer "*info*"))
850 (or (equal Info-current-subfile lastfilename)
851 (let ((buffer-read-only nil))
852 (setq buffer-file-name nil)
853 (widen)
854 (erase-buffer)
855 (info-insert-file-contents lastfilename)
856 (set-buffer-modified-p nil)
857 (setq Info-current-subfile lastfilename)))
858 (goto-char (point-min))
859 (if (looking-at "\^_")
860 (forward-char 1)
861 (search-forward "\n\^_"))
862 (if (numberp nodepos)
863 (+ (- nodepos lastfilepos) (point)))))
864
865 (defun Info-select-node ()
866 "Select the info node that point is in.
867 Bind this in case the user sets it to nil."
868 (let ((case-fold-search t))
869 (save-excursion
870 ;; Find beginning of node.
871 (if (search-backward "\n\^_" nil 'move)
872 (forward-line 2)
873 (if (looking-at "\^_")
874 (forward-line 1)
875 (signal 'search-failed (list "\n\^_"))))
876 ;; Get nodename spelled as it is in the node.
877 (re-search-forward "Node:[ \t]*")
878 (setq Info-current-node
879 (buffer-substring-no-properties (point)
880 (progn
881 (skip-chars-forward "^,\t\n")
882 (point))))
883 (Info-set-mode-line)
884 ;; Find the end of it, and narrow.
885 (beginning-of-line)
886 (let (active-expression)
887 (narrow-to-region (point)
888 (if (re-search-forward "\n[\^_\f]" nil t)
889 (prog1
890 (1- (point))
891 (if (looking-at "[\n\^_\f]*execute: ")
892 (progn
893 (goto-char (match-end 0))
894 (setq active-expression
895 (read (current-buffer))))))
896 (point-max)))
897 (if Info-enable-active-nodes (eval active-expression))
898 (if Info-fontify (Info-fontify-node))
899 (run-hooks 'Info-selection-hook)))))
900
901 (defun Info-set-mode-line ()
902 (setq mode-line-buffer-identification
903 (concat
904 " *Info* ("
905 (file-name-nondirectory (if (stringp Info-current-file)
906 Info-current-file
907 (or buffer-file-name "")))
908 ") "
909 (or Info-current-node ""))))
910 \f
911 ;; Go to an info node specified with a filename-and-nodename string
912 ;; of the sort that is found in pointers in nodes.
913
914 (defun Info-goto-node (nodename &optional fork)
915 "Go to info node named NAME. Give just NODENAME or (FILENAME)NODENAME.
916 If FORK is non-nil, show the node in a new info buffer.
917 If FORK is a string, it is the name to use for the new buffer."
918 (interactive (list (Info-read-node-name "Goto node: ") current-prefix-arg))
919 (info-initialize)
920 (if fork
921 (set-buffer
922 (clone-buffer (concat "*info-" (if (stringp fork) fork nodename) "*") t)))
923 (let (filename)
924 (string-match "\\s *\\((\\s *\\([^\t)]*\\)\\s *)\\s *\\|\\)\\(.*\\)"
925 nodename)
926 (setq filename (if (= (match-beginning 1) (match-end 1))
927 ""
928 (substring nodename (match-beginning 2) (match-end 2)))
929 nodename (substring nodename (match-beginning 3) (match-end 3)))
930 (let ((trim (string-match "\\s *\\'" filename)))
931 (if trim (setq filename (substring filename 0 trim))))
932 (let ((trim (string-match "\\s *\\'" nodename)))
933 (if trim (setq nodename (substring nodename 0 trim))))
934 (if transient-mark-mode (deactivate-mark))
935 (Info-find-node (if (equal filename "") nil filename)
936 (if (equal nodename "") "Top" nodename))))
937
938 (defvar Info-read-node-completion-table)
939
940 ;; This function is used as the "completion table" while reading a node name.
941 ;; It does completion using the alist in Info-read-node-completion-table
942 ;; unless STRING starts with an open-paren.
943 (defun Info-read-node-name-1 (string predicate code)
944 (let ((no-completion (and (> (length string) 0) (eq (aref string 0) ?\())))
945 (cond ((eq code nil)
946 (if no-completion
947 string
948 (try-completion string Info-read-node-completion-table predicate)))
949 ((eq code t)
950 (if no-completion
951 nil
952 (all-completions string Info-read-node-completion-table predicate)))
953 ((eq code 'lambda)
954 (if no-completion
955 t
956 (assoc string Info-read-node-completion-table))))))
957
958 (defun Info-read-node-name (prompt &optional default)
959 (let* ((completion-ignore-case t)
960 (Info-read-node-completion-table (Info-build-node-completions))
961 (nodename (completing-read prompt 'Info-read-node-name-1 nil t)))
962 (if (equal nodename "")
963 (or default
964 (Info-read-node-name prompt))
965 nodename)))
966
967 (defun Info-build-node-completions ()
968 (or Info-current-file-completions
969 (let ((compl nil)
970 ;; Bind this in case the user sets it to nil.
971 (case-fold-search t)
972 (node-regexp "Node: *\\([^,\n]*\\) *[,\n\t]"))
973 (save-excursion
974 (save-restriction
975 (if (marker-buffer Info-tag-table-marker)
976 (let ((marker Info-tag-table-marker))
977 (set-buffer (marker-buffer marker))
978 (widen)
979 (goto-char marker)
980 (while (re-search-forward "\n\\(Node\\|Ref\\): \\(.*\\)\177" nil t)
981 (setq compl
982 (cons (list (match-string-no-properties 2))
983 compl))))
984 (widen)
985 (goto-char (point-min))
986 ;; If the buffer begins with a node header, process that first.
987 (if (Info-node-at-bob-matching node-regexp)
988 (setq compl (list (match-string-no-properties 1))))
989 ;; Now for the rest of the nodes.
990 (while (search-forward "\n\^_" nil t)
991 (forward-line 1)
992 (let ((beg (point)))
993 (forward-line 1)
994 (if (re-search-backward node-regexp beg t)
995 (setq compl
996 (cons (list (match-string-no-properties 1))
997 compl))))))))
998 (setq compl (cons '("*") compl))
999 (setq Info-current-file-completions compl))))
1000 \f
1001 (defun Info-restore-point (hl)
1002 "If this node has been visited, restore the point value when we left."
1003 (while hl
1004 (if (and (equal (nth 0 (car hl)) Info-current-file)
1005 ;; Use string-equal, not equal, to ignore text props.
1006 (string-equal (nth 1 (car hl)) Info-current-node))
1007 (progn
1008 (goto-char (nth 2 (car hl)))
1009 (setq hl nil)) ;terminate the while at next iter
1010 (setq hl (cdr hl)))))
1011 \f
1012 (defvar Info-search-history nil
1013 "The history list for `Info-search'.")
1014
1015 (defun Info-search (regexp)
1016 "Search for REGEXP, starting from point, and select node it's found in."
1017 (interactive (list (read-string "Regexp search: "
1018 nil 'Info-search-history)))
1019 (when transient-mark-mode
1020 (deactivate-mark))
1021 (when (equal regexp "")
1022 (setq regexp (car Info-search-history)))
1023 (when regexp
1024 (let ((found ()) current
1025 (onode Info-current-node)
1026 (ofile Info-current-file)
1027 (opoint (point))
1028 (ostart (window-start))
1029 (osubfile Info-current-subfile))
1030 (save-excursion
1031 (save-restriction
1032 (widen)
1033 (if (null Info-current-subfile)
1034 (progn (re-search-forward regexp) (setq found (point)))
1035 (condition-case err
1036 (progn (re-search-forward regexp) (setq found (point)))
1037 (search-failed nil)))))
1038 (if (not found) ;can only happen in subfile case -- else would have erred
1039 (unwind-protect
1040 (let ((list ()))
1041 (save-excursion
1042 (set-buffer (marker-buffer Info-tag-table-marker))
1043 (goto-char (point-min))
1044 (search-forward "\n\^_\nIndirect:")
1045 (save-restriction
1046 (narrow-to-region (point)
1047 (progn (search-forward "\n\^_")
1048 (1- (point))))
1049 (goto-char (point-min))
1050 (search-forward (concat "\n" osubfile ": "))
1051 (beginning-of-line)
1052 (while (not (eobp))
1053 (re-search-forward "\\(^.*\\): [0-9]+$")
1054 (goto-char (+ (match-end 1) 2))
1055 (setq list (cons (cons (read (current-buffer))
1056 (match-string-no-properties 1))
1057 list))
1058 (goto-char (1+ (match-end 0))))
1059 (setq list (nreverse list)
1060 current (car (car list))
1061 list (cdr list))))
1062 (while list
1063 (message "Searching subfile %s..." (cdr (car list)))
1064 (Info-read-subfile (car (car list)))
1065 (setq list (cdr list))
1066 ;;; (goto-char (point-min))
1067 (if (re-search-forward regexp nil t)
1068 (setq found (point) list ())))
1069 (if found
1070 (message "")
1071 (signal 'search-failed (list regexp))))
1072 (if (not found)
1073 (progn (Info-read-subfile osubfile)
1074 (goto-char opoint)
1075 (Info-select-node)
1076 (set-window-start (selected-window) ostart)))))
1077 (widen)
1078 (goto-char found)
1079 (Info-select-node)
1080 ;; Use string-equal, not equal, to ignore text props.
1081 (or (and (string-equal onode Info-current-node)
1082 (equal ofile Info-current-file))
1083 (setq Info-history (cons (list ofile onode opoint)
1084 Info-history))))))
1085 \f
1086 (defun Info-extract-pointer (name &optional errorname)
1087 "Extract the value of the node-pointer named NAME.
1088 If there is none, use ERRORNAME in the error message;
1089 if ERRORNAME is nil, just return nil.
1090 Bind this in case the user sets it to nil."
1091 (let ((case-fold-search t))
1092 (save-excursion
1093 (goto-char (point-min))
1094 (forward-line 1)
1095 (if (re-search-backward (concat name ":") nil t)
1096 (progn
1097 (goto-char (match-end 0))
1098 (Info-following-node-name))
1099 (if (eq errorname t)
1100 nil
1101 (error "Node has no %s" (capitalize (or errorname name))))))))
1102
1103 (defun Info-following-node-name (&optional allowedchars)
1104 "Return the node name in the buffer following point.
1105 ALLOWEDCHARS, if non-nil, goes within [...] to make a regexp
1106 saying which chars may appear in the node name."
1107 (skip-chars-forward " \t")
1108 (buffer-substring-no-properties
1109 (point)
1110 (progn
1111 (while (looking-at (concat "[" (or allowedchars "^,\t\n") "]"))
1112 (skip-chars-forward (concat (or allowedchars "^,\t\n") "("))
1113 (if (looking-at "(")
1114 (skip-chars-forward "^)")))
1115 (skip-chars-backward " ")
1116 (point))))
1117
1118 (defun Info-next ()
1119 "Go to the next node of this node."
1120 (interactive)
1121 (Info-goto-node (Info-extract-pointer "next")))
1122
1123 (defun Info-prev ()
1124 "Go to the previous node of this node."
1125 (interactive)
1126 (Info-goto-node (Info-extract-pointer "prev[ious]*" "previous")))
1127
1128 (defun Info-up (&optional same-file)
1129 "Go to the superior node of this node.
1130 If SAME-FILE is non-nil, do not move to a different Info file."
1131 (interactive)
1132 (let ((node (Info-extract-pointer "up")))
1133 (and (or same-file (not (stringp Info-current-file)))
1134 (string-match "^(" node)
1135 (error "Up node is in another Info file"))
1136 (Info-goto-node node))
1137 (Info-restore-point Info-history))
1138
1139 (defun Info-last ()
1140 "Go back to the last node visited."
1141 (interactive)
1142 (or Info-history
1143 (error "This is the first Info node you looked at"))
1144 (let (filename nodename opoint)
1145 (setq filename (car (car Info-history)))
1146 (setq nodename (car (cdr (car Info-history))))
1147 (setq opoint (car (cdr (cdr (car Info-history)))))
1148 (setq Info-history (cdr Info-history))
1149 (Info-find-node filename nodename)
1150 (setq Info-history (cdr Info-history))
1151 (goto-char opoint)))
1152
1153 ;;;###autoload
1154 (defun Info-directory ()
1155 "Go to the Info directory node."
1156 (interactive)
1157 (Info-find-node "dir" "top"))
1158 \f
1159 (defun Info-follow-reference (footnotename)
1160 "Follow cross reference named FOOTNOTENAME to the node it refers to.
1161 FOOTNOTENAME may be an abbreviation of the reference name."
1162 (interactive
1163 (let ((completion-ignore-case t)
1164 (case-fold-search t)
1165 completions default alt-default (start-point (point)) str i bol eol)
1166 (save-excursion
1167 ;; Store end and beginning of line.
1168 (end-of-line)
1169 (setq eol (point))
1170 (beginning-of-line)
1171 (setq bol (point))
1172
1173 (goto-char (point-min))
1174 (while (re-search-forward "\\*note[ \n\t]*\\([^:]*\\):" nil t)
1175 (setq str (buffer-substring-no-properties
1176 (match-beginning 1)
1177 (1- (point))))
1178 ;; See if this one should be the default.
1179 (and (null default)
1180 (<= (match-beginning 0) start-point)
1181 (<= start-point (point))
1182 (setq default t))
1183 ;; See if this one should be the alternate default.
1184 (and (null alt-default)
1185 (and (<= bol (match-beginning 0))
1186 (<= (point) eol))
1187 (setq alt-default t))
1188 (setq i 0)
1189 (while (setq i (string-match "[ \n\t]+" str i))
1190 (setq str (concat (substring str 0 i) " "
1191 (substring str (match-end 0))))
1192 (setq i (1+ i)))
1193 ;; Record as a completion and perhaps as default.
1194 (if (eq default t) (setq default str))
1195 (if (eq alt-default t) (setq alt-default str))
1196 ;; Don't add this string if it's a duplicate.
1197 ;; We use a loop instead of "(assoc str completions)" because
1198 ;; we want to do a case-insensitive compare.
1199 (let ((tail completions)
1200 (tem (downcase str)))
1201 (while (and tail
1202 (not (string-equal tem (downcase (car (car tail))))))
1203 (setq tail (cdr tail)))
1204 (or tail
1205 (setq completions
1206 (cons (cons str nil)
1207 completions))))))
1208 ;; If no good default was found, try an alternate.
1209 (or default
1210 (setq default alt-default))
1211 ;; If only one cross-reference found, then make it default.
1212 (if (eq (length completions) 1)
1213 (setq default (car (car completions))))
1214 (if completions
1215 (let ((input (completing-read (if default
1216 (concat "Follow reference named: ("
1217 default ") ")
1218 "Follow reference named: ")
1219 completions nil t)))
1220 (list (if (equal input "")
1221 default input)))
1222 (error "No cross-references in this node"))))
1223
1224 (unless footnotename
1225 (error "No reference was specified"))
1226
1227 (let (target beg i (str (concat "\\*note " (regexp-quote footnotename)))
1228 (case-fold-search t))
1229 (while (setq i (string-match " " str i))
1230 (setq str (concat (substring str 0 i) "[ \t\n]+" (substring str (1+ i))))
1231 (setq i (+ i 6)))
1232 (save-excursion
1233 (goto-char (point-min))
1234 (or (re-search-forward str nil t)
1235 (error "No cross-reference named %s" footnotename))
1236 (goto-char (+ (match-beginning 0) 5))
1237 (setq target
1238 (Info-extract-menu-node-name "Bad format cross reference" t)))
1239 (while (setq i (string-match "[ \t\n]+" target i))
1240 (setq target (concat (substring target 0 i) " "
1241 (substring target (match-end 0))))
1242 (setq i (+ i 1)))
1243 (Info-goto-node target)))
1244
1245 (defun Info-extract-menu-node-name (&optional errmessage multi-line)
1246 (skip-chars-forward " \t\n")
1247 (let ((beg (point))
1248 str i)
1249 (skip-chars-forward "^:")
1250 (forward-char 1)
1251 (setq str
1252 (if (looking-at ":")
1253 (buffer-substring-no-properties beg (1- (point)))
1254 (skip-chars-forward " \t\n")
1255 (Info-following-node-name (if multi-line "^.,\t" "^.,\t\n"))))
1256 (while (setq i (string-match "\n" str i))
1257 (aset str i ?\ ))
1258 ;; Collapse multiple spaces.
1259 (while (string-match " +" str)
1260 (setq str (replace-match " " t t str)))
1261 str))
1262
1263 ;; No one calls this.
1264 ;;(defun Info-menu-item-sequence (list)
1265 ;; (while list
1266 ;; (Info-menu (car list))
1267 ;; (setq list (cdr list))))
1268
1269 (defvar Info-complete-menu-buffer)
1270
1271 (defun Info-complete-menu-item (string predicate action)
1272 (let ((completion-ignore-case t)
1273 (case-fold-search t))
1274 (cond ((eq action nil)
1275 (let (completions
1276 (pattern (concat "\n\\* +\\("
1277 (regexp-quote string)
1278 "[^:\t\n]*\\):")))
1279 (save-excursion
1280 (set-buffer Info-complete-menu-buffer)
1281 (goto-char (point-min))
1282 (search-forward "\n* Menu:")
1283 (while (re-search-forward pattern nil t)
1284 (setq completions
1285 (cons (cons (match-string-no-properties 1)
1286 (match-beginning 1))
1287 completions))))
1288 (try-completion string completions predicate)))
1289 ((eq action t)
1290 (let (completions
1291 (pattern (concat "\n\\* +\\("
1292 (regexp-quote string)
1293 "[^:\t\n]*\\):")))
1294 (save-excursion
1295 (set-buffer Info-complete-menu-buffer)
1296 (goto-char (point-min))
1297 (search-forward "\n* Menu:")
1298 (while (re-search-forward pattern nil t)
1299 (setq completions (cons (cons
1300 (match-string-no-properties 1)
1301 (match-beginning 1))
1302 completions))))
1303 (all-completions string completions predicate)))
1304 (t
1305 (save-excursion
1306 (set-buffer Info-complete-menu-buffer)
1307 (goto-char (point-min))
1308 (search-forward "\n* Menu:")
1309 (re-search-forward (concat "\n\\* +"
1310 (regexp-quote string)
1311 ":")
1312 nil t))))))
1313
1314
1315 (defun Info-menu (menu-item &optional fork)
1316 "Go to node for menu item named (or abbreviated) NAME.
1317 Completion is allowed, and the menu item point is on is the default."
1318 (interactive
1319 (let ((completions '())
1320 ;; If point is within a menu item, use that item as the default
1321 (default nil)
1322 (p (point))
1323 beg
1324 (last nil)
1325 (case-fold-search t))
1326 (save-excursion
1327 (goto-char (point-min))
1328 (if (not (search-forward "\n* menu:" nil t))
1329 (error "No menu in this node"))
1330 (setq beg (point))
1331 (and (< (point) p)
1332 (save-excursion
1333 (goto-char p)
1334 (end-of-line)
1335 (if (re-search-backward "\n\\* +\\([^:\t\n]*\\):" beg t)
1336 (setq default (match-string-no-properties 1))))))
1337 (let ((item nil))
1338 (while (null item)
1339 (setq item (let ((completion-ignore-case t)
1340 (Info-complete-menu-buffer (current-buffer)))
1341 (completing-read (if default
1342 (format "Menu item (default %s): "
1343 default)
1344 "Menu item: ")
1345 'Info-complete-menu-item nil t)))
1346 ;; we rely on the fact that completing-read accepts an input
1347 ;; of "" even when the require-match argument is true and ""
1348 ;; is not a valid possibility
1349 (if (string= item "")
1350 (if default
1351 (setq item default)
1352 ;; ask again
1353 (setq item nil))))
1354 (list item current-prefix-arg))))
1355 ;; there is a problem here in that if several menu items have the same
1356 ;; name you can only go to the node of the first with this command.
1357 (Info-goto-node (Info-extract-menu-item menu-item) (if fork menu-item)))
1358
1359 (defun Info-extract-menu-item (menu-item)
1360 (setq menu-item (regexp-quote menu-item))
1361 (let ((case-fold-search t))
1362 (save-excursion
1363 (let ((case-fold-search t))
1364 (goto-char (point-min))
1365 (or (search-forward "\n* menu:" nil t)
1366 (error "No menu in this node"))
1367 (or (re-search-forward (concat "\n\\* +" menu-item ":") nil t)
1368 (re-search-forward (concat "\n\\* +" menu-item) nil t)
1369 (error "No such item in menu"))
1370 (beginning-of-line)
1371 (forward-char 2)
1372 (Info-extract-menu-node-name)))))
1373
1374 ;; If COUNT is nil, use the last item in the menu.
1375 (defun Info-extract-menu-counting (count)
1376 (let ((case-fold-search t))
1377 (save-excursion
1378 (let ((case-fold-search t))
1379 (goto-char (point-min))
1380 (or (search-forward "\n* menu:" nil t)
1381 (error "No menu in this node"))
1382 (if count
1383 (or (search-forward "\n* " nil t count)
1384 (error "Too few items in menu"))
1385 (while (search-forward "\n* " nil t)
1386 nil))
1387 (Info-extract-menu-node-name)))))
1388
1389 (defun Info-nth-menu-item ()
1390 "Go to the node of the Nth menu item.
1391 N is the digit argument used to invoke this command."
1392 (interactive)
1393 (Info-goto-node
1394 (Info-extract-menu-counting
1395 (- (aref (this-command-keys) (1- (length (this-command-keys)))) ?0))))
1396
1397 (defun Info-top-node ()
1398 "Go to the Top node of this file."
1399 (interactive)
1400 (Info-goto-node "Top"))
1401
1402 (defun Info-final-node ()
1403 "Go to the final node in this file."
1404 (interactive)
1405 (Info-goto-node "Top")
1406 (let ((Info-history nil)
1407 (case-fold-search t))
1408 ;; Go to the last node in the menu of Top.
1409 (Info-goto-node (Info-extract-menu-counting nil))
1410 ;; If the last node in the menu is not last in pointer structure,
1411 ;; move forward until we can't go any farther.
1412 (while (Info-forward-node t t) nil)
1413 ;; Then keep moving down to last subnode, unless we reach an index.
1414 (while (and (not (string-match "\\<index\\>" Info-current-node))
1415 (save-excursion (search-forward "\n* Menu:" nil t)))
1416 (Info-goto-node (Info-extract-menu-counting nil)))))
1417
1418 (defun Info-forward-node (&optional not-down no-error)
1419 "Go forward one node, considering all nodes as forming one sequence."
1420 (interactive)
1421 (goto-char (point-min))
1422 (forward-line 1)
1423 (let ((case-fold-search t))
1424 ;; three possibilities, in order of priority:
1425 ;; 1. next node is in a menu in this node (but not in an index)
1426 ;; 2. next node is next at same level
1427 ;; 3. next node is up and next
1428 (cond ((and (not not-down)
1429 (save-excursion (search-forward "\n* menu:" nil t))
1430 (not (string-match "\\<index\\>" Info-current-node)))
1431 (Info-goto-node (Info-extract-menu-counting 1))
1432 t)
1433 ((save-excursion (search-backward "next:" nil t))
1434 (Info-next)
1435 t)
1436 ((and (save-excursion (search-backward "up:" nil t))
1437 ;; Use string-equal, not equal, to ignore text props.
1438 (not (string-equal (downcase (Info-extract-pointer "up"))
1439 "top")))
1440 (let ((old-node Info-current-node))
1441 (Info-up)
1442 (let (Info-history success)
1443 (unwind-protect
1444 (setq success (Info-forward-node t no-error))
1445 (or success (Info-goto-node old-node))))))
1446 (no-error nil)
1447 (t (error "No pointer forward from this node")))))
1448
1449 (defun Info-backward-node ()
1450 "Go backward one node, considering all nodes as forming one sequence."
1451 (interactive)
1452 (let ((prevnode (Info-extract-pointer "prev[ious]*" t))
1453 (upnode (Info-extract-pointer "up" t))
1454 (case-fold-search t))
1455 (cond ((and upnode (string-match "(" upnode))
1456 (error "First node in file"))
1457 ((and upnode (or (null prevnode)
1458 ;; Use string-equal, not equal,
1459 ;; to ignore text properties.
1460 (string-equal (downcase prevnode)
1461 (downcase upnode))))
1462 (Info-up))
1463 (prevnode
1464 ;; If we move back at the same level,
1465 ;; go down to find the last subnode*.
1466 (Info-prev)
1467 (let (Info-history)
1468 (while (and (not (string-match "\\<index\\>" Info-current-node))
1469 (save-excursion (search-forward "\n* Menu:" nil t)))
1470 (Info-goto-node (Info-extract-menu-counting nil)))))
1471 (t
1472 (error "No pointer backward from this node")))))
1473
1474 (defun Info-exit ()
1475 "Exit Info by selecting some other buffer."
1476 (interactive)
1477 (if Info-standalone
1478 (save-buffers-kill-emacs)
1479 (quit-window)))
1480
1481 (defun Info-next-menu-item ()
1482 (interactive)
1483 ;; Bind this in case the user sets it to nil.
1484 (let* ((case-fold-search t)
1485 (node
1486 (save-excursion
1487 (forward-line -1)
1488 (search-forward "\n* menu:" nil t)
1489 (and (search-forward "\n* " nil t)
1490 (Info-extract-menu-node-name)))))
1491 (if node (Info-goto-node node)
1492 (error "No more items in menu"))))
1493
1494 (defun Info-last-menu-item ()
1495 (interactive)
1496 (save-excursion
1497 (forward-line 1)
1498 ;; Bind this in case the user sets it to nil.
1499 (let* ((case-fold-search t)
1500 (beg (save-excursion
1501 (and (search-backward "\n* menu:" nil t)
1502 (point)))))
1503 (or (and beg (search-backward "\n* " beg t))
1504 (error "No previous items in menu")))
1505 (Info-goto-node (save-excursion
1506 (goto-char (match-end 0))
1507 (Info-extract-menu-node-name)))))
1508
1509 (defmacro Info-no-error (&rest body)
1510 (list 'condition-case nil (cons 'progn (append body '(t))) '(error nil)))
1511
1512 (defun Info-next-preorder ()
1513 "Go to the next subnode or the next node, or go up a level."
1514 (interactive)
1515 (cond ((Info-no-error (Info-next-menu-item)))
1516 ((Info-no-error (Info-next)))
1517 ((Info-no-error (Info-up t))
1518 ;; Since we have already gone thru all the items in this menu,
1519 ;; go up to the end of this node.
1520 (goto-char (point-max))
1521 ;; Since logically we are done with the node with that menu,
1522 ;; move on from it.
1523 (Info-next-preorder))
1524 (t
1525 (error "No more nodes"))))
1526
1527 (defun Info-last-preorder ()
1528 "Go to the last node, popping up a level if there is none."
1529 (interactive)
1530 (cond ((Info-no-error
1531 (Info-last-menu-item)
1532 ;; If we go down a menu item, go to the end of the node
1533 ;; so we can scroll back through it.
1534 (goto-char (point-max)))
1535 ;; Keep going down, as long as there are nested menu nodes.
1536 (while (Info-no-error
1537 (Info-last-menu-item)
1538 ;; If we go down a menu item, go to the end of the node
1539 ;; so we can scroll back through it.
1540 (goto-char (point-max))))
1541 (recenter -1))
1542 ((and (not (equal (Info-extract-pointer "up")
1543 (Info-extract-pointer "prev"))))
1544 (Info-no-error (Info-prev))
1545 (goto-char (point-max))
1546 (while (Info-no-error
1547 (Info-last-menu-item)
1548 ;; If we go down a menu item, go to the end of the node
1549 ;; so we can scroll back through it.
1550 (goto-char (point-max))))
1551 (recenter -1))
1552 ((Info-no-error (Info-up t))
1553 (goto-char (point-min))
1554 (let ((case-fold-search t))
1555 (or (search-forward "\n* Menu:" nil t)
1556 (goto-char (point-max)))))
1557 (t (error "No previous nodes"))))
1558
1559 (defun Info-scroll-up ()
1560 "Scroll one screenful forward in Info, considering all nodes as one sequence.
1561 Once you scroll far enough in a node that its menu appears on the screen
1562 but after point, the next scroll moves into its first subnode.
1563
1564 When you scroll past the end of a node, that goes to the next node; if
1565 this node has no successor, it moves to the parent node's successor,
1566 and so on. If point is inside the menu of a node, it moves to
1567 subnode indicated by the following menu item. (That case won't
1568 normally result from this command, but can happen in other ways.)"
1569
1570 (interactive)
1571 (if (or (< (window-start) (point-min))
1572 (> (window-start) (point-max)))
1573 (set-window-start (selected-window) (point)))
1574 (let* ((case-fold-search t)
1575 (virtual-end (save-excursion
1576 (goto-char (point-min))
1577 (if (search-forward "\n* Menu:" nil t)
1578 (point)
1579 (point-max)))))
1580 (if (or (< virtual-end (window-start))
1581 (pos-visible-in-window-p virtual-end))
1582 (Info-next-preorder)
1583 (scroll-up))))
1584
1585 (defun Info-scroll-down ()
1586 "Scroll one screenful back in Info, considering all nodes as one sequence.
1587 Within the menu of a node, this goes to its last subnode.
1588 When you scroll past the beginning of a node, that goes to the
1589 previous node or back up to the parent node."
1590 (interactive)
1591 (if (or (< (window-start) (point-min))
1592 (> (window-start) (point-max)))
1593 (set-window-start (selected-window) (point)))
1594 (let* ((case-fold-search t)
1595 (current-point (point))
1596 (virtual-end (save-excursion
1597 (beginning-of-line)
1598 (setq current-point (point))
1599 (goto-char (point-min))
1600 (search-forward "\n* Menu:"
1601 current-point
1602 t))))
1603 (if (or virtual-end (pos-visible-in-window-p (point-min)))
1604 (Info-last-preorder)
1605 (scroll-down))))
1606
1607 (defun Info-next-reference (&optional recur)
1608 "Move cursor to the next cross-reference or menu item in the node."
1609 (interactive)
1610 (let ((pat "\\*note[ \n\t]*\\([^:]*\\):\\|^\\* .*:")
1611 (old-pt (point))
1612 (case-fold-search t))
1613 (or (eobp) (forward-char 1))
1614 (or (re-search-forward pat nil t)
1615 (progn
1616 (goto-char (point-min))
1617 (or (re-search-forward pat nil t)
1618 (progn
1619 (goto-char old-pt)
1620 (error "No cross references in this node")))))
1621 (goto-char (match-beginning 0))
1622 (if (looking-at "\\* Menu:")
1623 (if recur
1624 (error "No cross references in this node")
1625 (Info-next-reference t)))))
1626
1627 (defun Info-prev-reference (&optional recur)
1628 "Move cursor to the previous cross-reference or menu item in the node."
1629 (interactive)
1630 (let ((pat "\\*note[ \n\t]*\\([^:]*\\):\\|^\\* .*:")
1631 (old-pt (point))
1632 (case-fold-search t))
1633 (or (re-search-backward pat nil t)
1634 (progn
1635 (goto-char (point-max))
1636 (or (re-search-backward pat nil t)
1637 (progn
1638 (goto-char old-pt)
1639 (error "No cross references in this node")))))
1640 (goto-char (match-beginning 0))
1641 (if (looking-at "\\* Menu:")
1642 (if recur
1643 (error "No cross references in this node")
1644 (Info-prev-reference t)))))
1645
1646 (defun Info-index (topic)
1647 "Look up a string TOPIC in the index for this file.
1648 The index is defined as the first node in the top-level menu whose
1649 name contains the word \"Index\", plus any immediately following
1650 nodes whose names also contain the word \"Index\".
1651 If there are no exact matches to the specified topic, this chooses
1652 the first match which is a case-insensitive substring of a topic.
1653 Use the `,' command to see the other matches.
1654 Give a blank topic name to go to the Index node itself."
1655 (interactive "sIndex topic: ")
1656 (let ((orignode Info-current-node)
1657 (rnode nil)
1658 (pattern (format "\n\\* +\\([^\n:]*%s[^\n:]*\\):[ \t]*\\([^.\n]*\\)\\.[ \t]*\\([0-9]*\\)"
1659 (regexp-quote topic)))
1660 node
1661 (case-fold-search t))
1662 (Info-goto-node "Top")
1663 (or (search-forward "\n* menu:" nil t)
1664 (error "No index"))
1665 (or (re-search-forward "\n\\* \\(.*\\<Index\\>\\)" nil t)
1666 (error "No index"))
1667 (goto-char (match-beginning 1))
1668 ;; Here, and subsequently in this function,
1669 ;; we bind Info-history to nil for internal node-switches
1670 ;; so that we don't put junk in the history.
1671 ;; In the first Info-goto-node call, above, we do update the history
1672 ;; because that is what the user's previous node choice into it.
1673 (let ((Info-history nil))
1674 (Info-goto-node (Info-extract-menu-node-name)))
1675 (or (equal topic "")
1676 (let ((matches nil)
1677 (exact nil)
1678 (Info-history nil)
1679 found)
1680 (while
1681 (progn
1682 (goto-char (point-min))
1683 (while (re-search-forward pattern nil t)
1684 (setq matches
1685 (cons (list (match-string-no-properties 1)
1686 (match-string-no-properties 2)
1687 Info-current-node
1688 (string-to-int (concat "0"
1689 (match-string 3))))
1690 matches)))
1691 (and (setq node (Info-extract-pointer "next" t))
1692 (string-match "\\<Index\\>" node)))
1693 (Info-goto-node node))
1694 (or matches
1695 (progn
1696 (Info-goto-node orignode)
1697 (error "No `%s' in index" topic)))
1698 ;; Here it is a feature that assoc is case-sensitive.
1699 (while (setq found (assoc topic matches))
1700 (setq exact (cons found exact)
1701 matches (delq found matches)))
1702 (setq Info-index-alternatives (nconc exact (nreverse matches)))
1703 (Info-index-next 0)))))
1704
1705 (defun Info-index-next (num)
1706 "Go to the next matching index item from the last `i' command."
1707 (interactive "p")
1708 (or Info-index-alternatives
1709 (error "No previous `i' command"))
1710 (while (< num 0)
1711 (setq num (+ num (length Info-index-alternatives))))
1712 (while (> num 0)
1713 (setq Info-index-alternatives
1714 (nconc (cdr Info-index-alternatives)
1715 (list (car Info-index-alternatives)))
1716 num (1- num)))
1717 (Info-goto-node (nth 1 (car Info-index-alternatives)))
1718 (if (> (nth 3 (car Info-index-alternatives)) 0)
1719 (forward-line (nth 3 (car Info-index-alternatives)))
1720 (forward-line 3) ; don't search in headers
1721 (let ((name (car (car Info-index-alternatives))))
1722 (Info-find-index-name name)))
1723 (message "Found `%s' in %s. %s"
1724 (car (car Info-index-alternatives))
1725 (nth 2 (car Info-index-alternatives))
1726 (if (cdr Info-index-alternatives)
1727 "(Press `,' for more)"
1728 "(Only match)")))
1729
1730 (defun Info-find-index-name (name)
1731 "Move point to the place within the current node where NAME is defined."
1732 (let ((case-fold-search t))
1733 (if (or (re-search-forward (format
1734 "[a-zA-Z]+: %s\\( \\|$\\)"
1735 (regexp-quote name)) nil t)
1736 (search-forward (format "`%s'" name) nil t)
1737 (and (string-match "\\`.*\\( (.*)\\)\\'" name)
1738 (search-forward
1739 (format "`%s'" (substring name 0 (match-beginning 1)))
1740 nil t))
1741 (search-forward name nil t))
1742 (beginning-of-line)
1743 (goto-char (point-min)))))
1744
1745 (defun Info-undefined ()
1746 "Make command be undefined in Info."
1747 (interactive)
1748 (ding))
1749
1750 (defun Info-help ()
1751 "Enter the Info tutorial."
1752 (interactive)
1753 (delete-other-windows)
1754 (Info-find-node "info"
1755 (if (< (window-height) 23)
1756 "Help-Small-Screen"
1757 "Help")))
1758
1759 (defun Info-summary ()
1760 "Display a brief summary of all Info commands."
1761 (interactive)
1762 (save-window-excursion
1763 (switch-to-buffer "*Help*")
1764 (setq buffer-read-only nil)
1765 (erase-buffer)
1766 (insert (documentation 'Info-mode))
1767 (help-mode)
1768 (goto-char (point-min))
1769 (let (ch flag)
1770 (while (progn (setq flag (not (pos-visible-in-window-p (point-max))))
1771 (message (if flag "Type Space to see more"
1772 "Type Space to return to Info"))
1773 (if (not (eq ?\ (setq ch (read-event))))
1774 (progn (setq unread-command-events (list ch)) nil)
1775 flag))
1776 (scroll-up)))
1777 (bury-buffer "*Help*")))
1778 \f
1779 (defun Info-get-token (pos start all &optional errorstring)
1780 "Return the token around POS.
1781 POS must be somewhere inside the token
1782 START is a regular expression which will match the
1783 beginning of the tokens delimited string
1784 ALL is a regular expression with a single
1785 parenthesized subpattern which is the token to be
1786 returned. E.g. '{\(.*\)}' would return any string
1787 enclosed in braces around POS.
1788 ERRORSTRING optional fourth argument, controls action on no match
1789 nil: return nil
1790 t: beep
1791 a string: signal an error, using that string."
1792 (let ((case-fold-search t))
1793 (save-excursion
1794 (goto-char pos)
1795 ;; First look for a match for START that goes across POS.
1796 (while (and (not (bobp)) (> (point) (- pos (length start)))
1797 (not (looking-at start)))
1798 (forward-char -1))
1799 ;; If we did not find one, search back for START
1800 ;; (this finds only matches that end at or before POS).
1801 (or (looking-at start)
1802 (progn
1803 (goto-char pos)
1804 (re-search-backward start (max (point-min) (- pos 200)) 'yes)))
1805 (let (found)
1806 (while (and (re-search-forward all (min (point-max) (+ pos 200)) 'yes)
1807 (not (setq found (and (<= (match-beginning 0) pos)
1808 (> (match-end 0) pos))))))
1809 (if (and found (<= (match-beginning 0) pos)
1810 (> (match-end 0) pos))
1811 (match-string-no-properties 1)
1812 (cond ((null errorstring)
1813 nil)
1814 ((eq errorstring t)
1815 (beep)
1816 nil)
1817 (t
1818 (error "No %s around position %d" errorstring pos))))))))
1819
1820 (defun Info-mouse-follow-nearest-node (click)
1821 "\\<Info-mode-map>Follow a node reference near point.
1822 Like \\[Info-menu], \\[Info-follow-reference], \\[Info-next], \\[Info-prev] or \\[Info-up] command, depending on where you click.
1823 At end of the node's text, moves to the next node, or up if none."
1824 (interactive "e")
1825 (let* ((start (event-start click))
1826 (window (car start))
1827 (pos (car (cdr start))))
1828 (select-window window)
1829 (goto-char pos))
1830 (and (not (Info-try-follow-nearest-node))
1831 (save-excursion (forward-line 1) (eobp))
1832 (Info-next-preorder)))
1833
1834 (defun Info-follow-nearest-node ()
1835 "\\<Info-mode-map>Follow a node reference near point.
1836 Like \\[Info-menu], \\[Info-follow-reference], \\[Info-next], \\[Info-prev] or \\[Info-up] command, depending on where point is.
1837 If no reference to follow, moves to the next node, or up if none."
1838 (interactive)
1839 (or (Info-try-follow-nearest-node)
1840 (Info-next-preorder)))
1841
1842 ;; Common subroutine.
1843 (defun Info-try-follow-nearest-node ()
1844 "Follow a node reference near point. Return non-nil if successful."
1845 (let (node)
1846 (cond
1847 ((setq node (Info-get-token (point) "\\*note[ \n]"
1848 "\\*note[ \n]\\([^:]*\\):"))
1849 (Info-follow-reference node))
1850 ((setq node (Info-get-token (point) "\\* +" "\\* +\\([^:]*\\)::"))
1851 (Info-goto-node node))
1852 ((Info-get-token (point) "\\* +" "\\* +\\([^:]*\\):")
1853 (beginning-of-line)
1854 (forward-char 2)
1855 (setq node (Info-extract-menu-node-name))
1856 (Info-goto-node node))
1857 ((setq node (Info-get-token (point) "Up: " "Up: \\([^,\n\t]*\\)"))
1858 (Info-goto-node node))
1859 ((setq node (Info-get-token (point) "Next: " "Next: \\([^,\n\t]*\\)"))
1860 (Info-goto-node node))
1861 ((setq node (Info-get-token (point) "File: " "File: \\([^,\n\t]*\\)"))
1862 (Info-goto-node "Top"))
1863 ((setq node (Info-get-token (point) "Prev: " "Prev: \\([^,\n\t]*\\)"))
1864 (Info-goto-node node)))
1865 node))
1866 \f
1867 (defvar Info-mode-map nil
1868 "Keymap containing Info commands.")
1869 (if Info-mode-map
1870 nil
1871 (setq Info-mode-map (make-keymap))
1872 (suppress-keymap Info-mode-map)
1873 (define-key Info-mode-map "." 'beginning-of-buffer)
1874 (define-key Info-mode-map " " 'Info-scroll-up)
1875 (define-key Info-mode-map "\C-m" 'Info-follow-nearest-node)
1876 (define-key Info-mode-map "\t" 'Info-next-reference)
1877 (define-key Info-mode-map "\e\t" 'Info-prev-reference)
1878 (define-key Info-mode-map "1" 'Info-nth-menu-item)
1879 (define-key Info-mode-map "2" 'Info-nth-menu-item)
1880 (define-key Info-mode-map "3" 'Info-nth-menu-item)
1881 (define-key Info-mode-map "4" 'Info-nth-menu-item)
1882 (define-key Info-mode-map "5" 'Info-nth-menu-item)
1883 (define-key Info-mode-map "6" 'Info-nth-menu-item)
1884 (define-key Info-mode-map "7" 'Info-nth-menu-item)
1885 (define-key Info-mode-map "8" 'Info-nth-menu-item)
1886 (define-key Info-mode-map "9" 'Info-nth-menu-item)
1887 (define-key Info-mode-map "0" 'undefined)
1888 (define-key Info-mode-map "?" 'Info-summary)
1889 (define-key Info-mode-map "]" 'Info-forward-node)
1890 (define-key Info-mode-map "[" 'Info-backward-node)
1891 (define-key Info-mode-map "<" 'Info-top-node)
1892 (define-key Info-mode-map ">" 'Info-final-node)
1893 (define-key Info-mode-map "b" 'beginning-of-buffer)
1894 (define-key Info-mode-map "d" 'Info-directory)
1895 (define-key Info-mode-map "e" 'Info-edit)
1896 (define-key Info-mode-map "f" 'Info-follow-reference)
1897 (define-key Info-mode-map "g" 'Info-goto-node)
1898 (define-key Info-mode-map "h" 'Info-help)
1899 (define-key Info-mode-map "i" 'Info-index)
1900 (define-key Info-mode-map "l" 'Info-last)
1901 (define-key Info-mode-map "m" 'Info-menu)
1902 (define-key Info-mode-map "n" 'Info-next)
1903 (define-key Info-mode-map "p" 'Info-prev)
1904 (define-key Info-mode-map "q" 'Info-exit)
1905 (define-key Info-mode-map "s" 'Info-search)
1906 ;; For consistency with Rmail.
1907 (define-key Info-mode-map "\M-s" 'Info-search)
1908 (define-key Info-mode-map "\M-n" 'clone-buffer)
1909 (define-key Info-mode-map "t" 'Info-top-node)
1910 (define-key Info-mode-map "u" 'Info-up)
1911 (define-key Info-mode-map "," 'Info-index-next)
1912 (define-key Info-mode-map "\177" 'Info-scroll-down)
1913 (define-key Info-mode-map [mouse-2] 'Info-mouse-follow-nearest-node)
1914 )
1915
1916 (defun Info-check-pointer (item)
1917 "Non-nil if ITEM is present in this node."
1918 (condition-case nil
1919 (Info-extract-pointer item)
1920 (error nil)))
1921
1922 (easy-menu-define
1923 Info-mode-menu Info-mode-map
1924 "Menu for info files."
1925 '("Info"
1926 ["Up" Info-up :active (Info-check-pointer "up")
1927 :help "Go up in the Info tree"]
1928 ["Next" Info-next :active (Info-check-pointer "next")
1929 :help "Go to the next node"]
1930 ["Previous" Info-prev :active (Info-check-pointer "prev[ious]*")
1931 :help "Go to the previous node"]
1932 ["Backward" Info-backward-node
1933 :help "Go backward one node, considering all as a sequence"]
1934 ["Forward" Info-forward-node
1935 :help "Go forward one node, considering all as a sequence"]
1936 ["Top" Info-top-node
1937 :help "Go to top node of file"]
1938 ["Final Node" Info-final-node
1939 :help "Go to final node in this file"]
1940 ("Menu Item" ["You should never see this" report-emacs-bug t])
1941 ("Reference" ["You should never see this" report-emacs-bug t])
1942 ["Search..." Info-search
1943 :help "Search for regular expression in this Info file"]
1944 ["Goto Node..." Info-goto-node
1945 :help "Go to a named node"]
1946 ["Last" Info-last Info-history
1947 :help "Go to the last node you were at"]
1948 ("Index..."
1949 ["Lookup a String" Info-index
1950 :help "Look for a string in the index items"]
1951 ["Next Matching Item" Info-index-next
1952 :help "Look for another occurrence of previous item"])
1953 ["Exit" Info-exit t]))
1954
1955 (defvar Info-menu-last-node nil)
1956 ;; Last node the menu was created for.
1957 ;; Value is a list, (FILE-NAME NODE-NAME).
1958
1959 (defun Info-menu-update ()
1960 "Update the Info menu for the current node."
1961 (condition-case nil
1962 (if (or (not (eq major-mode 'Info-mode))
1963 (equal (list Info-current-file Info-current-node)
1964 Info-menu-last-node))
1965 ()
1966 ;; Update menu menu.
1967 (let* ((Info-complete-menu-buffer (current-buffer))
1968 (items (nreverse (condition-case nil
1969 (Info-complete-menu-item
1970 "" (lambda (e) t) t)
1971 (error nil))))
1972 entries current
1973 (number 0))
1974 (while (and items (< number 9))
1975 (setq current (car items)
1976 items (cdr items)
1977 number (1+ number))
1978 (setq entries (cons `[,current
1979 (Info-menu ,current)
1980 :keys ,(format "%d" number)]
1981 entries)))
1982 (if items
1983 (setq entries (cons ["Other..." Info-menu t] entries)))
1984 (or entries
1985 (setq entries (list ["No menu" nil nil])))
1986 (easy-menu-change '("Info") "Menu Item" (nreverse entries)))
1987 ;; Update reference menu. Code stolen from `Info-follow-reference'.
1988 (let ((items nil)
1989 str i entries current
1990 (number 0)
1991 (case-fold-search t))
1992 (save-excursion
1993 (goto-char (point-min))
1994 (while (re-search-forward "\\*note[ \n\t]*\\([^:]*\\):" nil t)
1995 (setq str (buffer-substring
1996 (match-beginning 1)
1997 (1- (point))))
1998 (setq i 0)
1999 (while (setq i (string-match "[ \n\t]+" str i))
2000 (setq str (concat (substring str 0 i) " "
2001 (substring str (match-end 0))))
2002 (setq i (1+ i)))
2003 (setq items
2004 (cons str items))))
2005 (while (and items (< number 9))
2006 (setq current (car items)
2007 items (cdr items)
2008 number (1+ number))
2009 (setq entries (cons `[,current
2010 (Info-follow-reference ,current)
2011 t]
2012 entries)))
2013 (if items
2014 (setq entries (cons ["Other..." Info-follow-reference t]
2015 entries)))
2016 (or entries
2017 (setq entries (list ["No references" nil nil])))
2018 (easy-menu-change '("Info") "Reference" (nreverse entries)))
2019 ;; Update last seen node.
2020 (setq Info-menu-last-node (list Info-current-file Info-current-node)))
2021 ;; Try to avoid entering infinite beep mode in case of errors.
2022 (error (ding))))
2023
2024 \f
2025 ;; Info mode is suitable only for specially formatted data.
2026 (put 'info-mode 'mode-class 'special)
2027
2028 (defun Info-mode ()
2029 "Info mode provides commands for browsing through the Info documentation tree.
2030 Documentation in Info is divided into \"nodes\", each of which discusses
2031 one topic and contains references to other nodes which discuss related
2032 topics. Info has commands to follow the references and show you other nodes.
2033
2034 \\<Info-mode-map>\
2035 \\[Info-help] Invoke the Info tutorial.
2036 \\[Info-exit] Quit Info: reselect previously selected buffer.
2037
2038 Selecting other nodes:
2039 \\[Info-mouse-follow-nearest-node]
2040 Follow a node reference you click on.
2041 This works with menu items, cross references, and
2042 the \"next\", \"previous\" and \"up\", depending on where you click.
2043 \\[Info-follow-nearest-node] Follow a node reference near point, like \\[Info-mouse-follow-nearest-node].
2044 \\[Info-next] Move to the \"next\" node of this node.
2045 \\[Info-prev] Move to the \"previous\" node of this node.
2046 \\[Info-up] Move \"up\" from this node.
2047 \\[Info-menu] Pick menu item specified by name (or abbreviation).
2048 Picking a menu item causes another node to be selected.
2049 \\[Info-directory] Go to the Info directory node.
2050 \\[Info-follow-reference] Follow a cross reference. Reads name of reference.
2051 \\[Info-last] Move to the last node you were at.
2052 \\[Info-index] Look up a topic in this file's Index and move to that node.
2053 \\[Info-index-next] (comma) Move to the next match from a previous `i' command.
2054 \\[Info-top-node] Go to the Top node of this file.
2055 \\[Info-final-node] Go to the final node in this file.
2056 \\[Info-backward-node] Go backward one node, considering all nodes as forming one sequence.
2057 \\[Info-forward-node] Go forward one node, considering all nodes as forming one sequence.
2058
2059 Moving within a node:
2060 \\[Info-scroll-up] Normally, scroll forward a full screen.
2061 Once you scroll far enough in a node that its menu appears on the screen
2062 but after point, the next scroll moves into its first subnode.
2063 When after all menu items (or if their is no menu), move up to
2064 the parent node.
2065 \\[Info-scroll-down] Normally, scroll backward. If the beginning of the buffer is
2066 already visible, try to go to the previous menu entry, or up if there is none.
2067 \\[beginning-of-buffer] Go to beginning of node.
2068
2069 Advanced commands:
2070 \\[Info-exit] Quit Info: reselect previously selected buffer.
2071 \\[Info-edit] Edit contents of selected node.
2072 1 Pick first item in node's menu.
2073 2, 3, 4, 5 Pick second ... fifth item in node's menu.
2074 \\[Info-goto-node] Move to node specified by name.
2075 You may include a filename as well, as (FILENAME)NODENAME.
2076 \\[universal-argument] \\[info] Move to new Info file with completion.
2077 \\[Info-search] Search through this Info file for specified regexp,
2078 and select the node in which the next occurrence is found.
2079 \\[Info-next-reference] Move cursor to next cross-reference or menu item.
2080 \\[Info-prev-reference] Move cursor to previous cross-reference or menu item."
2081 (kill-all-local-variables)
2082 (setq major-mode 'Info-mode)
2083 (setq mode-name "Info")
2084 (setq tab-width 8)
2085 (use-local-map Info-mode-map)
2086 (make-local-hook 'activate-menubar-hook)
2087 (add-hook 'activate-menubar-hook 'Info-menu-update nil t)
2088 (set-syntax-table text-mode-syntax-table)
2089 (setq local-abbrev-table text-mode-abbrev-table)
2090 (setq case-fold-search t)
2091 (setq buffer-read-only t)
2092 (make-local-variable 'Info-current-file)
2093 (make-local-variable 'Info-current-subfile)
2094 (make-local-variable 'Info-current-node)
2095 (make-local-variable 'Info-tag-table-marker)
2096 (setq Info-tag-table-marker (make-marker))
2097 (make-local-variable 'Info-tag-table-buffer)
2098 (setq Info-tag-table-buffer nil)
2099 (make-local-variable 'Info-history)
2100 (make-local-variable 'Info-index-alternatives)
2101 ;; This is for the sake of the invisible text we use handling titles.
2102 (make-local-variable 'line-move-ignore-invisible)
2103 (setq line-move-ignore-invisible t)
2104 (add-hook (make-local-hook 'clone-buffer-hook) 'Info-clone-buffer-hook nil t)
2105 (Info-set-mode-line)
2106 (run-hooks 'Info-mode-hook))
2107
2108 (defun Info-clone-buffer-hook ()
2109 (when (bufferp Info-tag-table-buffer)
2110 (setq Info-tag-table-buffer
2111 (with-current-buffer Info-tag-table-buffer (clone-buffer)))
2112 (let ((m Info-tag-table-marker))
2113 (when (and (markerp m) (marker-position m))
2114 (setq Info-tag-table-marker
2115 (with-current-buffer Info-tag-table-buffer
2116 (copy-marker (marker-position m))))))))
2117
2118 (defvar Info-edit-map nil
2119 "Local keymap used within `e' command of Info.")
2120 (if Info-edit-map
2121 nil
2122 (setq Info-edit-map (nconc (make-sparse-keymap) text-mode-map))
2123 (define-key Info-edit-map "\C-c\C-c" 'Info-cease-edit))
2124
2125 ;; Info-edit mode is suitable only for specially formatted data.
2126 (put 'info-edit-mode 'mode-class 'special)
2127
2128 (defun Info-edit-mode ()
2129 "Major mode for editing the contents of an Info node.
2130 Like text mode with the addition of `Info-cease-edit'
2131 which returns to Info mode for browsing.
2132 \\{Info-edit-map}"
2133 (use-local-map Info-edit-map)
2134 (setq major-mode 'Info-edit-mode)
2135 (setq mode-name "Info Edit")
2136 (kill-local-variable 'mode-line-buffer-identification)
2137 (setq buffer-read-only nil)
2138 (force-mode-line-update)
2139 (buffer-enable-undo (current-buffer))
2140 (run-hooks 'Info-edit-mode-hook))
2141
2142 (defun Info-edit ()
2143 "Edit the contents of this Info node.
2144 Allowed only if variable `Info-enable-edit' is non-nil."
2145 (interactive)
2146 (or Info-enable-edit
2147 (error "Editing info nodes is not enabled"))
2148 (Info-edit-mode)
2149 (message "%s" (substitute-command-keys
2150 "Editing: Type \\<Info-edit-map>\\[Info-cease-edit] to return to info")))
2151
2152 (defun Info-cease-edit ()
2153 "Finish editing Info node; switch back to Info proper."
2154 (interactive)
2155 ;; Do this first, so nothing has changed if user C-g's at query.
2156 (and (buffer-modified-p)
2157 (y-or-n-p "Save the file? ")
2158 (save-buffer))
2159 (use-local-map Info-mode-map)
2160 (setq major-mode 'Info-mode)
2161 (setq mode-name "Info")
2162 (Info-set-mode-line)
2163 (setq buffer-read-only t)
2164 (force-mode-line-update)
2165 (and (marker-position Info-tag-table-marker)
2166 (buffer-modified-p)
2167 (message "Tags may have changed. Use Info-tagify if necessary")))
2168 \f
2169 (defvar Info-file-list-for-emacs
2170 '("ediff" "forms" "gnus" "info" ("mh" . "mh-e") "sc" "message"
2171 ("dired" . "dired-x") ("c" . "ccmode") "viper")
2172 "List of Info files that describe Emacs commands.
2173 An element can be a file name, or a list of the form (PREFIX . FILE)
2174 where PREFIX is a name prefix and FILE is the file to look in.
2175 If the element is just a file name, the file name also serves as the prefix.")
2176
2177 (defun Info-find-emacs-command-nodes (command)
2178 "Return a list of locations documenting COMMAND.
2179 The `info-file' property of COMMAND says which Info manual to search.
2180 If COMMAND has no property, the variable `Info-file-list-for-emacs'
2181 defines heuristics for which Info manual to try.
2182 The locations are of the format used in `Info-history', i.e.
2183 \(FILENAME NODENAME BUFFERPOS\)."
2184 (let ((where '())
2185 (cmd-desc (concat "^\\* +" (regexp-quote (symbol-name command))
2186 ":\\s *\\(.*\\)\\.$"))
2187 (info-file "emacs")) ;default
2188 ;; Determine which info file this command is documented in.
2189 (if (get command 'info-file)
2190 (setq info-file (get command 'info-file))
2191 ;; If it doesn't say explicitly, test its name against
2192 ;; various prefixes that we know.
2193 (let ((file-list Info-file-list-for-emacs))
2194 (while file-list
2195 (let* ((elt (car file-list))
2196 (name (if (consp elt)
2197 (car elt)
2198 elt))
2199 (file (if (consp elt) (cdr elt) elt))
2200 (regexp (concat "\\`" (regexp-quote name)
2201 "\\(\\'\\|-\\)")))
2202 (if (string-match regexp (symbol-name command))
2203 (setq info-file file file-list nil))
2204 (setq file-list (cdr file-list))))))
2205 (save-excursion
2206 (condition-case nil
2207 (Info-find-node info-file "Command Index")
2208 ;; Some manuals may not have a separate Command Index node,
2209 ;; so try just Index instead.
2210 (error
2211 (Info-find-node info-file "Index")))
2212 ;; Take the index node off the Info history.
2213 (setq Info-history (cdr Info-history))
2214 (goto-char (point-max))
2215 (while (re-search-backward cmd-desc nil t)
2216 (setq where (cons (list Info-current-file
2217 (match-string-no-properties 1)
2218 0)
2219 where)))
2220 where)))
2221
2222 ;;;###autoload
2223 (defun Info-goto-emacs-command-node (command)
2224 "Go to the Info node in the Emacs manual for command COMMAND.
2225 The command is found by looking up in Emacs manual's Command Index
2226 or in another manual found via COMMAND's `info-file' property or
2227 the variable `Info-file-list-for-emacs'."
2228 (interactive "CFind documentation for command: ")
2229 (or (commandp command)
2230 (signal 'wrong-type-argument (list 'commandp command)))
2231 (let ((where (Info-find-emacs-command-nodes command)))
2232 (if where
2233 (let ((num-matches (length where)))
2234 ;; Get Info running, and pop to it in another window.
2235 (save-window-excursion
2236 (info))
2237 ;; FIXME It would be cool if this could use a buffer other
2238 ;; than *info*.
2239 (pop-to-buffer "*info*")
2240 (Info-find-node (car (car where))
2241 (car (cdr (car where))))
2242 (if (> num-matches 1)
2243 (progn
2244 ;; Info-find-node already pushed (car where) onto
2245 ;; Info-history. Put the other nodes that were found on
2246 ;; the history.
2247 (setq Info-history (nconc (cdr where) Info-history))
2248 (message "Found %d other entr%s. Use %s to see %s."
2249 (1- num-matches)
2250 (if (> num-matches 2) "ies" "y")
2251 (substitute-command-keys "\\[Info-last]")
2252 (if (> num-matches 2) "them" "it")))))
2253 (error "Couldn't find documentation for %s" command))))
2254
2255 ;;;###autoload
2256 (defun Info-goto-emacs-key-command-node (key)
2257 "Go to the Info node in the Emacs manual the command bound to KEY, a string.
2258 Interactively, if the binding is `execute-extended-command', a command is read.
2259 The command is found by looking up in Emacs manual's Command Index
2260 or in another manual found via COMMAND's `info-file' property or
2261 the variable `Info-file-list-for-emacs'."
2262 (interactive "kFind documentation for key: ")
2263 (let ((command (key-binding key)))
2264 (cond ((null command)
2265 (message "%s is undefined" (key-description key)))
2266 ((and (interactive-p)
2267 (eq command 'execute-extended-command))
2268 (Info-goto-emacs-command-node
2269 (read-command "Find documentation for command: ")))
2270 (t
2271 (Info-goto-emacs-command-node command)))))
2272 \f
2273 (defface Info-title-1-face
2274 '((t (:family "helv" :height 240 :weight bold)))
2275 "Face for Info titles at level 1."
2276 :group 'info)
2277
2278 (defface Info-title-2-face
2279 '((t (:family "helv" :height 180 :weight bold)))
2280 "Face for Info titles at level 2."
2281 :group 'info)
2282
2283 (defface Info-title-3-face
2284 '((t (:family "helv" :height 160 :weight bold)))
2285 "Face for Info titles at level 3."
2286 :group 'info)
2287
2288 (defun Info-fontify-node ()
2289 (save-excursion
2290 (let ((buffer-read-only nil)
2291 (case-fold-search t))
2292 (goto-char (point-min))
2293 (when (looking-at "^File: [^,: \t]+,?[ \t]+")
2294 (goto-char (match-end 0))
2295 (while
2296 (looking-at "[ \t]*\\([^:, \t\n]+\\):[ \t]+\\([^:,\t\n]+\\),?")
2297 (goto-char (match-end 0))
2298 (if (save-excursion
2299 (goto-char (match-beginning 1))
2300 (save-match-data (looking-at "Node:")))
2301 (put-text-property (match-beginning 2) (match-end 2)
2302 'face 'info-node)
2303 (put-text-property (match-beginning 2) (match-end 2)
2304 'face 'info-xref)
2305 (put-text-property (match-beginning 2) (match-end 2)
2306 'mouse-face 'highlight))))
2307 (goto-char (point-min))
2308 (while (re-search-forward "\n\\([^ \t\n].+\\)\n\\(\\*+\\|=+\\|-+\\)$"
2309 nil t)
2310 (let ((c (preceding-char))
2311 face)
2312 (cond ((= c ?*) (setq face 'Info-title-1-face))
2313 ((= c ?=) (setq face 'Info-title-2-face))
2314 (t (setq face 'Info-title-3-face)))
2315 (put-text-property (match-beginning 1) (match-end 1)
2316 'face face))
2317 ;; This is a serious problem for trying to handle multiple
2318 ;; frame types at once. We want this text to be invisible
2319 ;; on frames that can display the font above.
2320 (if (memq (framep (selected-frame)) '(x pc w32))
2321 (add-text-properties (match-end 1) (match-end 2)
2322 '(invisible t intangible t))))
2323 (goto-char (point-min))
2324 (while (re-search-forward "\\*Note[ \n\t]+\\([^:]*\\):" nil t)
2325 (if (= (char-after (1- (match-beginning 0))) ?\") ; hack
2326 nil
2327 (put-text-property (match-beginning 1) (match-end 1)
2328 'face 'info-xref)
2329 (put-text-property (match-beginning 1) (match-end 1)
2330 'mouse-face 'highlight)))
2331 (goto-char (point-min))
2332 (if (and (search-forward "\n* Menu:" nil t)
2333 (not (string-match "\\<Index\\>" Info-current-node))
2334 ;; Don't take time to annotate huge menus
2335 (< (- (point-max) (point)) Info-fontify-maximum-menu-size))
2336 (let ((n 0))
2337 (while (re-search-forward "^\\* +\\([^:\t\n]*\\):" nil t)
2338 (setq n (1+ n))
2339 (if (memq n '(5 9)) ; visual aids to help with 1-9 keys
2340 (put-text-property (match-beginning 0)
2341 (1+ (match-beginning 0))
2342 'face 'info-menu-5))
2343 (put-text-property (match-beginning 1) (match-end 1)
2344 'face 'info-xref)
2345 (put-text-property (match-beginning 1) (match-end 1)
2346 'mouse-face 'highlight))))
2347 (set-buffer-modified-p nil))))
2348 \f
2349
2350 ;; When an Info buffer is killed, make sure the associated tags buffer
2351 ;; is killed too.
2352 (defun Info-kill-buffer ()
2353 (and (eq major-mode 'Info-mode)
2354 Info-tag-table-buffer
2355 (kill-buffer Info-tag-table-buffer)))
2356
2357 (add-hook 'kill-buffer-hook 'Info-kill-buffer)
2358
2359 ;;; Speedbar support:
2360 ;; These functions permit speedbar to display the "tags" in the
2361 ;; current info node.
2362 (eval-when-compile (require 'speedbar))
2363
2364 (defvar Info-speedbar-key-map nil
2365 "Keymap used when in the info display mode.")
2366
2367 (defun Info-install-speedbar-variables ()
2368 "Install those variables used by speedbar to enhance Info."
2369 (if Info-speedbar-key-map
2370 nil
2371 (setq Info-speedbar-key-map (speedbar-make-specialized-keymap))
2372
2373 ;; Basic tree features
2374 (define-key Info-speedbar-key-map "e" 'speedbar-edit-line)
2375 (define-key Info-speedbar-key-map "\C-m" 'speedbar-edit-line)
2376 (define-key Info-speedbar-key-map "+" 'speedbar-expand-line)
2377 (define-key Info-speedbar-key-map "-" 'speedbar-contract-line)
2378 )
2379
2380 (speedbar-add-expansion-list '("Info" Info-speedbar-menu-items
2381 Info-speedbar-key-map
2382 Info-speedbar-hierarchy-buttons)))
2383
2384 (defvar Info-speedbar-menu-items
2385 '(["Browse Node" speedbar-edit-line t]
2386 ["Expand Node" speedbar-expand-line
2387 (save-excursion (beginning-of-line)
2388 (looking-at "[0-9]+: *.\\+. "))]
2389 ["Contract Node" speedbar-contract-line
2390 (save-excursion (beginning-of-line)
2391 (looking-at "[0-9]+: *.-. "))]
2392 )
2393 "Additional menu-items to add to speedbar frame.")
2394
2395 ;; Make sure our special speedbar major mode is loaded
2396 (if (featurep 'speedbar)
2397 (Info-install-speedbar-variables)
2398 (add-hook 'speedbar-load-hook 'Info-install-speedbar-variables))
2399
2400 ;;; Info hierarchy display method
2401 ;;;###autoload
2402 (defun Info-speedbar-browser ()
2403 "Initialize speedbar to display an info node browser.
2404 This will add a speedbar major display mode."
2405 (interactive)
2406 (require 'speedbar)
2407 ;; Make sure that speedbar is active
2408 (speedbar-frame-mode 1)
2409 ;; Now, throw us into Info mode on speedbar.
2410 (speedbar-change-initial-expansion-list "Info")
2411 )
2412
2413 (defun Info-speedbar-hierarchy-buttons (directory depth &optional node)
2414 "Display an Info directory hierarchy in speedbar.
2415 DIRECTORY is the current directory in the attached frame.
2416 DEPTH is the current indentation depth.
2417 NODE is an optional argument that is used to represent the
2418 specific node to expand."
2419 (if (and (not node)
2420 (save-excursion (goto-char (point-min))
2421 (let ((case-fold-search t))
2422 (looking-at "Info Nodes:"))))
2423 ;; Update our "current node" maybe?
2424 nil
2425 ;; We cannot use the generic list code, that depends on all leaves
2426 ;; being known at creation time.
2427 (if (not node)
2428 (speedbar-with-writable (insert "Info Nodes:\n")))
2429 (let ((completions nil)
2430 (cf (selected-frame)))
2431 (select-frame speedbar-attached-frame)
2432 (save-window-excursion
2433 (setq completions
2434 (Info-speedbar-fetch-file-nodes (or node '"(dir)top"))))
2435 (select-frame cf)
2436 (if completions
2437 (speedbar-with-writable
2438 (while completions
2439 (speedbar-make-tag-line 'bracket ?+ 'Info-speedbar-expand-node
2440 (cdr (car completions))
2441 (car (car completions))
2442 'Info-speedbar-goto-node
2443 (cdr (car completions))
2444 'info-xref depth)
2445 (setq completions (cdr completions)))
2446 t)
2447 nil))))
2448
2449 (defun Info-speedbar-goto-node (text node indent)
2450 "When user clicks on TEXT, goto an info NODE.
2451 The INDENT level is ignored."
2452 (select-frame speedbar-attached-frame)
2453 (let* ((buff (or (get-buffer "*info*")
2454 (progn (info) (get-buffer "*info*"))))
2455 (bwin (get-buffer-window buff 0)))
2456 (if bwin
2457 (progn
2458 (select-window bwin)
2459 (raise-frame (window-frame bwin)))
2460 (if speedbar-power-click
2461 (let ((pop-up-frames t)) (select-window (display-buffer buff)))
2462 (select-frame speedbar-attached-frame)
2463 (switch-to-buffer buff)))
2464 (let ((junk (string-match "^(\\([^)]+\\))\\([^.]+\\)$" node))
2465 (file (match-string 1 node))
2466 (node (match-string 2 node)))
2467 (Info-find-node file node)
2468 ;; If we do a find-node, and we were in info mode, restore
2469 ;; the old default method. Once we are in info mode, it makes
2470 ;; sense to return to whatever method the user was using before.
2471 (if (string= speedbar-initial-expansion-list-name "Info")
2472 (speedbar-change-initial-expansion-list
2473 speedbar-previously-used-expansion-list-name)))))
2474
2475 (defun Info-speedbar-expand-node (text token indent)
2476 "Expand the node the user clicked on.
2477 TEXT is the text of the button we clicked on, a + or - item.
2478 TOKEN is data related to this node (NAME . FILE).
2479 INDENT is the current indentation depth."
2480 (cond ((string-match "+" text) ;we have to expand this file
2481 (speedbar-change-expand-button-char ?-)
2482 (if (speedbar-with-writable
2483 (save-excursion
2484 (end-of-line) (forward-char 1)
2485 (Info-speedbar-hierarchy-buttons nil (1+ indent) token)))
2486 (speedbar-change-expand-button-char ?-)
2487 (speedbar-change-expand-button-char ??)))
2488 ((string-match "-" text) ;we have to contract this node
2489 (speedbar-change-expand-button-char ?+)
2490 (speedbar-delete-subblock indent))
2491 (t (error "Ooops... not sure what to do")))
2492 (speedbar-center-buffer-smartly))
2493
2494 (defun Info-speedbar-fetch-file-nodes (nodespec)
2495 "Fetch the subnodes from the info NODESPEC.
2496 NODESPEC is a string of the form: (file)node.
2497 Optional THISFILE represends the filename of"
2498 (save-excursion
2499 ;; Set up a buffer we can use to fake-out Info.
2500 (set-buffer (get-buffer-create "*info-browse-tmp*"))
2501 (if (not (equal major-mode 'Info-mode))
2502 (Info-mode))
2503 ;; Get the node into this buffer
2504 (let ((junk (string-match "^(\\([^)]+\\))\\([^.]+\\)$" nodespec))
2505 (file (match-string 1 nodespec))
2506 (node (match-string 2 nodespec)))
2507 (Info-find-node file node))
2508 ;; Scan the created buffer
2509 (goto-char (point-min))
2510 (let ((completions nil)
2511 (case-fold-search t)
2512 (thisfile (progn (string-match "^(\\([^)]+\\))" nodespec)
2513 (match-string 1 nodespec))))
2514 ;; Always skip the first one...
2515 (re-search-forward "\n\\* \\([^:\t\n]*\\):" nil t)
2516 (while (re-search-forward "\n\\* \\([^:\t\n]*\\):" nil t)
2517 (let ((name (match-string 1)))
2518 (if (looking-at " *\\(([^)]+)[^.\n]+\\)\\.")
2519 (setq name (cons name (match-string 1)))
2520 (if (looking-at " *\\(([^)]+)\\)\\.")
2521 (setq name (cons name (concat (match-string 1) "Top")))
2522 (if (looking-at " \\([^.]+\\).")
2523 (setq name
2524 (cons name (concat "(" thisfile ")" (match-string 1))))
2525 (setq name (cons name (concat "(" thisfile ")" name))))))
2526 (setq completions (cons name completions))))
2527 (nreverse completions))))
2528
2529 ;;; Info mode node listing
2530 (defun Info-speedbar-buttons (buffer)
2531 "Create a speedbar display to help navigation in an Info file.
2532 BUFFER is the buffer speedbar is requesting buttons for."
2533 (if (save-excursion (goto-char (point-min))
2534 (let ((case-fold-search t))
2535 (not (looking-at "Info Nodes:"))))
2536 (erase-buffer))
2537 (Info-speedbar-hierarchy-buttons nil 0)
2538 )
2539
2540 (dolist (mess '("^Node has no Previous$"
2541 "^No menu in this node$"
2542 "^Node has no Next$"
2543 "^No cross-references in this node^"
2544 search-failed
2545 "^No \".*\" in index$"))
2546 (add-to-list 'debug-ignored-errors mess))
2547
2548 (provide 'info)
2549
2550 ;;; info.el ends here