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