*** empty log message ***
[emacs.git] / lisp / info.el
blob4711346e83604c49d888b6e3f05569714e9012e3
1 ;;; info.el --- info package for Emacs
3 ;; Copyright (C) 1985, 86, 92, 93, 94, 95, 96, 97, 98, 99, 2000, 2001
4 ;; Free Software Foundation, Inc.
6 ;; Maintainer: FSF
7 ;; Keywords: help
9 ;; This file is part of GNU Emacs.
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.
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.
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.
26 ;;; Commentary:
28 ;; Note that nowadays we expect info files to be made using makeinfo.
30 ;;; Code:
32 (eval-when-compile (require 'jka-compr))
34 (defgroup info nil
35 "Info subsystem"
36 :group 'help
37 :group 'docs)
40 (defvar Info-history nil
41 "List of info nodes user has visited.
42 Each element of list is a list (FILENAME NODENAME BUFFERPOS).")
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)
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)
58 (defface info-node
59 '((((class color) (background light)) (:foreground "brown" :weight bold :slant italic))
60 (((class color) (background dark)) (:foreground "white" :weight bold :slant italic))
61 (t (:weight bold :slant italic)))
62 "Face for Info node names."
63 :group 'info)
65 (defface info-menu-5
66 '((((class color)) (:foreground "red1"))
67 (t (:underline t)))
68 "Face for the fifth and nineth `*' in an Info menu."
69 :group 'info)
71 (defface info-xref
72 '((((class color) (background light)) (:foreground "magenta4" :weight bold))
73 (((class color) (background dark)) (:foreground "cyan" :weight bold))
74 (t (:weight bold)))
75 "Face for Info cross-references."
76 :group 'info)
78 (defcustom Info-fontify-maximum-menu-size 100000
79 "*Maximum size of menu to fontify if `Info-fontify' is non-nil."
80 :type 'integer
81 :group 'info)
83 (defcustom Info-use-header-line t
84 "*Non-nil means to put the beginning-of-node links in an emacs header-line.
85 A header-line does not scroll with the rest of the buffer."
86 :type 'boolean
87 :group 'info)
89 (defface info-header-xref
90 '((t (:inherit info-xref)))
91 "Face for Info cross-references in a node header."
92 :group 'info)
94 (defface info-header-node
95 '((t (:inherit info-node)))
96 "Face for Info nodes in a node header."
97 :group 'info)
99 (defvar Info-directory-list nil
100 "List of directories to search for Info documentation files.
101 nil means not yet initialized. In this case, Info uses the environment
102 variable INFOPATH to initialize it, or `Info-default-directory-list'
103 if there is no INFOPATH variable in the environment.
105 When `Info-directory-list' is initialized from the value of
106 `Info-default-directory-list', and Emacs is installed in one of the
107 standard directories, the directory of Info files that come with Emacs
108 is put last (so that local Info files override standard ones).
110 When `Info-directory-list' is initialized from the value of
111 `Info-default-directory-list', and Emacs is not installed in one
112 of the standard directories, the first element of the resulting
113 list is the directory where Emacs installs the Info files that
114 come with it. This is so that Emacs's own manual, which suits the
115 version of Emacs you are using, will always be found first. This
116 is useful when you install an experimental version of Emacs without
117 removing the standard installation.
119 If you want to override the order of directories in
120 `Info-default-directory-list', set INFOPATH in the environment.
122 If you run the Emacs executable from the `src' directory in the Emacs
123 source tree, and INFOPATH is not defined, the `info' directory in the
124 source tree is used as the first element of `Info-directory-list', in
125 place of the installation Info directory. This is useful when you run
126 a version of Emacs without installing it.")
128 (defcustom Info-additional-directory-list nil
129 "List of additional directories to search for Info documentation files.
130 These directories are searched after those in `Info-directory-list', and
131 they are not searched for merging the `dir' file."
132 :type '(repeat directory)
133 :group 'info)
135 (defcustom Info-scroll-prefer-subnodes t
136 "*If non-nil, \\<Info-mode-map>\\[Info-scroll-up] in a menu visits subnodes.
137 If this is non-nil, and you scroll far enough in a node that its menu
138 appears on the screen, the next \\<Info-mode-map>\\[Info-scroll-up]
139 moves to a subnode indicated by the following menu item. This means
140 that you visit a subnode before getting to the end of the menu.
142 Setting this option to nil results in behavior similar to the stand-alone
143 Info reader program, which visits the first subnode from the menu only
144 when you hit the end of the current node."
145 :type 'boolean
146 :group 'info)
148 (defcustom Info-mode-hook '(turn-on-font-lock)
149 "Hooks run when `info-mode' is called."
150 :type 'hook
151 :group 'info)
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'.")
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.")
163 (defvar Info-current-node nil
164 "Name of node that Info is now looking at, or nil.")
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.")
170 (defvar Info-tag-table-buffer nil
171 "Buffer used for indirect tag tables.")
173 (defvar Info-current-file-completions nil
174 "Cached completion list for current Info file.")
176 (defvar Info-index-alternatives nil
177 "List of possible matches for last `Info-index' command.")
179 (defvar Info-standalone nil
180 "Non-nil if Emacs was started solely as an Info browser.")
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.
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.
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.")
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))))
260 (defun info-file-exists-p (filename)
261 (and (file-exists-p filename)
262 (not (file-directory-p filename))))
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))))
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))
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)))))))))))
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)))
376 ;;;###autoload (add-hook 'same-window-buffer-names "*info*")
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'.
386 In interactive use, a prefix argument directs this command
387 to read a file name from the minibuffer.
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))))
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)))
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.
432 ;; This function changes match-data, but supposedly the caller might
433 ;; want to use the results of re-search-backward.
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))))
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)
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))
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))
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)
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 (+ (point-min) (read (current-buffer)))
543 major-mode)))))
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))
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)))
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)))
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 nil)
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:
655 ;; 1. Anchor found in tag table
656 ;; 2. Anchor *not* in tag table
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
662 ;; *Or* the same, but in an indirect subfile.
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)
670 "\\) *[,\t\n\177]"))
671 (nodepos nil))
673 (catch 'foo
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)))
680 (when found
681 ;; FOUND is (ANCHOR POS MODE).
682 (setq guesspos (nth 1 found))
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)))
692 ;; Handle anchor
693 (when (nth 0 found)
694 (goto-char (setq anchorpos guesspos))
695 (throw 'foo t)))))
697 ;; Else we may have a node, which we search for:
698 (goto-char (max (point-min)
699 (- (byte-to-position guesspos) 1000)))
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)))
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))))))
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)
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)
730 ;; Record the file attributes of all the files from which we
731 ;; constructed Info-dir-contents.
732 (defvar Info-dir-file-attributes nil)
734 (defvar Info-dir-file-name nil)
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)))))
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)
768 (setq Info-dir-file-attributes nil)
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
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))))
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))
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)
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))
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 (+ (point-min) (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)))))
962 (defvar Info-header-line nil
963 "If the info node header is hidden, the text of the header.")
964 (put 'Info-header-line 'risky-local-variable t)
966 (defun Info-select-node ()
967 "Select the info node that point is in.
968 Bind this in case the user sets it to nil."
969 (let ((case-fold-search t))
970 (save-excursion
971 ;; Find beginning of node.
972 (if (search-backward "\n\^_" nil 'move)
973 (forward-line 2)
974 (if (looking-at "\^_")
975 (forward-line 1)
976 (signal 'search-failed (list "\n\^_"))))
977 ;; Get nodename spelled as it is in the node.
978 (re-search-forward "Node:[ \t]*")
979 (setq Info-current-node
980 (buffer-substring-no-properties (point)
981 (progn
982 (skip-chars-forward "^,\t\n")
983 (point))))
984 (Info-set-mode-line)
985 ;; Find the end of it, and narrow.
986 (beginning-of-line)
987 (let (active-expression)
988 ;; Narrow to the node contents
989 (narrow-to-region (point)
990 (if (re-search-forward "\n[\^_\f]" nil t)
991 (prog1
992 (1- (point))
993 (if (looking-at "[\n\^_\f]*execute: ")
994 (progn
995 (goto-char (match-end 0))
996 (setq active-expression
997 (read (current-buffer))))))
998 (point-max)))
999 (if Info-enable-active-nodes (eval active-expression))
1000 (Info-fontify-node)
1001 (if Info-use-header-line
1002 (Info-setup-header-line)
1003 (setq Info-header-line nil)
1004 (setq header-line-format nil)) ; so the header line isn't displayed
1005 (run-hooks 'Info-selection-hook)))))
1007 (defun Info-set-mode-line ()
1008 (setq mode-line-buffer-identification
1009 (nconc (propertized-buffer-identification "%b")
1010 (list
1011 (concat " ("
1012 (file-name-nondirectory
1013 (if (stringp Info-current-file)
1014 Info-current-file
1015 (or buffer-file-name "")))
1016 ") "
1017 (or Info-current-node ""))))))
1019 ;; Skip the node header and make it into a header-line. This function
1020 ;; should be called when the node is already narrowed.
1021 (defun Info-setup-header-line ()
1022 (goto-char (point-min))
1023 (let* ((case-fold-search t)
1024 (header-end (save-excursion (forward-line 1) (1- (point))))
1025 ;; If we find neither Next: nor Prev: link, show the entire
1026 ;; node header. Otherwise, don't show the File: and Node:
1027 ;; parts, to avoid wasting precious space on information that
1028 ;; is available in the mode line.
1029 (header-beg (if (re-search-forward
1030 "\\(next\\|prev[ious]*\\): "
1031 header-end t)
1032 (match-beginning 1)
1033 (point))))
1034 (set (make-local-variable 'Info-header-line)
1035 (buffer-substring header-beg header-end))
1036 (setq header-line-format 'Info-header-line)
1037 (narrow-to-region (1+ header-end) (point-max))))
1039 ;; Go to an info node specified with a filename-and-nodename string
1040 ;; of the sort that is found in pointers in nodes.
1042 (defun Info-goto-node (nodename &optional fork)
1043 "Go to info node named NODENAME. Give just NODENAME or (FILENAME)NODENAME.
1044 If NODENAME is of the form (FILENAME)NODENAME, the node is in the Info file
1045 FILENAME; otherwise, NODENAME should be in the current Info file (or one of
1046 its sub-files).
1047 Completion is available, but only for node names in the current Info file.
1048 If FORK is non-nil (interactively with a prefix arg), show the node in
1049 a new info buffer.
1050 If FORK is a string, it is the name to use for the new buffer."
1051 (interactive (list (Info-read-node-name "Go to node: ") current-prefix-arg))
1052 (info-initialize)
1053 (if fork
1054 (set-buffer
1055 (clone-buffer (concat "*info-" (if (stringp fork) fork nodename) "*") t)))
1056 (let (filename)
1057 (string-match "\\s *\\((\\s *\\([^\t)]*\\)\\s *)\\s *\\|\\)\\(.*\\)"
1058 nodename)
1059 (setq filename (if (= (match-beginning 1) (match-end 1))
1061 (substring nodename (match-beginning 2) (match-end 2)))
1062 nodename (substring nodename (match-beginning 3) (match-end 3)))
1063 (let ((trim (string-match "\\s *\\'" filename)))
1064 (if trim (setq filename (substring filename 0 trim))))
1065 (let ((trim (string-match "\\s *\\'" nodename)))
1066 (if trim (setq nodename (substring nodename 0 trim))))
1067 (if transient-mark-mode (deactivate-mark))
1068 (Info-find-node (if (equal filename "") nil filename)
1069 (if (equal nodename "") "Top" nodename))))
1071 (defvar Info-read-node-completion-table)
1073 ;; This function is used as the "completion table" while reading a node name.
1074 ;; It does completion using the alist in Info-read-node-completion-table
1075 ;; unless STRING starts with an open-paren.
1076 (defun Info-read-node-name-1 (string predicate code)
1077 (cond
1078 ;; First complete embedded file names.
1079 ((string-match "\\`([^)]*\\'" string)
1080 (let ((file (substring string 1)))
1081 (cond
1082 ((eq code nil)
1083 (let ((comp (try-completion file 'locate-file-completion
1084 (cons Info-directory-list
1085 (mapcar 'car Info-suffix-list)))))
1086 (cond
1087 ((eq comp t) (concat string ")"))
1088 (comp (concat "(" comp)))))
1089 ((eq code t) (all-completions file 'locate-file-completion
1090 (cons Info-directory-list
1091 (mapcar 'car Info-suffix-list))))
1092 (t nil))))
1093 ;; If a file name was given, then any node is fair game.
1094 ((string-match "\\`(" string)
1095 (cond
1096 ((eq code nil) string)
1097 ((eq code t) nil)
1098 (t t)))
1099 ;; Otherwise use Info-read-node-completion-table.
1100 ((eq code nil)
1101 (try-completion string Info-read-node-completion-table predicate))
1102 ((eq code t)
1103 (all-completions string Info-read-node-completion-table predicate))
1105 (test-completion string Info-read-node-completion-table predicate))))
1107 (defun Info-read-node-name (prompt &optional default)
1108 (let* ((completion-ignore-case t)
1109 (Info-read-node-completion-table (Info-build-node-completions))
1110 (nodename (completing-read prompt 'Info-read-node-name-1 nil t)))
1111 (if (equal nodename "")
1112 (or default
1113 (Info-read-node-name prompt))
1114 nodename)))
1116 (defun Info-build-node-completions ()
1117 (or Info-current-file-completions
1118 (let ((compl nil)
1119 ;; Bind this in case the user sets it to nil.
1120 (case-fold-search t)
1121 (node-regexp "Node: *\\([^,\n]*\\) *[,\n\t]"))
1122 (save-excursion
1123 (save-restriction
1124 (if (marker-buffer Info-tag-table-marker)
1125 (let ((marker Info-tag-table-marker))
1126 (set-buffer (marker-buffer marker))
1127 (widen)
1128 (goto-char marker)
1129 (while (re-search-forward "\n\\(Node\\|Ref\\): \\(.*\\)\177" nil t)
1130 (setq compl
1131 (cons (list (match-string-no-properties 2))
1132 compl))))
1133 (widen)
1134 (goto-char (point-min))
1135 ;; If the buffer begins with a node header, process that first.
1136 (if (Info-node-at-bob-matching node-regexp)
1137 (setq compl (list (match-string-no-properties 1))))
1138 ;; Now for the rest of the nodes.
1139 (while (search-forward "\n\^_" nil t)
1140 (forward-line 1)
1141 (let ((beg (point)))
1142 (forward-line 1)
1143 (if (re-search-backward node-regexp beg t)
1144 (setq compl
1145 (cons (list (match-string-no-properties 1))
1146 compl))))))))
1147 (setq compl (cons '("*") compl))
1148 (set (make-local-variable 'Info-current-file-completions) compl))))
1150 (defun Info-restore-point (hl)
1151 "If this node has been visited, restore the point value when we left."
1152 (while hl
1153 (if (and (equal (nth 0 (car hl)) Info-current-file)
1154 ;; Use string-equal, not equal, to ignore text props.
1155 (string-equal (nth 1 (car hl)) Info-current-node))
1156 (progn
1157 (goto-char (nth 2 (car hl)))
1158 (setq hl nil)) ;terminate the while at next iter
1159 (setq hl (cdr hl)))))
1161 (defvar Info-search-history nil
1162 "The history list for `Info-search'.")
1164 (defun Info-search (regexp)
1165 "Search for REGEXP, starting from point, and select node it's found in."
1166 (interactive (list (read-string
1167 (if Info-search-history
1168 (format "Regexp search (default `%s'): "
1169 (car Info-search-history))
1170 "Regexp search: ")
1171 nil 'Info-search-history)))
1172 (when transient-mark-mode
1173 (deactivate-mark))
1174 (when (equal regexp "")
1175 (setq regexp (car Info-search-history)))
1176 (when regexp
1177 (let ((found ()) current
1178 (onode Info-current-node)
1179 (ofile Info-current-file)
1180 (opoint (point))
1181 (ostart (window-start))
1182 (osubfile Info-current-subfile))
1183 (save-excursion
1184 (save-restriction
1185 (widen)
1186 (if (null Info-current-subfile)
1187 (progn (re-search-forward regexp) (setq found (point)))
1188 (condition-case err
1189 (progn (re-search-forward regexp) (setq found (point)))
1190 (search-failed nil)))))
1191 (if (not found) ;can only happen in subfile case -- else would have erred
1192 (unwind-protect
1193 (let ((list ()))
1194 (save-excursion
1195 (set-buffer (marker-buffer Info-tag-table-marker))
1196 (goto-char (point-min))
1197 (search-forward "\n\^_\nIndirect:")
1198 (save-restriction
1199 (narrow-to-region (point)
1200 (progn (search-forward "\n\^_")
1201 (1- (point))))
1202 (goto-char (point-min))
1203 (search-forward (concat "\n" osubfile ": "))
1204 (beginning-of-line)
1205 (while (not (eobp))
1206 (re-search-forward "\\(^.*\\): [0-9]+$")
1207 (goto-char (+ (match-end 1) 2))
1208 (setq list (cons (cons (read (current-buffer))
1209 (match-string-no-properties 1))
1210 list))
1211 (goto-char (1+ (match-end 0))))
1212 (setq list (nreverse list)
1213 current (car (car list))
1214 list (cdr list))))
1215 (while list
1216 (message "Searching subfile %s..." (cdr (car list)))
1217 (Info-read-subfile (car (car list)))
1218 (setq list (cdr list))
1219 (if (re-search-forward regexp nil t)
1220 (setq found (point) list ())))
1221 (if found
1222 (message "")
1223 (signal 'search-failed (list regexp))))
1224 (if (not found)
1225 (progn (Info-read-subfile osubfile)
1226 (goto-char opoint)
1227 (Info-select-node)
1228 (set-window-start (selected-window) ostart)))))
1229 (widen)
1230 (goto-char found)
1231 (Info-select-node)
1232 ;; Use string-equal, not equal, to ignore text props.
1233 (or (and (string-equal onode Info-current-node)
1234 (equal ofile Info-current-file))
1235 (setq Info-history (cons (list ofile onode opoint)
1236 Info-history))))))
1238 (defun Info-extract-pointer (name &optional errorname)
1239 "Extract the value of the node-pointer named NAME.
1240 If there is none, use ERRORNAME in the error message;
1241 if ERRORNAME is nil, just return nil.
1242 Bind this in case the user sets it to nil."
1243 (let ((case-fold-search t))
1244 (save-excursion
1245 (save-restriction
1246 (goto-char (point-min))
1247 (when Info-header-line
1248 ;; expose the header line in the buffer
1249 (widen)
1250 (forward-line -1))
1251 (let ((bound (point)))
1252 (forward-line 1)
1253 (cond ((re-search-backward (concat name ":") bound t)
1254 (goto-char (match-end 0))
1255 (Info-following-node-name))
1256 ((not (eq errorname t))
1257 (error "Node has no %s"
1258 (capitalize (or errorname name))))))))))
1260 (defun Info-following-node-name (&optional allowedchars)
1261 "Return the node name in the buffer following point.
1262 ALLOWEDCHARS, if non-nil, goes within [...] to make a regexp
1263 saying which chars may appear in the node name."
1264 (skip-chars-forward " \t")
1265 (buffer-substring-no-properties
1266 (point)
1267 (progn
1268 (while (looking-at (concat "[" (or allowedchars "^,\t\n") "]"))
1269 (skip-chars-forward (concat (or allowedchars "^,\t\n") "("))
1270 (if (looking-at "(")
1271 (skip-chars-forward "^)")))
1272 (skip-chars-backward " ")
1273 (point))))
1275 (defun Info-next ()
1276 "Go to the next node of this node."
1277 (interactive)
1278 (Info-goto-node (Info-extract-pointer "next")))
1280 (defun Info-prev ()
1281 "Go to the previous node of this node."
1282 (interactive)
1283 (Info-goto-node (Info-extract-pointer "prev[ious]*" "previous")))
1285 (defun Info-up (&optional same-file)
1286 "Go to the superior node of this node.
1287 If SAME-FILE is non-nil, do not move to a different Info file."
1288 (interactive)
1289 (let ((node (Info-extract-pointer "up")))
1290 (and (or same-file (not (stringp Info-current-file)))
1291 (string-match "^(" node)
1292 (error "Up node is in another Info file"))
1293 (Info-goto-node node))
1294 (Info-restore-point Info-history))
1296 (defun Info-last ()
1297 "Go back to the last node visited."
1298 (interactive)
1299 (or Info-history
1300 (error "This is the first Info node you looked at"))
1301 (let (filename nodename opoint)
1302 (setq filename (car (car Info-history)))
1303 (setq nodename (car (cdr (car Info-history))))
1304 (setq opoint (car (cdr (cdr (car Info-history)))))
1305 (setq Info-history (cdr Info-history))
1306 (Info-find-node filename nodename)
1307 (setq Info-history (cdr Info-history))
1308 (goto-char opoint)))
1310 ;;;###autoload
1311 (defun Info-directory ()
1312 "Go to the Info directory node."
1313 (interactive)
1314 (Info-find-node "dir" "top"))
1316 (defun Info-follow-reference (footnotename)
1317 "Follow cross reference named FOOTNOTENAME to the node it refers to.
1318 FOOTNOTENAME may be an abbreviation of the reference name."
1319 (interactive
1320 (let ((completion-ignore-case t)
1321 (case-fold-search t)
1322 completions default alt-default (start-point (point)) str i bol eol)
1323 (save-excursion
1324 ;; Store end and beginning of line.
1325 (end-of-line)
1326 (setq eol (point))
1327 (beginning-of-line)
1328 (setq bol (point))
1330 (goto-char (point-min))
1331 (while (re-search-forward "\\*note[ \n\t]*\\([^:]*\\):" nil t)
1332 (setq str (buffer-substring-no-properties
1333 (match-beginning 1)
1334 (1- (point))))
1335 ;; See if this one should be the default.
1336 (and (null default)
1337 (<= (match-beginning 0) start-point)
1338 (<= start-point (point))
1339 (setq default t))
1340 ;; See if this one should be the alternate default.
1341 (and (null alt-default)
1342 (and (<= bol (match-beginning 0))
1343 (<= (point) eol))
1344 (setq alt-default t))
1345 (setq i 0)
1346 (while (setq i (string-match "[ \n\t]+" str i))
1347 (setq str (concat (substring str 0 i) " "
1348 (substring str (match-end 0))))
1349 (setq i (1+ i)))
1350 ;; Record as a completion and perhaps as default.
1351 (if (eq default t) (setq default str))
1352 (if (eq alt-default t) (setq alt-default str))
1353 ;; Don't add this string if it's a duplicate.
1354 ;; We use a loop instead of "(assoc str completions)" because
1355 ;; we want to do a case-insensitive compare.
1356 (let ((tail completions)
1357 (tem (downcase str)))
1358 (while (and tail
1359 (not (string-equal tem (downcase (car (car tail))))))
1360 (setq tail (cdr tail)))
1361 (or tail
1362 (setq completions
1363 (cons (cons str nil)
1364 completions))))))
1365 ;; If no good default was found, try an alternate.
1366 (or default
1367 (setq default alt-default))
1368 ;; If only one cross-reference found, then make it default.
1369 (if (eq (length completions) 1)
1370 (setq default (car (car completions))))
1371 (if completions
1372 (let ((input (completing-read (if default
1373 (concat
1374 "Follow reference named: (default "
1375 default ") ")
1376 "Follow reference named: ")
1377 completions nil t)))
1378 (list (if (equal input "")
1379 default input)))
1380 (error "No cross-references in this node"))))
1382 (unless footnotename
1383 (error "No reference was specified"))
1385 (let (target beg i (str (concat "\\*note " (regexp-quote footnotename)))
1386 (case-fold-search t))
1387 (while (setq i (string-match " " str i))
1388 (setq str (concat (substring str 0 i) "[ \t\n]+" (substring str (1+ i))))
1389 (setq i (+ i 6)))
1390 (save-excursion
1391 (goto-char (point-min))
1392 (or (re-search-forward str nil t)
1393 (error "No cross-reference named %s" footnotename))
1394 (goto-char (+ (match-beginning 0) 5))
1395 (setq target
1396 (Info-extract-menu-node-name "Bad format cross reference" t)))
1397 (while (setq i (string-match "[ \t\n]+" target i))
1398 (setq target (concat (substring target 0 i) " "
1399 (substring target (match-end 0))))
1400 (setq i (+ i 1)))
1401 (Info-goto-node target)))
1403 (defun Info-extract-menu-node-name (&optional errmessage multi-line)
1404 (skip-chars-forward " \t\n")
1405 (let ((beg (point))
1406 str i)
1407 (skip-chars-forward "^:")
1408 (forward-char 1)
1409 (setq str
1410 (if (looking-at ":")
1411 (buffer-substring-no-properties beg (1- (point)))
1412 (skip-chars-forward " \t\n")
1413 (Info-following-node-name (if multi-line "^.,\t" "^.,\t\n"))))
1414 (replace-regexp-in-string "[ \n]+" " " str)))
1416 ;; No one calls this.
1417 ;;(defun Info-menu-item-sequence (list)
1418 ;; (while list
1419 ;; (Info-menu (car list))
1420 ;; (setq list (cdr list))))
1422 (defvar Info-complete-menu-buffer)
1423 (defvar Info-complete-next-re nil)
1424 (defvar Info-complete-cache nil)
1426 (defun Info-complete-menu-item (string predicate action)
1427 ;; This uses two dynamically bound variables:
1428 ;; - `Info-complete-menu-buffer' which contains the buffer in which
1429 ;; is the menu of items we're trying to complete.
1430 ;; - `Info-complete-next-re' which, if non-nil, indicates that we should
1431 ;; also look for menu items in subsequent nodes as long as those
1432 ;; nodes' names match `Info-complete-next-re'. This feature is currently
1433 ;; only used for completion in Info-index.
1434 (save-excursion
1435 (set-buffer Info-complete-menu-buffer)
1436 (let ((completion-ignore-case t)
1437 (case-fold-search t)
1438 (orignode Info-current-node)
1439 nextnode)
1440 (goto-char (point-min))
1441 (search-forward "\n* Menu:")
1442 (if (not (memq action '(nil t)))
1443 (re-search-forward
1444 (concat "\n\\* +" (regexp-quote string) ":") nil t)
1445 (let ((pattern (concat "\n\\* +\\("
1446 (regexp-quote string)
1447 "[^:\t\n]*\\):"))
1448 completions)
1449 ;; Check the cache.
1450 (if (and (equal (nth 0 Info-complete-cache) Info-current-file)
1451 (equal (nth 1 Info-complete-cache) Info-current-node)
1452 (equal (nth 2 Info-complete-cache) Info-complete-next-re)
1453 (let ((prev (nth 3 Info-complete-cache)))
1454 (eq t (compare-strings string 0 (length prev)
1455 prev 0 nil t))))
1456 ;; We can reuse the previous list.
1457 (setq completions (nth 4 Info-complete-cache))
1458 ;; The cache can't be used.
1459 (while
1460 (progn
1461 (while (re-search-forward pattern nil t)
1462 (push (match-string-no-properties 1)
1463 completions))
1464 ;; Check subsequent nodes if applicable.
1465 (and Info-complete-next-re
1466 (setq nextnode (Info-extract-pointer "next" t))
1467 (string-match Info-complete-next-re nextnode)))
1468 (Info-goto-node nextnode))
1469 ;; Go back to the start node (for the next completion).
1470 (unless (equal Info-current-node orignode)
1471 (Info-goto-node orignode))
1472 ;; Update the cache.
1473 (setq Info-complete-cache
1474 (list Info-current-file Info-current-node
1475 Info-complete-next-re string completions)))
1476 (if action
1477 (all-completions string completions predicate)
1478 (try-completion string completions predicate)))))))
1481 (defun Info-menu (menu-item &optional fork)
1482 "Go to the node pointed to by the menu item named (or abbreviated) MENU-ITEM.
1483 The menu item should one of those listed in the current node's menu.
1484 Completion is allowed, and the default menu item is the one point is on.
1485 If FORK is non-nil (interactively with a prefix arg), show the node in
1486 a new info buffer. If FORK is a string, it is the name to use for the
1487 new buffer."
1488 (interactive
1489 (let ((completions '())
1490 ;; If point is within a menu item, use that item as the default
1491 (default nil)
1492 (p (point))
1494 (last nil)
1495 (case-fold-search t))
1496 (save-excursion
1497 (goto-char (point-min))
1498 (if (not (search-forward "\n* menu:" nil t))
1499 (error "No menu in this node"))
1500 (setq beg (point))
1501 (and (< (point) p)
1502 (save-excursion
1503 (goto-char p)
1504 (end-of-line)
1505 (if (re-search-backward "\n\\* +\\([^:\t\n]*\\):" beg t)
1506 (setq default (match-string-no-properties 1))))))
1507 (let ((item nil))
1508 (while (null item)
1509 (setq item (let ((completion-ignore-case t)
1510 (Info-complete-menu-buffer (current-buffer)))
1511 (completing-read (if default
1512 (format "Menu item (default %s): "
1513 default)
1514 "Menu item: ")
1515 'Info-complete-menu-item nil t)))
1516 ;; we rely on the fact that completing-read accepts an input
1517 ;; of "" even when the require-match argument is true and ""
1518 ;; is not a valid possibility
1519 (if (string= item "")
1520 (if default
1521 (setq item default)
1522 ;; ask again
1523 (setq item nil))))
1524 (list item current-prefix-arg))))
1525 ;; there is a problem here in that if several menu items have the same
1526 ;; name you can only go to the node of the first with this command.
1527 (Info-goto-node (Info-extract-menu-item menu-item) (if fork menu-item)))
1529 (defun Info-extract-menu-item (menu-item)
1530 (setq menu-item (regexp-quote menu-item))
1531 (let ((case-fold-search t))
1532 (save-excursion
1533 (let ((case-fold-search t))
1534 (goto-char (point-min))
1535 (or (search-forward "\n* menu:" nil t)
1536 (error "No menu in this node"))
1537 (or (re-search-forward (concat "\n\\* +" menu-item ":") nil t)
1538 (re-search-forward (concat "\n\\* +" menu-item) nil t)
1539 (error "No such item in menu"))
1540 (beginning-of-line)
1541 (forward-char 2)
1542 (Info-extract-menu-node-name)))))
1544 ;; If COUNT is nil, use the last item in the menu.
1545 (defun Info-extract-menu-counting (count)
1546 (let ((case-fold-search t))
1547 (save-excursion
1548 (let ((case-fold-search t))
1549 (goto-char (point-min))
1550 (or (search-forward "\n* menu:" nil t)
1551 (error "No menu in this node"))
1552 (if count
1553 (or (search-forward "\n* " nil t count)
1554 (error "Too few items in menu"))
1555 (while (search-forward "\n* " nil t)
1556 nil))
1557 (Info-extract-menu-node-name)))))
1559 (defun Info-nth-menu-item ()
1560 "Go to the node of the Nth menu item.
1561 N is the digit argument used to invoke this command."
1562 (interactive)
1563 (Info-goto-node
1564 (Info-extract-menu-counting
1565 (- (aref (this-command-keys) (1- (length (this-command-keys)))) ?0))))
1567 (defun Info-top-node ()
1568 "Go to the Top node of this file."
1569 (interactive)
1570 (Info-goto-node "Top"))
1572 (defun Info-final-node ()
1573 "Go to the final node in this file."
1574 (interactive)
1575 (Info-goto-node "Top")
1576 (let ((Info-history nil)
1577 (case-fold-search t))
1578 ;; Go to the last node in the menu of Top.
1579 (Info-goto-node (Info-extract-menu-counting nil))
1580 ;; If the last node in the menu is not last in pointer structure,
1581 ;; move forward until we can't go any farther.
1582 (while (Info-forward-node t t) nil)
1583 ;; Then keep moving down to last subnode, unless we reach an index.
1584 (while (and (not (string-match "\\<index\\>" Info-current-node))
1585 (save-excursion (search-forward "\n* Menu:" nil t)))
1586 (Info-goto-node (Info-extract-menu-counting nil)))))
1588 (defun Info-forward-node (&optional not-down no-error)
1589 "Go forward one node, considering all nodes as forming one sequence."
1590 (interactive)
1591 (goto-char (point-min))
1592 (forward-line 1)
1593 (let ((case-fold-search t))
1594 ;; three possibilities, in order of priority:
1595 ;; 1. next node is in a menu in this node (but not in an index)
1596 ;; 2. next node is next at same level
1597 ;; 3. next node is up and next
1598 (cond ((and (not not-down)
1599 (save-excursion (search-forward "\n* menu:" nil t))
1600 (not (string-match "\\<index\\>" Info-current-node)))
1601 (Info-goto-node (Info-extract-menu-counting 1))
1603 ((save-excursion
1604 (save-restriction
1605 (let (limit)
1606 (when Info-header-line
1607 (goto-char (point-min))
1608 (widen)
1609 (forward-line -1)
1610 (setq limit (point))
1611 (forward-line 1))
1612 (search-backward "next:" limit t))))
1613 (Info-next)
1615 ((and (save-excursion
1616 (save-restriction
1617 (let (limit)
1618 (when Info-header-line
1619 (goto-char (point-min))
1620 (widen)
1621 (forward-line -1)
1622 (setq limit (point))
1623 (forward-line 1))
1624 (search-backward "up:" limit t))))
1625 ;; Use string-equal, not equal, to ignore text props.
1626 (not (string-equal (downcase (Info-extract-pointer "up"))
1627 "top")))
1628 (let ((old-node Info-current-node))
1629 (Info-up)
1630 (let (Info-history success)
1631 (unwind-protect
1632 (setq success (Info-forward-node t no-error))
1633 (or success (Info-goto-node old-node))))))
1634 (no-error nil)
1635 (t (error "No pointer forward from this node")))))
1637 (defun Info-backward-node ()
1638 "Go backward one node, considering all nodes as forming one sequence."
1639 (interactive)
1640 (let ((prevnode (Info-extract-pointer "prev[ious]*" t))
1641 (upnode (Info-extract-pointer "up" t))
1642 (case-fold-search t))
1643 (cond ((and upnode (string-match "(" upnode))
1644 (error "First node in file"))
1645 ((and upnode (or (null prevnode)
1646 ;; Use string-equal, not equal,
1647 ;; to ignore text properties.
1648 (string-equal (downcase prevnode)
1649 (downcase upnode))))
1650 (Info-up))
1651 (prevnode
1652 ;; If we move back at the same level,
1653 ;; go down to find the last subnode*.
1654 (Info-prev)
1655 (let (Info-history)
1656 (while (and (not (string-match "\\<index\\>" Info-current-node))
1657 (save-excursion (search-forward "\n* Menu:" nil t)))
1658 (Info-goto-node (Info-extract-menu-counting nil)))))
1660 (error "No pointer backward from this node")))))
1662 (defun Info-exit ()
1663 "Exit Info by selecting some other buffer."
1664 (interactive)
1665 (if Info-standalone
1666 (save-buffers-kill-emacs)
1667 (quit-window)))
1669 (defun Info-next-menu-item ()
1670 (interactive)
1671 ;; Bind this in case the user sets it to nil.
1672 (let* ((case-fold-search t)
1673 (node
1674 (save-excursion
1675 (forward-line -1)
1676 (search-forward "\n* menu:" nil t)
1677 (and (search-forward "\n* " nil t)
1678 (Info-extract-menu-node-name)))))
1679 (if node (Info-goto-node node)
1680 (error "No more items in menu"))))
1682 (defun Info-last-menu-item ()
1683 (interactive)
1684 (save-excursion
1685 (forward-line 1)
1686 ;; Bind this in case the user sets it to nil.
1687 (let* ((case-fold-search t)
1688 (beg (save-excursion
1689 (and (search-backward "\n* menu:" nil t)
1690 (point)))))
1691 (or (and beg (search-backward "\n* " beg t))
1692 (error "No previous items in menu")))
1693 (Info-goto-node (save-excursion
1694 (goto-char (match-end 0))
1695 (Info-extract-menu-node-name)))))
1697 (defmacro Info-no-error (&rest body)
1698 (list 'condition-case nil (cons 'progn (append body '(t))) '(error nil)))
1700 (defun Info-next-preorder ()
1701 "Go to the next subnode or the next node, or go up a level."
1702 (interactive)
1703 (cond ((Info-no-error (Info-next-menu-item)))
1704 ((Info-no-error (Info-next)))
1705 ((Info-no-error (Info-up t))
1706 ;; Since we have already gone thru all the items in this menu,
1707 ;; go up to the end of this node.
1708 (goto-char (point-max))
1709 ;; Since logically we are done with the node with that menu,
1710 ;; move on from it.
1711 (Info-next-preorder))
1713 (error "No more nodes"))))
1715 (defun Info-last-preorder ()
1716 "Go to the last node, popping up a level if there is none."
1717 (interactive)
1718 (cond ((Info-no-error
1719 (Info-last-menu-item)
1720 ;; If we go down a menu item, go to the end of the node
1721 ;; so we can scroll back through it.
1722 (goto-char (point-max)))
1723 ;; Keep going down, as long as there are nested menu nodes.
1724 (while (Info-no-error
1725 (Info-last-menu-item)
1726 ;; If we go down a menu item, go to the end of the node
1727 ;; so we can scroll back through it.
1728 (goto-char (point-max))))
1729 (recenter -1))
1730 ((and (Info-no-error (Info-extract-pointer "prev"))
1731 (not (equal (Info-extract-pointer "up")
1732 (Info-extract-pointer "prev"))))
1733 (Info-no-error (Info-prev))
1734 (goto-char (point-max))
1735 (while (Info-no-error
1736 (Info-last-menu-item)
1737 ;; If we go down a menu item, go to the end of the node
1738 ;; so we can scroll back through it.
1739 (goto-char (point-max))))
1740 (recenter -1))
1741 ((Info-no-error (Info-up t))
1742 (goto-char (point-min))
1743 (let ((case-fold-search t))
1744 (or (search-forward "\n* Menu:" nil t)
1745 (goto-char (point-max)))))
1746 (t (error "No previous nodes"))))
1748 (defun Info-scroll-up ()
1749 "Scroll one screenful forward in Info, considering all nodes as one sequence.
1750 Once you scroll far enough in a node that its menu appears on the screen
1751 but after point, the next scroll moves into its first subnode, unless
1752 `Info-scroll-prefer-subnodes' is nil.
1754 When you scroll past the end of a node, that goes to the next node if
1755 `Info-scroll-prefer-subnodes' is non-nil and to the first subnode otherwise;
1756 if this node has no successor, it moves to the parent node's successor,
1757 and so on. If `Info-scroll-prefer-subnodes' is non-nil and point is inside
1758 the menu of a node, it moves to subnode indicated by the following menu
1759 item. (That case won't normally result from this command, but can happen
1760 in other ways.)"
1762 (interactive)
1763 (if (or (< (window-start) (point-min))
1764 (> (window-start) (point-max)))
1765 (set-window-start (selected-window) (point)))
1766 (let* ((case-fold-search t)
1767 (virtual-end (save-excursion
1768 (goto-char (point-min))
1769 (if (and Info-scroll-prefer-subnodes
1770 (search-forward "\n* Menu:" nil t))
1771 (point)
1772 (point-max)))))
1773 (if (or (< virtual-end (window-start))
1774 (pos-visible-in-window-p virtual-end))
1775 (cond
1776 (Info-scroll-prefer-subnodes (Info-next-preorder))
1777 ((Info-no-error (Info-goto-node (Info-extract-menu-counting 1))))
1778 (t (Info-next-preorder)))
1779 (scroll-up))))
1781 (defun Info-scroll-down ()
1782 "Scroll one screenful back in Info, considering all nodes as one sequence.
1783 If point is within the menu of a node, and `Info-scroll-prefer-subnodes'
1784 is non-nil, this goes to its last subnode. When you scroll past the
1785 beginning of a node, that goes to the previous node or back up to the
1786 parent node."
1787 (interactive)
1788 (if (or (< (window-start) (point-min))
1789 (> (window-start) (point-max)))
1790 (set-window-start (selected-window) (point)))
1791 (let* ((case-fold-search t)
1792 (current-point (point))
1793 (virtual-end
1794 (and Info-scroll-prefer-subnodes
1795 (save-excursion
1796 (beginning-of-line)
1797 (setq current-point (point))
1798 (goto-char (point-min))
1799 (search-forward "\n* Menu:"
1800 current-point
1801 t)))))
1802 (if (or virtual-end
1803 (pos-visible-in-window-p (point-min) nil t))
1804 (Info-last-preorder)
1805 (scroll-down))))
1807 (defun Info-next-reference (&optional recur)
1808 "Move cursor to the next cross-reference or menu item in the node."
1809 (interactive)
1810 (let ((pat "\\*note[ \n\t]*\\([^:]*\\):\\|^\\* .*:")
1811 (old-pt (point))
1812 (case-fold-search t))
1813 (or (eobp) (forward-char 1))
1814 (or (re-search-forward pat nil t)
1815 (progn
1816 (goto-char (point-min))
1817 (or (re-search-forward pat nil t)
1818 (progn
1819 (goto-char old-pt)
1820 (error "No cross references in this node")))))
1821 (goto-char (match-beginning 0))
1822 (if (looking-at "\\* Menu:")
1823 (if recur
1824 (error "No cross references in this node")
1825 (Info-next-reference t)))))
1827 (defun Info-prev-reference (&optional recur)
1828 "Move cursor to the previous cross-reference or menu item in the node."
1829 (interactive)
1830 (let ((pat "\\*note[ \n\t]*\\([^:]*\\):\\|^\\* .*:")
1831 (old-pt (point))
1832 (case-fold-search t))
1833 (or (re-search-backward pat nil t)
1834 (progn
1835 (goto-char (point-max))
1836 (or (re-search-backward pat nil t)
1837 (progn
1838 (goto-char old-pt)
1839 (error "No cross references in this node")))))
1840 (goto-char (match-beginning 0))
1841 (if (looking-at "\\* Menu:")
1842 (if recur
1843 (error "No cross references in this node")
1844 (Info-prev-reference t)))))
1846 (defun Info-goto-index ()
1847 (Info-goto-node "Top")
1848 (or (search-forward "\n* menu:" nil t)
1849 (error "No index"))
1850 (or (re-search-forward "\n\\* \\(.*\\<Index\\>\\)" nil t)
1851 (error "No index"))
1852 (goto-char (match-beginning 1))
1853 ;; Protect Info-history so that the current node (Top) is not added to it.
1854 (let ((Info-history nil))
1855 (Info-goto-node (Info-extract-menu-node-name))))
1857 (defun Info-index (topic)
1858 "Look up a string TOPIC in the index for this file.
1859 The index is defined as the first node in the top level menu whose
1860 name contains the word \"Index\", plus any immediately following
1861 nodes whose names also contain the word \"Index\".
1862 If there are no exact matches to the specified topic, this chooses
1863 the first match which is a case-insensitive substring of a topic.
1864 Use the `,' command to see the other matches.
1865 Give a blank topic name to go to the Index node itself."
1866 (interactive
1867 (list
1868 (let ((Info-complete-menu-buffer (clone-buffer))
1869 (Info-complete-next-re "\\<Index\\>"))
1870 (unwind-protect
1871 (with-current-buffer Info-complete-menu-buffer
1872 (Info-goto-index)
1873 (completing-read "Index topic: " 'Info-complete-menu-item))
1874 (kill-buffer Info-complete-menu-buffer)))))
1875 (let ((orignode Info-current-node)
1876 (rnode nil)
1877 (pattern (format "\n\\* +\\([^\n:]*%s[^\n:]*\\):[ \t]*\\([^.\n]*\\)\\.[ \t]*\\([0-9]*\\)"
1878 (regexp-quote topic)))
1879 node
1880 (case-fold-search t))
1881 (Info-goto-index)
1882 (or (equal topic "")
1883 (let ((matches nil)
1884 (exact nil)
1885 ;; We bind Info-history to nil for internal node-switches so
1886 ;; that we don't put junk in the history. In the first
1887 ;; Info-goto-index call, above, we do update the history
1888 ;; because that is what the user's previous node choice into it.
1889 (Info-history nil)
1890 found)
1891 (while
1892 (progn
1893 (goto-char (point-min))
1894 (while (re-search-forward pattern nil t)
1895 (push (list (match-string-no-properties 1)
1896 (match-string-no-properties 2)
1897 Info-current-node
1898 (string-to-int (concat "0"
1899 (match-string 3))))
1900 matches))
1901 (and (setq node (Info-extract-pointer "next" t))
1902 (string-match "\\<Index\\>" node)))
1903 (Info-goto-node node))
1904 (or matches
1905 (progn
1906 (Info-goto-node orignode)
1907 (error "No `%s' in index" topic)))
1908 ;; Here it is a feature that assoc is case-sensitive.
1909 (while (setq found (assoc topic matches))
1910 (setq exact (cons found exact)
1911 matches (delq found matches)))
1912 (setq Info-index-alternatives (nconc exact (nreverse matches)))
1913 (Info-index-next 0)))))
1915 (defun Info-index-next (num)
1916 "Go to the next matching index item from the last `i' command."
1917 (interactive "p")
1918 (or Info-index-alternatives
1919 (error "No previous `i' command"))
1920 (while (< num 0)
1921 (setq num (+ num (length Info-index-alternatives))))
1922 (while (> num 0)
1923 (setq Info-index-alternatives
1924 (nconc (cdr Info-index-alternatives)
1925 (list (car Info-index-alternatives)))
1926 num (1- num)))
1927 (Info-goto-node (nth 1 (car Info-index-alternatives)))
1928 (if (> (nth 3 (car Info-index-alternatives)) 0)
1929 (forward-line (nth 3 (car Info-index-alternatives)))
1930 (forward-line 3) ; don't search in headers
1931 (let ((name (car (car Info-index-alternatives))))
1932 (Info-find-index-name name)))
1933 (message "Found `%s' in %s. %s"
1934 (car (car Info-index-alternatives))
1935 (nth 2 (car Info-index-alternatives))
1936 (if (cdr Info-index-alternatives)
1937 "(Press `,' for more)"
1938 "(Only match)")))
1940 (defun Info-find-index-name (name)
1941 "Move point to the place within the current node where NAME is defined."
1942 (let ((case-fold-search t))
1943 (if (or (re-search-forward (format
1944 "[a-zA-Z]+: %s\\( \\|$\\)"
1945 (regexp-quote name)) nil t)
1946 (search-forward (format "`%s'" name) nil t)
1947 (and (string-match "\\`.*\\( (.*)\\)\\'" name)
1948 (search-forward
1949 (format "`%s'" (substring name 0 (match-beginning 1)))
1950 nil t))
1951 (search-forward name nil t))
1952 (beginning-of-line)
1953 (goto-char (point-min)))))
1955 (defun Info-undefined ()
1956 "Make command be undefined in Info."
1957 (interactive)
1958 (ding))
1960 (defun Info-help ()
1961 "Enter the Info tutorial."
1962 (interactive)
1963 (delete-other-windows)
1964 (Info-find-node "info"
1965 (if (< (window-height) 23)
1966 "Help-Small-Screen"
1967 "Help")))
1969 (defun Info-summary ()
1970 "Display a brief summary of all Info commands."
1971 (interactive)
1972 (save-window-excursion
1973 (switch-to-buffer "*Help*")
1974 (setq buffer-read-only nil)
1975 (erase-buffer)
1976 (insert (documentation 'Info-mode))
1977 (help-mode)
1978 (goto-char (point-min))
1979 (let (ch flag)
1980 (while (progn (setq flag (not (pos-visible-in-window-p (point-max))))
1981 (message (if flag "Type Space to see more"
1982 "Type Space to return to Info"))
1983 (if (not (eq ?\ (setq ch (read-event))))
1984 (progn (setq unread-command-events (list ch)) nil)
1985 flag))
1986 (scroll-up)))
1987 (bury-buffer "*Help*")))
1989 (defun Info-get-token (pos start all &optional errorstring)
1990 "Return the token around POS.
1991 POS must be somewhere inside the token
1992 START is a regular expression which will match the
1993 beginning of the tokens delimited string
1994 ALL is a regular expression with a single
1995 parenthesized subpattern which is the token to be
1996 returned. E.g. '{\(.*\)}' would return any string
1997 enclosed in braces around POS.
1998 ERRORSTRING optional fourth argument, controls action on no match
1999 nil: return nil
2000 t: beep
2001 a string: signal an error, using that string."
2002 (let ((case-fold-search t))
2003 (save-excursion
2004 (goto-char pos)
2005 ;; First look for a match for START that goes across POS.
2006 (while (and (not (bobp)) (> (point) (- pos (length start)))
2007 (not (looking-at start)))
2008 (forward-char -1))
2009 ;; If we did not find one, search back for START
2010 ;; (this finds only matches that end at or before POS).
2011 (or (looking-at start)
2012 (progn
2013 (goto-char pos)
2014 (re-search-backward start (max (point-min) (- pos 200)) 'yes)))
2015 (let (found)
2016 (while (and (re-search-forward all (min (point-max) (+ pos 200)) 'yes)
2017 (not (setq found (and (<= (match-beginning 0) pos)
2018 (> (match-end 0) pos))))))
2019 (if (and found (<= (match-beginning 0) pos)
2020 (> (match-end 0) pos))
2021 (match-string-no-properties 1)
2022 (cond ((null errorstring)
2023 nil)
2024 ((eq errorstring t)
2025 (beep)
2026 nil)
2028 (error "No %s around position %d" errorstring pos))))))))
2030 (defun Info-mouse-follow-nearest-node (click)
2031 "\\<Info-mode-map>Follow a node reference near point.
2032 Like \\[Info-menu], \\[Info-follow-reference], \\[Info-next], \\[Info-prev] or \\[Info-up] command, depending on where you click.
2033 At end of the node's text, moves to the next node, or up if none."
2034 (interactive "e")
2035 (mouse-set-point click)
2036 (and (not (Info-try-follow-nearest-node))
2037 (save-excursion (forward-line 1) (eobp))
2038 (Info-next-preorder)))
2040 (defun Info-follow-nearest-node ()
2041 "\\<Info-mode-map>Follow a node reference near point.
2042 Like \\[Info-menu], \\[Info-follow-reference], \\[Info-next], \\[Info-prev] or \\[Info-up] command, depending on where point is.
2043 If no reference to follow, moves to the next node, or up if none."
2044 (interactive)
2045 (or (Info-try-follow-nearest-node)
2046 (Info-next-preorder)))
2048 ;; Common subroutine.
2049 (defun Info-try-follow-nearest-node ()
2050 "Follow a node reference near point. Return non-nil if successful."
2051 (let (node)
2052 (cond
2053 ((setq node (Info-get-token (point) "\\*note[ \n]"
2054 "\\*note[ \n]\\([^:]*\\):"))
2055 (Info-follow-reference node))
2056 ((setq node (Info-get-token (point) "\\* +" "\\* +\\([^:]*\\)::"))
2057 (Info-goto-node node))
2058 ((Info-get-token (point) "\\* +" "\\* +\\([^:]*\\):")
2059 (beginning-of-line)
2060 (forward-char 2)
2061 (setq node (Info-extract-menu-node-name))
2062 (Info-goto-node node))
2063 ((setq node (Info-get-token (point) "Up: " "Up: \\([^,\n\t]*\\)"))
2064 (Info-goto-node node))
2065 ((setq node (Info-get-token (point) "Next: " "Next: \\([^,\n\t]*\\)"))
2066 (Info-goto-node node))
2067 ((setq node (Info-get-token (point) "File: " "File: \\([^,\n\t]*\\)"))
2068 (Info-goto-node "Top"))
2069 ((setq node (Info-get-token (point) "Prev: " "Prev: \\([^,\n\t]*\\)"))
2070 (Info-goto-node node)))
2071 node))
2073 (defvar Info-mode-map nil
2074 "Keymap containing Info commands.")
2075 (if Info-mode-map
2077 (setq Info-mode-map (make-keymap))
2078 (suppress-keymap Info-mode-map)
2079 (define-key Info-mode-map "." 'beginning-of-buffer)
2080 (define-key Info-mode-map " " 'Info-scroll-up)
2081 (define-key Info-mode-map "\C-m" 'Info-follow-nearest-node)
2082 (define-key Info-mode-map "\t" 'Info-next-reference)
2083 (define-key Info-mode-map "\e\t" 'Info-prev-reference)
2084 (define-key Info-mode-map "1" 'Info-nth-menu-item)
2085 (define-key Info-mode-map "2" 'Info-nth-menu-item)
2086 (define-key Info-mode-map "3" 'Info-nth-menu-item)
2087 (define-key Info-mode-map "4" 'Info-nth-menu-item)
2088 (define-key Info-mode-map "5" 'Info-nth-menu-item)
2089 (define-key Info-mode-map "6" 'Info-nth-menu-item)
2090 (define-key Info-mode-map "7" 'Info-nth-menu-item)
2091 (define-key Info-mode-map "8" 'Info-nth-menu-item)
2092 (define-key Info-mode-map "9" 'Info-nth-menu-item)
2093 (define-key Info-mode-map "0" 'undefined)
2094 (define-key Info-mode-map "?" 'Info-summary)
2095 (define-key Info-mode-map "]" 'Info-forward-node)
2096 (define-key Info-mode-map "[" 'Info-backward-node)
2097 (define-key Info-mode-map "<" 'Info-top-node)
2098 (define-key Info-mode-map ">" 'Info-final-node)
2099 (define-key Info-mode-map "b" 'beginning-of-buffer)
2100 (define-key Info-mode-map "c" 'Info-copy-current-node-name)
2101 (define-key Info-mode-map "d" 'Info-directory)
2102 (define-key Info-mode-map "e" 'Info-edit)
2103 (define-key Info-mode-map "f" 'Info-follow-reference)
2104 (define-key Info-mode-map "g" 'Info-goto-node)
2105 (define-key Info-mode-map "h" 'Info-help)
2106 (define-key Info-mode-map "i" 'Info-index)
2107 (define-key Info-mode-map "l" 'Info-last)
2108 (define-key Info-mode-map "m" 'Info-menu)
2109 (define-key Info-mode-map "n" 'Info-next)
2110 (define-key Info-mode-map "p" 'Info-prev)
2111 (define-key Info-mode-map "q" 'Info-exit)
2112 (define-key Info-mode-map "s" 'Info-search)
2113 ;; For consistency with Rmail.
2114 (define-key Info-mode-map "\M-s" 'Info-search)
2115 (define-key Info-mode-map "\M-n" 'clone-buffer)
2116 (define-key Info-mode-map "t" 'Info-top-node)
2117 (define-key Info-mode-map "u" 'Info-up)
2118 (define-key Info-mode-map "," 'Info-index-next)
2119 (define-key Info-mode-map "\177" 'Info-scroll-down)
2120 (define-key Info-mode-map [mouse-2] 'Info-mouse-follow-nearest-node)
2123 (defun Info-check-pointer (item)
2124 "Non-nil if ITEM is present in this node."
2125 (condition-case nil
2126 (Info-extract-pointer item)
2127 (error nil)))
2129 (easy-menu-define
2130 Info-mode-menu Info-mode-map
2131 "Menu for info files."
2132 '("Info"
2133 ["Up" Info-up :active (Info-check-pointer "up")
2134 :help "Go up in the Info tree"]
2135 ["Next" Info-next :active (Info-check-pointer "next")
2136 :help "Go to the next node"]
2137 ["Previous" Info-prev :active (Info-check-pointer "prev[ious]*")
2138 :help "Go to the previous node"]
2139 ["Backward" Info-backward-node
2140 :help "Go backward one node, considering all as a sequence"]
2141 ["Forward" Info-forward-node
2142 :help "Go forward one node, considering all as a sequence"]
2143 ["Beginning" beginning-of-buffer
2144 :help "Go to beginning of this node"]
2145 ["Top" Info-top-node
2146 :help "Go to top node of file"]
2147 ["Final Node" Info-final-node
2148 :help "Go to final node in this file"]
2149 ("Menu Item" ["You should never see this" report-emacs-bug t])
2150 ("Reference" ["You should never see this" report-emacs-bug t])
2151 ["Search..." Info-search
2152 :help "Search for regular expression in this Info file"]
2153 ["Go to Node..." Info-goto-node
2154 :help "Go to a named node"]
2155 ["Last" Info-last :active Info-history
2156 :help "Go to the last node you were at"]
2157 ("Index..."
2158 ["Lookup a String" Info-index
2159 :help "Look for a string in the index items"]
2160 ["Next Matching Item" Info-index-next
2161 :help "Look for another occurrence of previous item"])
2162 ["Edit" Info-edit :help "Edit contents of this node"
2163 :active Info-enable-edit]
2164 ["Copy Node Name" Info-copy-current-node-name
2165 :help "Copy the name of the current node into the kill ring"]
2166 ["Exit" Info-exit :help "Stop reading Info"]))
2169 (defvar info-tool-bar-map
2170 (if (display-graphic-p)
2171 (let ((map (make-sparse-keymap)))
2172 (tool-bar-local-item-from-menu 'Info-exit "close" map Info-mode-map)
2173 (tool-bar-local-item-from-menu 'Info-prev "left_arrow" map Info-mode-map)
2174 (tool-bar-local-item-from-menu 'Info-next "right_arrow" map Info-mode-map)
2175 (tool-bar-local-item-from-menu 'Info-up "up_arrow" map Info-mode-map)
2176 (tool-bar-local-item-from-menu 'Info-last "undo" map Info-mode-map)
2177 (tool-bar-local-item-from-menu 'Info-top-node "home" map Info-mode-map)
2178 (tool-bar-local-item-from-menu 'Info-index "index" map Info-mode-map)
2179 (tool-bar-local-item-from-menu 'Info-goto-node "jump_to" map Info-mode-map)
2180 (tool-bar-local-item-from-menu 'Info-search "search" map Info-mode-map)
2181 map)))
2183 (defvar Info-menu-last-node nil)
2184 ;; Last node the menu was created for.
2185 ;; Value is a list, (FILE-NAME NODE-NAME).
2187 (defun Info-menu-update ()
2188 "Update the Info menu for the current node."
2189 (condition-case nil
2190 (if (or (not (eq major-mode 'Info-mode))
2191 (equal (list Info-current-file Info-current-node)
2192 Info-menu-last-node))
2194 ;; Update menu menu.
2195 (let* ((Info-complete-menu-buffer (current-buffer))
2196 (items (nreverse (condition-case nil
2197 (Info-complete-menu-item "" nil t)
2198 (error nil))))
2199 entries current
2200 (number 0))
2201 (while (and items (< number 9))
2202 (setq current (car items)
2203 items (cdr items)
2204 number (1+ number))
2205 (setq entries (cons `[,current
2206 (Info-menu ,current)
2207 :keys ,(format "%d" number)]
2208 entries)))
2209 (if items
2210 (setq entries (cons ["Other..." Info-menu t] entries)))
2211 (or entries
2212 (setq entries (list ["No menu" nil nil] nil :active)))
2213 (easy-menu-change '("Info") "Menu Item" (nreverse entries)))
2214 ;; Update reference menu. Code stolen from `Info-follow-reference'.
2215 (let ((items nil)
2216 str i entries current
2217 (number 0)
2218 (case-fold-search t))
2219 (save-excursion
2220 (goto-char (point-min))
2221 (while (re-search-forward "\\*note[ \n\t]*\\([^:]*\\):" nil t)
2222 (setq str (buffer-substring
2223 (match-beginning 1)
2224 (1- (point))))
2225 (setq i 0)
2226 (while (setq i (string-match "[ \n\t]+" str i))
2227 (setq str (concat (substring str 0 i) " "
2228 (substring str (match-end 0))))
2229 (setq i (1+ i)))
2230 (setq items
2231 (cons str items))))
2232 (while (and items (< number 9))
2233 (setq current (car items)
2234 items (cdr items)
2235 number (1+ number))
2236 (setq entries (cons `[,current
2237 (Info-follow-reference ,current)
2239 entries)))
2240 (if items
2241 (setq entries (cons ["Other..." Info-follow-reference t]
2242 entries)))
2243 (or entries
2244 (setq entries (list ["No references" nil nil] nil :active)))
2245 (easy-menu-change '("Info") "Reference" (nreverse entries)))
2246 ;; Update last seen node.
2247 (setq Info-menu-last-node (list Info-current-file Info-current-node)))
2248 ;; Try to avoid entering infinite beep mode in case of errors.
2249 (error (ding))))
2252 (defun Info-copy-current-node-name ()
2253 "Put the name of the current info node into the kill ring.
2254 The name of the info file is prepended to the node name in parentheses."
2255 (interactive)
2256 (unless Info-current-node
2257 (error "No current info node"))
2258 (kill-new
2259 (concat "("
2260 (file-name-nondirectory
2261 (if (stringp Info-current-file)
2262 Info-current-file
2263 (or buffer-file-name "")))
2265 Info-current-node)))
2268 ;; Info mode is suitable only for specially formatted data.
2269 (put 'Info-mode 'mode-class 'special)
2270 (put 'Info-mode 'no-clone-indirect t)
2272 (defun Info-mode ()
2273 "Info mode provides commands for browsing through the Info documentation tree.
2274 Documentation in Info is divided into \"nodes\", each of which discusses
2275 one topic and contains references to other nodes which discuss related
2276 topics. Info has commands to follow the references and show you other nodes.
2278 \\<Info-mode-map>\
2279 \\[Info-help] Invoke the Info tutorial.
2280 \\[Info-exit] Quit Info: reselect previously selected buffer.
2282 Selecting other nodes:
2283 \\[Info-mouse-follow-nearest-node]
2284 Follow a node reference you click on.
2285 This works with menu items, cross references, and
2286 the \"next\", \"previous\" and \"up\", depending on where you click.
2287 \\[Info-follow-nearest-node] Follow a node reference near point, like \\[Info-mouse-follow-nearest-node].
2288 \\[Info-next] Move to the \"next\" node of this node.
2289 \\[Info-prev] Move to the \"previous\" node of this node.
2290 \\[Info-up] Move \"up\" from this node.
2291 \\[Info-menu] Pick menu item specified by name (or abbreviation).
2292 Picking a menu item causes another node to be selected.
2293 \\[Info-directory] Go to the Info directory node.
2294 \\[Info-follow-reference] Follow a cross reference. Reads name of reference.
2295 \\[Info-last] Move to the last node you were at.
2296 \\[Info-index] Look up a topic in this file's Index and move to that node.
2297 \\[Info-index-next] (comma) Move to the next match from a previous `i' command.
2298 \\[Info-top-node] Go to the Top node of this file.
2299 \\[Info-final-node] Go to the final node in this file.
2300 \\[Info-backward-node] Go backward one node, considering all nodes as forming one sequence.
2301 \\[Info-forward-node] Go forward one node, considering all nodes as forming one sequence.
2303 Moving within a node:
2304 \\[Info-scroll-up] Normally, scroll forward a full screen.
2305 Once you scroll far enough in a node that its menu appears on the
2306 screen but after point, the next scroll moves into its first
2307 subnode. When after all menu items (or if there is no menu),
2308 move up to the parent node.
2309 \\[Info-scroll-down] Normally, scroll backward. If the beginning of the buffer is
2310 already visible, try to go to the previous menu entry, or up
2311 if there is none.
2312 \\[beginning-of-buffer] Go to beginning of node.
2314 Advanced commands:
2315 \\[Info-exit] Quit Info: reselect previously selected buffer.
2316 \\[Info-edit] Edit contents of selected node.
2317 1 Pick first item in node's menu.
2318 2, 3, 4, 5 Pick second ... fifth item in node's menu.
2319 \\[Info-goto-node] Move to node specified by name.
2320 You may include a filename as well, as (FILENAME)NODENAME.
2321 \\[universal-argument] \\[info] Move to new Info file with completion.
2322 \\[Info-search] Search through this Info file for specified regexp,
2323 and select the node in which the next occurrence is found.
2324 \\[Info-next-reference] Move cursor to next cross-reference or menu item.
2325 \\[Info-prev-reference] Move cursor to previous cross-reference or menu item."
2326 (kill-all-local-variables)
2327 (setq major-mode 'Info-mode)
2328 (setq mode-name "Info")
2329 (setq tab-width 8)
2330 (use-local-map Info-mode-map)
2331 (add-hook 'activate-menubar-hook 'Info-menu-update nil t)
2332 (set-syntax-table text-mode-syntax-table)
2333 (setq local-abbrev-table text-mode-abbrev-table)
2334 (setq case-fold-search t)
2335 (setq buffer-read-only t)
2336 (make-local-variable 'Info-current-file)
2337 (make-local-variable 'Info-current-subfile)
2338 (make-local-variable 'Info-current-node)
2339 (make-local-variable 'Info-tag-table-marker)
2340 (setq Info-tag-table-marker (make-marker))
2341 (make-local-variable 'Info-tag-table-buffer)
2342 (setq Info-tag-table-buffer nil)
2343 (set (make-local-variable 'font-lock-category-alist)
2344 '((info-menu-header . info-menu-header)
2345 (info-header-node . info-header-node)
2346 (info-header-xref . info-header-xref)
2347 (Info-title-1-face . Info-title-1-face)
2348 (Info-title-2-face . Info-title-2-face)
2349 (Info-title-3-face . Info-title-3-face)
2350 (Info-title-4-face . Info-title-4-face)
2351 (info-menu-5 . info-menu-5)
2352 (info-xref . info-xref)))
2353 (make-local-variable 'Info-history)
2354 (make-local-variable 'Info-index-alternatives)
2355 (set (make-local-variable 'tool-bar-map) info-tool-bar-map)
2356 ;; This is for the sake of the invisible text we use handling titles.
2357 (make-local-variable 'line-move-ignore-invisible)
2358 (setq line-move-ignore-invisible t)
2359 (add-hook 'clone-buffer-hook 'Info-clone-buffer-hook nil t)
2360 (Info-set-mode-line)
2361 (run-hooks 'Info-mode-hook))
2363 (defun Info-clone-buffer-hook ()
2364 (when (bufferp Info-tag-table-buffer)
2365 (setq Info-tag-table-buffer
2366 (with-current-buffer Info-tag-table-buffer (clone-buffer))))
2367 (let ((m Info-tag-table-marker))
2368 (when (markerp m)
2369 (setq Info-tag-table-marker
2370 (if (and (marker-position m) (bufferp Info-tag-table-buffer))
2371 (with-current-buffer Info-tag-table-buffer
2372 (copy-marker (marker-position m)))
2373 (make-marker))))))
2375 (defvar Info-edit-map (let ((map (make-sparse-keymap)))
2376 (set-keymap-parent map text-mode-map)
2377 (define-key map "\C-c\C-c" 'Info-cease-edit)
2378 map)
2379 "Local keymap used within `e' command of Info.")
2381 ;; Info-edit mode is suitable only for specially formatted data.
2382 (put 'Info-edit-mode 'mode-class 'special)
2384 (defun Info-edit-mode ()
2385 "Major mode for editing the contents of an Info node.
2386 Like text mode with the addition of `Info-cease-edit'
2387 which returns to Info mode for browsing.
2388 \\{Info-edit-map}"
2389 (use-local-map Info-edit-map)
2390 (setq major-mode 'Info-edit-mode)
2391 (setq mode-name "Info Edit")
2392 (kill-local-variable 'mode-line-buffer-identification)
2393 (setq buffer-read-only nil)
2394 (force-mode-line-update)
2395 (buffer-enable-undo (current-buffer))
2396 (run-hooks 'Info-edit-mode-hook))
2398 (defun Info-edit ()
2399 "Edit the contents of this Info node.
2400 Allowed only if variable `Info-enable-edit' is non-nil."
2401 (interactive)
2402 (or Info-enable-edit
2403 (error "Editing info nodes is not enabled"))
2404 (Info-edit-mode)
2405 (message "%s" (substitute-command-keys
2406 "Editing: Type \\<Info-edit-map>\\[Info-cease-edit] to return to info")))
2408 (defun Info-cease-edit ()
2409 "Finish editing Info node; switch back to Info proper."
2410 (interactive)
2411 ;; Do this first, so nothing has changed if user C-g's at query.
2412 (and (buffer-modified-p)
2413 (y-or-n-p "Save the file? ")
2414 (save-buffer))
2415 (use-local-map Info-mode-map)
2416 (setq major-mode 'Info-mode)
2417 (setq mode-name "Info")
2418 (Info-set-mode-line)
2419 (setq buffer-read-only t)
2420 (force-mode-line-update)
2421 (and (marker-position Info-tag-table-marker)
2422 (buffer-modified-p)
2423 (message "Tags may have changed. Use Info-tagify if necessary")))
2425 (defvar Info-file-list-for-emacs
2426 '("ediff" "eudc" "forms" "gnus" "info" ("mh" . "mh-e")
2427 "sc" "message" ("dired" . "dired-x") "viper" "vip" "idlwave"
2428 ("c" . "ccmode") ("c++" . "ccmode") ("objc" . "ccmode")
2429 ("java" . "ccmode") ("idl" . "ccmode") ("pike" . "ccmode")
2430 ("skeleton" . "autotype") ("auto-insert" . "autotype")
2431 ("copyright" . "autotype") ("executable" . "autotype")
2432 ("time-stamp" . "autotype") ("quickurl" . "autotype")
2433 ("tempo" . "autotype") ("hippie-expand" . "autotype")
2434 ("cvs" . "pcl-cvs") ("ada" . "ada-mode") "calc"
2435 ("calcAlg" . "calc") ("calcDigit" . "calc") ("calcVar" . "calc")
2436 "ebrowse" "eshell" "cl" "reftex" "speedbar" "widget" "woman"
2437 ("mail-header" . "emacs-mime") ("mail-content" . "emacs-mime")
2438 ("mail-encode" . "emacs-mime") ("mail-decode" . "emacs-mime")
2439 ("rfc2045" . "emacs-mime")
2440 ("rfc2231" . "emacs-mime") ("rfc2047" . "emacs-mime")
2441 ("rfc2045" . "emacs-mime") ("rfc1843" . "emacs-mime")
2442 ("ietf-drums" . "emacs-mime") ("quoted-printable" . "emacs-mime")
2443 ("binhex" . "emacs-mime") ("uudecode" . "emacs-mime")
2444 ("mailcap" . "emacs-mime") ("mm" . "emacs-mime")
2445 ("mml" . "emacs-mime"))
2446 "List of Info files that describe Emacs commands.
2447 An element can be a file name, or a list of the form (PREFIX . FILE)
2448 where PREFIX is a name prefix and FILE is the file to look in.
2449 If the element is just a file name, the file name also serves as the prefix.")
2451 (defun Info-find-emacs-command-nodes (command)
2452 "Return a list of locations documenting COMMAND.
2453 The `info-file' property of COMMAND says which Info manual to search.
2454 If COMMAND has no property, the variable `Info-file-list-for-emacs'
2455 defines heuristics for which Info manual to try.
2456 The locations are of the format used in `Info-history', i.e.
2457 \(FILENAME NODENAME BUFFERPOS\)."
2458 (let ((where '())
2459 (cmd-desc (concat "^\\* +" (regexp-quote (symbol-name command))
2460 "\\( <[0-9]+>\\)?:\\s *\\(.*\\)\\.$"))
2461 (info-file "emacs")) ;default
2462 ;; Determine which info file this command is documented in.
2463 (if (get command 'info-file)
2464 (setq info-file (get command 'info-file))
2465 ;; If it doesn't say explicitly, test its name against
2466 ;; various prefixes that we know.
2467 (let ((file-list Info-file-list-for-emacs))
2468 (while file-list
2469 (let* ((elt (car file-list))
2470 (name (if (consp elt)
2471 (car elt)
2472 elt))
2473 (file (if (consp elt) (cdr elt) elt))
2474 (regexp (concat "\\`" (regexp-quote name)
2475 "\\(\\'\\|-\\)")))
2476 (if (string-match regexp (symbol-name command))
2477 (setq info-file file file-list nil))
2478 (setq file-list (cdr file-list))))))
2479 (Info-find-node info-file "Top")
2480 (or (and (search-forward "\n* menu:" nil t)
2481 (re-search-forward "\n\\* \\(.*\\<Index\\>\\)" nil t))
2482 (error "Info file `%s' appears to lack an index" info-file))
2483 (goto-char (match-beginning 1))
2484 ;; Bind Info-history to nil, to prevent the index nodes from
2485 ;; getting into the node history.
2486 (let ((Info-history nil)
2487 (exact nil)
2488 node found)
2489 (Info-goto-node (Info-extract-menu-node-name))
2490 (while
2491 (progn
2492 (goto-char (point-min))
2493 (while (re-search-forward cmd-desc nil t)
2494 (setq where
2495 (cons (list Info-current-file
2496 (match-string-no-properties 2)
2498 where)))
2499 (and (setq node (Info-extract-pointer "next" t))
2500 (string-match "\\<Index\\>" node)))
2501 (Info-goto-node node)))
2502 where))
2504 ;;;###autoload
2505 (defun Info-goto-emacs-command-node (command)
2506 "Go to the Info node in the Emacs manual for command COMMAND.
2507 The command is found by looking up in Emacs manual's indices
2508 or in another manual found via COMMAND's `info-file' property or
2509 the variable `Info-file-list-for-emacs'."
2510 (interactive "CFind documentation for command: ")
2511 (or (commandp command)
2512 (signal 'wrong-type-argument (list 'commandp command)))
2513 (let ((where (Info-find-emacs-command-nodes command)))
2514 (if where
2515 (let ((num-matches (length where)))
2516 ;; Get Info running, and pop to it in another window.
2517 (save-window-excursion
2518 (info))
2519 ;; FIXME It would be cool if this could use a buffer other
2520 ;; than *info*.
2521 (pop-to-buffer "*info*")
2522 ;; Bind Info-history to nil, to prevent the last Index node
2523 ;; visited by Info-find-emacs-command-nodes from being
2524 ;; pushed onto the history.
2525 (let ((Info-history nil))
2526 (Info-find-node (car (car where))
2527 (car (cdr (car where)))))
2528 (if (> num-matches 1)
2529 (progn
2530 ;; (car where) will be pushed onto Info-history
2531 ;; when/if they go to another node. Put the other
2532 ;; nodes that were found on the history.
2533 (setq Info-history (nconc (cdr where) Info-history))
2534 (message "Found %d other entr%s. Use %s to see %s."
2535 (1- num-matches)
2536 (if (> num-matches 2) "ies" "y")
2537 (substitute-command-keys "\\[Info-last]")
2538 (if (> num-matches 2) "them" "it")))))
2539 (error "Couldn't find documentation for %s" command))))
2541 ;;;###autoload
2542 (defun Info-goto-emacs-key-command-node (key)
2543 "Go to the node in the Emacs manual which describes the command bound to KEY.
2544 KEY is a string.
2545 Interactively, if the binding is `execute-extended-command', a command is read.
2546 The command is found by looking up in Emacs manual's indices
2547 or in another manual found via COMMAND's `info-file' property or
2548 the variable `Info-file-list-for-emacs'."
2549 (interactive "kFind documentation for key: ")
2550 (let ((command (key-binding key)))
2551 (cond ((null command)
2552 (message "%s is undefined" (key-description key)))
2553 ((and (interactive-p)
2554 (eq command 'execute-extended-command))
2555 (Info-goto-emacs-command-node
2556 (read-command "Find documentation for command: ")))
2558 (Info-goto-emacs-command-node command)))))
2560 (defface Info-title-1-face
2561 '((((type tty pc) (class color)) (:foreground "yellow" :weight bold))
2562 (t (:height 1.2 :inherit Info-title-2-face)))
2563 "Face for Info titles at level 1."
2564 :group 'info)
2566 (defface Info-title-2-face
2567 '((((type tty pc) (class color)) (:foreground "lightblue" :weight bold))
2568 (t (:height 1.2 :inherit Info-title-3-face)))
2569 "Face for Info titles at level 2."
2570 :group 'info)
2572 (defface Info-title-3-face
2573 '((((type tty pc) (class color)) (:weight bold))
2574 (t (:height 1.2 :inherit Info-title-4-face)))
2575 "Face for Info titles at level 3."
2576 :group 'info)
2578 (defface Info-title-4-face
2579 '((((type tty pc) (class color)) (:weight bold))
2580 (t (:weight bold :inherit variable-pitch)))
2581 "Face for Info titles at level 4."
2582 :group 'info)
2584 (defface info-menu-header
2585 '((((type tty pc))
2586 :underline t
2587 :weight bold)
2589 :inherit variable-pitch
2590 :weight bold))
2591 "Face for headers in Info menus."
2592 :group 'info)
2594 (defun Info-fontify-menu-headers ()
2595 "Add the face `info-menu-header' to any header before a menu entry."
2596 (save-excursion
2597 (goto-char (point-min))
2598 (when (re-search-forward "\\* Menu:" nil t)
2599 (put-text-property (match-beginning 0) (match-end 0)
2600 'category 'info-menu-header)
2601 (while (re-search-forward "\n\n\\([^*\n ].*\\)\n\n?[*]" nil t)
2602 (put-text-property (match-beginning 1) (match-end 1)
2603 'category 'info-menu-header)))))
2605 (defun Info-fontify-node ()
2606 ;; Only fontify the node if it hasn't already been done. [We pass in
2607 ;; LIMIT arg to `next-property-change' because it seems to search past
2608 ;; (point-max).]
2609 (unless (and (< (next-property-change (point-min) nil (point-max))
2610 (point-max))
2611 ;; But do put the text properties if the local-map property
2612 ;; is inconsistent with Info-use-header-line's value.
2614 (= (next-single-property-change
2615 (point-min) 'local-map nil (point-max))
2616 (point-max))
2617 (null Info-use-header-line)))
2618 (save-excursion
2619 (let ((buffer-read-only nil)
2620 (case-fold-search t))
2621 (goto-char (point-min))
2622 (when (looking-at "^File: [^,: \t]+,?[ \t]+")
2623 (goto-char (match-end 0))
2624 (while (looking-at "[ \t]*\\([^:, \t\n]+\\):[ \t]+\\([^:,\t\n]+\\),?")
2625 (goto-char (match-end 0))
2626 (let* ((nbeg (match-beginning 2))
2627 (nend (match-end 2))
2628 (tbeg (match-beginning 1))
2629 (tag (buffer-substring tbeg (match-end 1))))
2630 (if (string-equal tag "Node")
2631 (put-text-property nbeg nend 'category 'info-header-node)
2632 (put-text-property nbeg nend 'category 'info-header-xref)
2633 (put-text-property tbeg nend 'mouse-face 'highlight)
2634 (put-text-property tbeg nend
2635 'help-echo
2636 (concat "Go to node "
2637 (buffer-substring nbeg nend)))
2638 ;; Don't bind mouse events on the header line if we
2639 ;; aren't going to display the header line.
2640 (when Info-use-header-line
2641 (let ((fun (cdr (assoc tag '(("Prev" . Info-prev)
2642 ("Next" . Info-next)
2643 ("Up" . Info-up))))))
2644 (when fun
2645 (let ((keymap (make-sparse-keymap)))
2646 (define-key keymap [header-line mouse-1] fun)
2647 (define-key keymap [header-line mouse-2] fun)
2648 (put-text-property tbeg nend 'local-map keymap)))))
2649 (if (not Info-use-header-line)
2650 ;; In case they switched Info-use-header-line off
2651 ;; in the middle of an Info session, some text
2652 ;; properties may have been left lying around from
2653 ;; past visits of this node. Remove them.
2654 (remove-text-properties tbeg nend '(local-map nil)))
2655 ))))
2656 (goto-char (point-min))
2657 (while (re-search-forward "\n\\([^ \t\n].+\\)\n\\(\\*+\\|=+\\|-+\\|\\.+\\)$"
2658 nil t)
2659 (let* ((c (preceding-char))
2660 (category
2661 (cond ((= c ?*) 'Info-title-1-face)
2662 ((= c ?=) 'Info-title-2-face)
2663 ((= c ?-) 'Info-title-3-face)
2664 (t 'Info-title-4-face))))
2665 (put-text-property (match-beginning 1) (match-end 1)
2666 'category category))
2667 ;; This is a serious problem for trying to handle multiple
2668 ;; frame types at once. We want this text to be invisible
2669 ;; on frames that can display the font above.
2670 (when (memq (framep (selected-frame)) '(x pc w32 mac))
2671 (add-text-properties (match-beginning 2) (1+ (match-end 2))
2672 '(invisible t intangible t))))
2673 (goto-char (point-min))
2674 (while (re-search-forward "\\*Note[ \n\t]+\\([^:]*\\):" nil t)
2675 (if (= (char-after (1- (match-beginning 0))) ?\") ; hack
2677 (add-text-properties (match-beginning 1) (match-end 1)
2678 '(category info-xref
2679 mouse-face highlight
2680 help-echo "mouse-2: go to this node"))))
2681 (goto-char (point-min))
2682 (if (and (search-forward "\n* Menu:" nil t)
2683 (not (string-match "\\<Index\\>" Info-current-node))
2684 ;; Don't take time to annotate huge menus
2685 (< (- (point-max) (point)) Info-fontify-maximum-menu-size))
2686 (let ((n 0))
2687 (while (re-search-forward "^\\* +\\([^:\t\n]*\\):" nil t)
2688 (setq n (1+ n))
2689 (if (zerop (% n 3)) ; visual aids to help with 1-9 keys
2690 (put-text-property (match-beginning 0)
2691 (1+ (match-beginning 0))
2692 'category 'info-menu-5))
2693 (add-text-properties (match-beginning 1) (match-end 1)
2694 '(category info-xref
2695 mouse-face highlight
2696 help-echo "mouse-2: go to this node")))))
2697 (Info-fontify-menu-headers)
2698 (set-buffer-modified-p nil)))))
2701 ;; When an Info buffer is killed, make sure the associated tags buffer
2702 ;; is killed too.
2703 (defun Info-kill-buffer ()
2704 (and (eq major-mode 'Info-mode)
2705 Info-tag-table-buffer
2706 (kill-buffer Info-tag-table-buffer)))
2708 (add-hook 'kill-buffer-hook 'Info-kill-buffer)
2710 ;;; Speedbar support:
2711 ;; These functions permit speedbar to display the "tags" in the
2712 ;; current info node.
2713 (eval-when-compile (require 'speedbar))
2715 (defvar Info-speedbar-key-map nil
2716 "Keymap used when in the info display mode.")
2718 (defun Info-install-speedbar-variables ()
2719 "Install those variables used by speedbar to enhance Info."
2720 (if Info-speedbar-key-map
2722 (setq Info-speedbar-key-map (speedbar-make-specialized-keymap))
2724 ;; Basic tree features
2725 (define-key Info-speedbar-key-map "e" 'speedbar-edit-line)
2726 (define-key Info-speedbar-key-map "\C-m" 'speedbar-edit-line)
2727 (define-key Info-speedbar-key-map "+" 'speedbar-expand-line)
2728 (define-key Info-speedbar-key-map "-" 'speedbar-contract-line)
2731 (speedbar-add-expansion-list '("Info" Info-speedbar-menu-items
2732 Info-speedbar-key-map
2733 Info-speedbar-hierarchy-buttons)))
2735 (defvar Info-speedbar-menu-items
2736 '(["Browse Node" speedbar-edit-line t]
2737 ["Expand Node" speedbar-expand-line
2738 (save-excursion (beginning-of-line)
2739 (looking-at "[0-9]+: *.\\+. "))]
2740 ["Contract Node" speedbar-contract-line
2741 (save-excursion (beginning-of-line)
2742 (looking-at "[0-9]+: *.-. "))]
2744 "Additional menu-items to add to speedbar frame.")
2746 ;; Make sure our special speedbar major mode is loaded
2747 (if (featurep 'speedbar)
2748 (Info-install-speedbar-variables)
2749 (add-hook 'speedbar-load-hook 'Info-install-speedbar-variables))
2751 ;;; Info hierarchy display method
2752 ;;;###autoload
2753 (defun Info-speedbar-browser ()
2754 "Initialize speedbar to display an info node browser.
2755 This will add a speedbar major display mode."
2756 (interactive)
2757 (require 'speedbar)
2758 ;; Make sure that speedbar is active
2759 (speedbar-frame-mode 1)
2760 ;; Now, throw us into Info mode on speedbar.
2761 (speedbar-change-initial-expansion-list "Info")
2764 (eval-when-compile (defvar speedbar-attached-frame))
2766 (defun Info-speedbar-hierarchy-buttons (directory depth &optional node)
2767 "Display an Info directory hierarchy in speedbar.
2768 DIRECTORY is the current directory in the attached frame.
2769 DEPTH is the current indentation depth.
2770 NODE is an optional argument that is used to represent the
2771 specific node to expand."
2772 (if (and (not node)
2773 (save-excursion (goto-char (point-min))
2774 (let ((case-fold-search t))
2775 (looking-at "Info Nodes:"))))
2776 ;; Update our "current node" maybe?
2778 ;; We cannot use the generic list code, that depends on all leaves
2779 ;; being known at creation time.
2780 (if (not node)
2781 (speedbar-with-writable (insert "Info Nodes:\n")))
2782 (let ((completions nil)
2783 (cf (selected-frame)))
2784 (select-frame speedbar-attached-frame)
2785 (save-window-excursion
2786 (setq completions
2787 (Info-speedbar-fetch-file-nodes (or node '"(dir)top"))))
2788 (select-frame cf)
2789 (if completions
2790 (speedbar-with-writable
2791 (while completions
2792 (speedbar-make-tag-line 'bracket ?+ 'Info-speedbar-expand-node
2793 (cdr (car completions))
2794 (car (car completions))
2795 'Info-speedbar-goto-node
2796 (cdr (car completions))
2797 'info-xref depth)
2798 (setq completions (cdr completions)))
2800 nil))))
2802 (defun Info-speedbar-goto-node (text node indent)
2803 "When user clicks on TEXT, go to an info NODE.
2804 The INDENT level is ignored."
2805 (select-frame speedbar-attached-frame)
2806 (let* ((buff (or (get-buffer "*info*")
2807 (progn (info) (get-buffer "*info*"))))
2808 (bwin (get-buffer-window buff 0)))
2809 (if bwin
2810 (progn
2811 (select-window bwin)
2812 (raise-frame (window-frame bwin)))
2813 (if speedbar-power-click
2814 (let ((pop-up-frames t)) (select-window (display-buffer buff)))
2815 (select-frame speedbar-attached-frame)
2816 (switch-to-buffer buff)))
2817 (let ((junk (string-match "^(\\([^)]+\\))\\([^.]+\\)$" node))
2818 (file (match-string 1 node))
2819 (node (match-string 2 node)))
2820 (Info-find-node file node)
2821 ;; If we do a find-node, and we were in info mode, restore
2822 ;; the old default method. Once we are in info mode, it makes
2823 ;; sense to return to whatever method the user was using before.
2824 (if (string= speedbar-initial-expansion-list-name "Info")
2825 (speedbar-change-initial-expansion-list
2826 speedbar-previously-used-expansion-list-name)))))
2828 (defun Info-speedbar-expand-node (text token indent)
2829 "Expand the node the user clicked on.
2830 TEXT is the text of the button we clicked on, a + or - item.
2831 TOKEN is data related to this node (NAME . FILE).
2832 INDENT is the current indentation depth."
2833 (cond ((string-match "+" text) ;we have to expand this file
2834 (speedbar-change-expand-button-char ?-)
2835 (if (speedbar-with-writable
2836 (save-excursion
2837 (end-of-line) (forward-char 1)
2838 (Info-speedbar-hierarchy-buttons nil (1+ indent) token)))
2839 (speedbar-change-expand-button-char ?-)
2840 (speedbar-change-expand-button-char ??)))
2841 ((string-match "-" text) ;we have to contract this node
2842 (speedbar-change-expand-button-char ?+)
2843 (speedbar-delete-subblock indent))
2844 (t (error "Ooops... not sure what to do")))
2845 (speedbar-center-buffer-smartly))
2847 (defun Info-speedbar-fetch-file-nodes (nodespec)
2848 "Fetch the subnodes from the info NODESPEC.
2849 NODESPEC is a string of the form: (file)node.
2850 Optional THISFILE represends the filename of"
2851 (save-excursion
2852 ;; Set up a buffer we can use to fake-out Info.
2853 (set-buffer (get-buffer-create "*info-browse-tmp*"))
2854 (if (not (equal major-mode 'Info-mode))
2855 (Info-mode))
2856 ;; Get the node into this buffer
2857 (let ((junk (string-match "^(\\([^)]+\\))\\([^.]+\\)$" nodespec))
2858 (file (match-string 1 nodespec))
2859 (node (match-string 2 nodespec)))
2860 (Info-find-node file node))
2861 ;; Scan the created buffer
2862 (goto-char (point-min))
2863 (let ((completions nil)
2864 (case-fold-search t)
2865 (thisfile (progn (string-match "^(\\([^)]+\\))" nodespec)
2866 (match-string 1 nodespec))))
2867 ;; Always skip the first one...
2868 (re-search-forward "\n\\* \\([^:\t\n]*\\):" nil t)
2869 (while (re-search-forward "\n\\* \\([^:\t\n]*\\):" nil t)
2870 (let ((name (match-string 1)))
2871 (if (looking-at " *\\(([^)]+)[^.\n]+\\)\\.")
2872 (setq name (cons name (match-string 1)))
2873 (if (looking-at " *\\(([^)]+)\\)\\.")
2874 (setq name (cons name (concat (match-string 1) "Top")))
2875 (if (looking-at " \\([^.]+\\).")
2876 (setq name
2877 (cons name (concat "(" thisfile ")" (match-string 1))))
2878 (setq name (cons name (concat "(" thisfile ")" name))))))
2879 (setq completions (cons name completions))))
2880 (nreverse completions))))
2882 ;;; Info mode node listing
2883 (defun Info-speedbar-buttons (buffer)
2884 "Create a speedbar display to help navigation in an Info file.
2885 BUFFER is the buffer speedbar is requesting buttons for."
2886 (if (save-excursion (goto-char (point-min))
2887 (let ((case-fold-search t))
2888 (not (looking-at "Info Nodes:"))))
2889 (erase-buffer))
2890 (Info-speedbar-hierarchy-buttons nil 0)
2893 (dolist (mess '("^Node has no Previous$"
2894 "^No menu in this node$"
2895 "^Node has no Next$"
2896 "^No cross-references in this node^"
2897 search-failed
2898 "^No \".*\" in index$"))
2899 (add-to-list 'debug-ignored-errors mess))
2901 (provide 'info)
2903 ;;; info.el ends here