Merge from emacs-24; up to 2012-12-10T20:27:33Z!eggert@cs.ucla.edu
[emacs.git] / lisp / info.el
blobe230ed0f82c475e4b619c56df785b4730b46fc81
1 ;; info.el --- info package for Emacs
3 ;; Copyright (C) 1985-1986, 1992-2013 Free Software Foundation, Inc.
5 ;; Maintainer: FSF
6 ;; Keywords: help
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;; Commentary:
25 ;; Note that nowadays we expect Info files to be made using makeinfo.
26 ;; In particular we make these assumptions:
27 ;; - a menu item MAY contain colons but not colon-space ": "
28 ;; - a menu item ending with ": " (but not ":: ") is an index entry
29 ;; - a node name MAY NOT contain a colon
30 ;; This distinction is to support indexing of computer programming
31 ;; language terms that may contain ":" but not ": ".
33 ;;; Code:
35 (defgroup info nil
36 "Info subsystem."
37 :group 'help
38 :group 'docs)
41 (defvar Info-history nil
42 "Stack of Info nodes user has visited.
43 Each element of the stack is a list (FILENAME NODENAME BUFFERPOS).")
45 (defvar Info-history-forward nil
46 "Stack of Info nodes user has visited with `Info-history-back' command.
47 Each element of the stack is a list (FILENAME NODENAME BUFFERPOS).")
49 (defvar Info-history-list nil
50 "List of all Info nodes user has visited.
51 Each element of the list is a list (FILENAME NODENAME).")
53 (defcustom Info-history-skip-intermediate-nodes t
54 "Non-nil means don't record intermediate Info nodes to the history.
55 Intermediate Info nodes are nodes visited by Info internally in the process of
56 searching the node to display. Intermediate nodes are not presented
57 to the user."
58 :type 'boolean
59 :group 'info
60 :version "24.1")
62 (defcustom Info-enable-edit nil
63 "Non-nil means the \\<Info-mode-map>\\[Info-edit] command in Info can edit the current node.
64 This is convenient if you want to write Info files by hand.
65 However, we recommend that you not do this.
66 It is better to write a Texinfo file and generate the Info file from that,
67 because that gives you a printed manual as well."
68 :type 'boolean
69 :group 'info)
71 (defvar Info-enable-active-nodes nil
72 "Non-nil allows Info to execute Lisp code associated with nodes.
73 The Lisp code is executed when the node is selected.")
74 (put 'Info-enable-active-nodes 'risky-local-variable t)
76 (defface info-node
77 '((((class color) (background light)) :foreground "brown" :weight bold :slant italic)
78 (((class color) (background dark)) :foreground "white" :weight bold :slant italic)
79 (t :weight bold :slant italic))
80 "Face for Info node names."
81 :group 'info)
83 (defface info-title-1
84 '((((type tty pc) (class color) (background light))
85 :foreground "green" :weight bold)
86 (((type tty pc) (class color) (background dark))
87 :foreground "yellow" :weight bold)
88 (t :height 1.2 :inherit info-title-2))
89 "Face for info titles at level 1."
90 :group 'info)
91 (define-obsolete-face-alias 'Info-title-1-face 'info-title-1 "22.1")
93 (defface info-title-2
94 '((((type tty pc) (class color)) :foreground "lightblue" :weight bold)
95 (t :height 1.2 :inherit info-title-3))
96 "Face for info titles at level 2."
97 :group 'info)
98 (define-obsolete-face-alias 'Info-title-2-face 'info-title-2 "22.1")
100 (defface info-title-3
101 '((((type tty pc) (class color)) :weight bold)
102 (t :height 1.2 :inherit info-title-4))
103 "Face for info titles at level 3."
104 :group 'info)
105 (define-obsolete-face-alias 'Info-title-3-face 'info-title-3 "22.1")
107 (defface info-title-4
108 '((((type tty pc) (class color)) :weight bold)
109 (t :weight bold :inherit variable-pitch))
110 "Face for info titles at level 4."
111 :group 'info)
112 (define-obsolete-face-alias 'Info-title-4-face 'info-title-4 "22.1")
114 (defface info-menu-header
115 '((((type tty pc))
116 :underline t
117 :weight bold)
119 :inherit variable-pitch
120 :weight bold))
121 "Face for headers in Info menus."
122 :group 'info)
124 (defface info-menu-star
125 '((((class color)) :foreground "red1")
126 (t :underline t))
127 "Face for every third `*' in an Info menu."
128 :group 'info)
129 (define-obsolete-face-alias 'info-menu-5 'info-menu-star "22.1")
131 (defface info-xref
132 '((t :inherit link))
133 "Face for unvisited Info cross-references."
134 :group 'info)
136 (defface info-xref-visited
137 '((t :inherit (link-visited info-xref)))
138 "Face for visited Info cross-references."
139 :version "22.1"
140 :group 'info)
142 (defcustom Info-fontify-visited-nodes t
143 "Non-nil to fontify references to visited nodes in `info-xref-visited' face."
144 :version "22.1"
145 :type 'boolean
146 :group 'info)
148 (defcustom Info-fontify-maximum-menu-size 100000
149 "Maximum size of menu to fontify if `font-lock-mode' is non-nil.
150 Set to nil to disable node fontification."
151 :type 'integer
152 :group 'info)
154 (defcustom Info-use-header-line t
155 "Non-nil means to put the beginning-of-node links in an Emacs header-line.
156 A header-line does not scroll with the rest of the buffer."
157 :type 'boolean
158 :group 'info)
160 (defface info-header-xref
161 '((t :inherit info-xref))
162 "Face for Info cross-references in a node header."
163 :group 'info)
165 (defface info-header-node
166 '((t :inherit info-node))
167 "Face for Info nodes in a node header."
168 :group 'info)
170 ;; This is a defcustom largely so that we can get the benefit
171 ;; of custom-initialize-delay. Perhaps it would work to make it a
172 ;; defvar and explicitly give it a standard-value property, and
173 ;; call custom-initialize-delay on it.
174 ;; The progn forces the autoloader to include the whole thing, not
175 ;; just an abbreviated version.
176 ;;;###autoload
177 (progn
178 (defcustom Info-default-directory-list
179 (let* ((config-dir
180 (file-name-as-directory
181 ;; Self-contained NS build with info/ in the app-bundle.
182 (or (and (featurep 'ns)
183 (let ((dir (expand-file-name "../info" data-directory)))
184 (if (file-directory-p dir) dir)))
185 configure-info-directory)))
186 (prefixes
187 ;; Directory trees in which to look for info subdirectories
188 (prune-directory-list '("/usr/local/" "/usr/" "/opt/" "/")))
189 (suffixes
190 ;; Subdirectories in each directory tree that may contain info
191 ;; directories. Most of these are rather outdated.
192 ;; It ought to be fine to stop checking the "emacs" ones now,
193 ;; since this is Emacs and we have not installed info files
194 ;; into such directories for a looong time...
195 '("share/" "" "gnu/" "gnu/lib/" "gnu/lib/emacs/"
196 "emacs/" "lib/" "lib/emacs/"))
197 (standard-info-dirs
198 (apply #'nconc
199 (mapcar (lambda (pfx)
200 (let ((dirs
201 (mapcar (lambda (sfx)
202 (concat pfx sfx "info/"))
203 suffixes)))
204 (prune-directory-list dirs)))
205 prefixes)))
206 ;; If $(prefix)/share/info is not one of the standard info
207 ;; directories, they are probably installing an experimental
208 ;; version of Emacs, so make sure that experimental version's Info
209 ;; files override the ones in standard directories.
210 (dirs
211 (if (member config-dir standard-info-dirs)
212 ;; FIXME? What is the point of adding it again at the end
213 ;; when it is already present earlier in the list?
214 (nconc standard-info-dirs (list config-dir))
215 (cons config-dir standard-info-dirs))))
216 (if (not (eq system-type 'windows-nt))
217 dirs
218 ;; Include the info directory near where Emacs executable was installed.
219 (let* ((instdir (file-name-directory invocation-directory))
220 (dir1 (expand-file-name "../info/" instdir))
221 (dir2 (expand-file-name "../../../info/" instdir)))
222 (cond ((file-exists-p dir1) (append dirs (list dir1)))
223 ((file-exists-p dir2) (append dirs (list dir2)))
224 (t dirs)))))
226 "Default list of directories to search for Info documentation files.
227 They are searched in the order they are given in the list.
228 Therefore, the directory of Info files that come with Emacs
229 normally should come last (so that local files override standard ones),
230 unless Emacs is installed into a non-standard directory. In the latter
231 case, the directory of Info files that come with Emacs should be
232 first in this list.
234 Once Info is started, the list of directories to search
235 comes from the variable `Info-directory-list'.
236 This variable `Info-default-directory-list' is used as the default
237 for initializing `Info-directory-list' when Info is started, unless
238 the environment variable INFOPATH is set.
240 Although this is a customizable variable, that is mainly for technical
241 reasons. Normally, you should either set INFOPATH or customize
242 `Info-additional-directory-list', rather than changing this variable."
243 :initialize 'custom-initialize-delay
244 :type '(repeat directory)
245 :group 'info))
247 (defvar Info-directory-list nil
248 "List of directories to search for Info documentation files.
249 If nil, meaning not yet initialized, Info uses the environment
250 variable INFOPATH to initialize it, or `Info-default-directory-list'
251 if there is no INFOPATH variable in the environment, or the
252 concatenation of the two if INFOPATH ends with a `path-separator'.
254 When `Info-directory-list' is initialized from the value of
255 `Info-default-directory-list', and Emacs is installed in one of the
256 standard directories, the directory of Info files that come with Emacs
257 is put last (so that local Info files override standard ones).
259 When `Info-directory-list' is initialized from the value of
260 `Info-default-directory-list', and Emacs is not installed in one
261 of the standard directories, the first element of the resulting
262 list is the directory where Emacs installs the Info files that
263 come with it. This is so that Emacs's own manual, which suits the
264 version of Emacs you are using, will always be found first. This
265 is useful when you install an experimental version of Emacs without
266 removing the standard installation.
268 If you want to override the order of directories in
269 `Info-default-directory-list', set INFOPATH in the environment.
271 If you run the Emacs executable from the `src' directory in the Emacs
272 source tree, and INFOPATH is not defined, the `info' directory in the
273 source tree is used as the first element of `Info-directory-list', in
274 place of the installation Info directory. This is useful when you run
275 a version of Emacs without installing it.")
277 (defcustom Info-additional-directory-list nil
278 "List of additional directories to search for Info documentation files.
279 These directories are searched after those in `Info-directory-list'."
280 :type '(repeat directory)
281 :group 'info)
283 (defcustom Info-scroll-prefer-subnodes nil
284 "If non-nil, \\<Info-mode-map>\\[Info-scroll-up] in a menu visits subnodes.
286 If this is non-nil, and you scroll far enough in a node that its menu
287 appears on the screen, the next \\<Info-mode-map>\\[Info-scroll-up]
288 moves to a subnode indicated by the following menu item. This means
289 that you visit a subnode before getting to the end of the menu.
291 Setting this option to nil results in behavior similar to the stand-alone
292 Info reader program, which visits the first subnode from the menu only
293 when you hit the end of the current node."
294 :version "22.1"
295 :type 'boolean
296 :group 'info)
298 (defcustom Info-hide-note-references t
299 "If non-nil, hide the tag and section reference in *note and * menu items.
300 If value is non-nil but not `hide', also replaces the \"*note\" with \"see\".
301 If value is non-nil but not t or `hide', the reference section is still shown.
302 `nil' completely disables this feature. If this is non-nil, you might
303 want to set `Info-refill-paragraphs'."
304 :version "22.1"
305 :type '(choice (const :tag "No hiding" nil)
306 (const :tag "Replace tag and hide reference" t)
307 (const :tag "Hide tag and reference" hide)
308 (other :tag "Only replace tag" tag))
309 :set (lambda (sym val)
310 (set sym val)
311 (dolist (buffer (buffer-list))
312 (with-current-buffer buffer
313 (when (eq major-mode 'Info-mode)
314 (revert-buffer t t)))))
315 :group 'info)
317 (defcustom Info-refill-paragraphs nil
318 "If non-nil, attempt to refill paragraphs with hidden references.
319 This refilling may accidentally remove explicit line breaks in the Info
320 file, so be prepared for a few surprises if you enable this feature.
321 This only has an effect if `Info-hide-note-references' is non-nil."
322 :version "22.1"
323 :type 'boolean
324 :group 'info)
326 (defcustom Info-breadcrumbs-depth 4
327 "Depth of breadcrumbs to display.
328 0 means do not display breadcrumbs."
329 :version "23.1"
330 :type 'integer
331 :group 'info)
333 (defcustom Info-search-whitespace-regexp "\\s-+"
334 "If non-nil, regular expression to match a sequence of whitespace chars.
335 This applies to Info search for regular expressions.
336 You might want to use something like \"[ \\t\\r\\n]+\" instead.
337 In the Customization buffer, that is `[' followed by a space,
338 a tab, a carriage return (control-M), a newline, and `]+'."
339 :type 'regexp
340 :group 'info)
342 (defcustom Info-isearch-search t
343 "If non-nil, isearch in Info searches through multiple nodes.
344 Before leaving the initial Info node, where isearch was started,
345 it fails once with the error message [end of node], and with
346 subsequent C-s/C-r continues through other nodes without failing
347 with this error message in other nodes. When isearch fails for
348 the rest of the manual, it displays the error message [end of manual],
349 wraps around the whole manual and restarts the search from the top/final
350 node depending on search direction.
352 Setting this option to nil restores the default isearch behavior
353 with wrapping around the current Info node."
354 :version "22.1"
355 :type 'boolean
356 :group 'info)
358 (defvar Info-isearch-initial-node nil)
359 (defvar Info-isearch-initial-history nil)
360 (defvar Info-isearch-initial-history-list nil)
362 (defcustom Info-mode-hook
363 ;; Try to obey obsolete Info-fontify settings.
364 (unless (and (boundp 'Info-fontify) (null Info-fontify))
365 '(turn-on-font-lock))
366 "Hooks run when `Info-mode' is called."
367 :type 'hook
368 :group 'info)
370 (defcustom Info-selection-hook nil
371 "Hooks run when `Info-select-node' is called."
372 :type 'hook
373 :group 'info)
375 (defvar Info-edit-mode-hook nil
376 "Hooks run when `Info-edit-mode' is called.")
378 (defvar Info-current-file nil
379 "Info file that Info is now looking at, or nil.
380 This is the name that was specified in Info, not the actual file name.
381 It doesn't contain directory names or file name extensions added by Info.")
383 (defvar Info-current-subfile nil
384 "Info subfile that is actually in the *info* buffer now.
385 It is nil if current Info file is not split into subfiles.")
387 (defvar Info-current-node nil
388 "Name of node that Info is now looking at, or nil.")
390 (defvar Info-tag-table-marker nil
391 "Marker pointing at beginning of current Info file's tag table.
392 Marker points nowhere if file has no tag table.")
394 (defvar Info-tag-table-buffer nil
395 "Buffer used for indirect tag tables.")
397 (defvar Info-current-file-completions nil
398 "Cached completion list for current Info file.")
400 (defvar Info-file-completions nil
401 "Cached completion alist of visited Info files.
402 Each element of the alist is (FILE . COMPLETIONS)")
404 (defvar Info-file-supports-index-cookies nil
405 "Non-nil if current Info file supports index cookies.")
407 (defvar Info-file-supports-index-cookies-list nil
408 "List of Info files with information about index cookies support.
409 Each element of the list is a list (FILENAME SUPPORTS-INDEX-COOKIES)
410 where SUPPORTS-INDEX-COOKIES can be either t or nil.")
412 (defvar Info-index-alternatives nil
413 "List of possible matches for last `Info-index' command.")
415 (defvar Info-point-loc nil
416 "Point location within a selected node.
417 If string, the point is moved to the proper occurrence of the
418 name of the followed cross reference within a selected node.
419 If number, the point is moved to the corresponding line.")
421 (defvar Info-standalone nil
422 "Non-nil if Emacs was started solely as an Info browser.")
424 (defvar Info-file-attributes nil
425 "Alist of file attributes of visited Info files.
426 Each element is a list (FILE-NAME FILE-ATTRIBUTES...).")
428 (defvar Info-toc-nodes nil
429 "Alist of cached parent-children node information in visited Info files.
430 Each element is (FILE (NODE-NAME PARENT SECTION CHILDREN) ...)
431 where PARENT is the parent node extracted from the Up pointer,
432 SECTION is the section name in the Top node where this node is placed,
433 CHILDREN is a list of child nodes extracted from the node menu.")
435 (defvar Info-index-nodes nil
436 "Alist of cached index node names of visited Info files.
437 Each element has the form (INFO-FILE INDEX-NODE-NAMES-LIST).")
439 (defvar Info-virtual-files nil
440 "List of definitions of virtual Info files.
441 Each element of the list has the format (FILENAME (OPERATION . HANDLER) ...)
442 where FILENAME is a regexp that matches a class of virtual Info file names.
443 It should be carefully chosen to not cause file name clashes with
444 existing file names. OPERATION is one of the following operation
445 symbols `find-file', `find-node', `toc-nodes' that define what HANDLER
446 function to call instead of calling the default corresponding function
447 to override it.")
449 (defvar Info-virtual-nodes nil
450 "List of definitions of virtual Info nodes.
451 Each element of the list has the format (NODENAME (OPERATION . HANDLER) ...)
452 where NODENAME is a regexp that matches a class of virtual Info node names.
453 It should be carefully chosen to not cause node name clashes with
454 existing node names. OPERATION is one of the following operation
455 symbols `find-node' that define what HANDLER function to call instead
456 of calling the default corresponding function to override it.")
458 (defvar Info-current-node-virtual nil
459 "Non-nil if the current Info node is virtual.")
461 (defun Info-virtual-file-p (filename)
462 "Check if Info file FILENAME is virtual."
463 (Info-virtual-fun 'find-file filename nil))
465 (defun Info-virtual-fun (op filename nodename)
466 "Find a function that handles operations on virtual manuals.
467 OP is an operation symbol (`find-file', `find-node' or `toc-nodes'),
468 FILENAME is a virtual Info file name, NODENAME is a virtual Info
469 node name. Return a function found either in `Info-virtual-files'
470 or `Info-virtual-nodes'."
471 (or (and (stringp filename) ; some legacy code can still use a symbol
472 (cdr-safe (assoc op (assoc-default filename
473 Info-virtual-files
474 'string-match))))
475 (and (stringp nodename) ; some legacy code can still use a symbol
476 (cdr-safe (assoc op (assoc-default nodename
477 Info-virtual-nodes
478 'string-match))))))
480 (defun Info-virtual-call (virtual-fun &rest args)
481 "Call a function that handles operations on virtual manuals."
482 (when (functionp virtual-fun)
483 (or (apply virtual-fun args) t)))
486 (defvar Info-suffix-list
487 ;; The MS-DOS list should work both when long file names are
488 ;; supported (Windows 9X), and when only 8+3 file names are available.
489 (if (eq system-type 'ms-dos)
490 '( (".gz" . "gunzip")
491 (".z" . "gunzip")
492 (".bz2" . ("bzip2" "-dc"))
493 (".inz" . "gunzip")
494 (".igz" . "gunzip")
495 (".info.Z" . "gunzip")
496 (".info.gz" . "gunzip")
497 ("-info.Z" . "gunzip")
498 ("-info.gz" . "gunzip")
499 ("/index.gz" . "gunzip")
500 ("/index.z" . "gunzip")
501 (".inf" . nil)
502 (".info" . nil)
503 ("-info" . nil)
504 ("/index" . nil)
505 ("" . nil))
506 '( (".info.Z" . "uncompress")
507 (".info.Y" . "unyabba")
508 (".info.gz" . "gunzip")
509 (".info.z" . "gunzip")
510 (".info.bz2" . ("bzip2" "-dc"))
511 (".info.xz" . "unxz")
512 (".info" . nil)
513 ("-info.Z" . "uncompress")
514 ("-info.Y" . "unyabba")
515 ("-info.gz" . "gunzip")
516 ("-info.bz2" . ("bzip2" "-dc"))
517 ("-info.z" . "gunzip")
518 ("-info.xz" . "unxz")
519 ("-info" . nil)
520 ("/index.Z" . "uncompress")
521 ("/index.Y" . "unyabba")
522 ("/index.gz" . "gunzip")
523 ("/index.z" . "gunzip")
524 ("/index.bz2" . ("bzip2" "-dc"))
525 ("/index.xz" . "unxz")
526 ("/index" . nil)
527 (".Z" . "uncompress")
528 (".Y" . "unyabba")
529 (".gz" . "gunzip")
530 (".z" . "gunzip")
531 (".bz2" . ("bzip2" "-dc"))
532 (".xz" . "unxz")
533 ("" . nil)))
534 "List of file name suffixes and associated decoding commands.
535 Each entry should be (SUFFIX . STRING); the file is given to
536 the command as standard input.
538 STRING may be a list of strings. In that case, the first element is
539 the command name, and the rest are arguments to that command.
541 If STRING is nil, no decoding is done.
542 Because the SUFFIXes are tried in order, the empty string should
543 be last in the list.")
545 ;; Concatenate SUFFIX onto FILENAME. SUFFIX should start with a dot.
546 ;; First, on MS-DOS with no long file names support, delete some of
547 ;; the extension in FILENAME to make room.
548 (defun info-insert-file-contents-1 (filename suffix lfn)
549 (if lfn ; long file names are supported
550 (concat filename suffix)
551 (let* ((sans-exts (file-name-sans-extension filename))
552 ;; How long is the extension in FILENAME (not counting the dot).
553 (ext-len (max 0 (- (length filename) (length sans-exts) 1)))
554 ext-left)
555 ;; SUFFIX starts with a dot. If FILENAME already has one,
556 ;; get rid of the one in SUFFIX (unless suffix is empty).
557 (or (and (<= ext-len 0)
558 (not (eq (aref filename (1- (length filename))) ?.)))
559 (= (length suffix) 0)
560 (setq suffix (substring suffix 1)))
561 ;; How many chars of that extension should we keep?
562 (setq ext-left (min ext-len (max 0 (- 3 (length suffix)))))
563 ;; Get rid of the rest of the extension, and add SUFFIX.
564 (concat (substring filename 0 (- (length filename)
565 (- ext-len ext-left)))
566 suffix))))
568 (defun info-file-exists-p (filename)
569 (and (file-exists-p filename)
570 (not (file-directory-p filename))))
572 (defun info-insert-file-contents (filename &optional visit)
573 "Insert the contents of an Info file in the current buffer.
574 Do the right thing if the file has been compressed or zipped."
575 (let* ((tail Info-suffix-list)
576 (jka-compr-verbose nil)
577 (lfn (if (fboundp 'msdos-long-file-names)
578 (msdos-long-file-names)
580 (check-short (and (fboundp 'msdos-long-file-names)
581 lfn))
582 fullname decoder done)
583 (if (info-file-exists-p filename)
584 ;; FILENAME exists--see if that name contains a suffix.
585 ;; If so, set DECODE accordingly.
586 (progn
587 (while (and tail
588 (not (string-match
589 (concat (regexp-quote (car (car tail))) "$")
590 filename)))
591 (setq tail (cdr tail)))
592 (setq fullname filename
593 decoder (cdr (car tail))))
594 ;; Try adding suffixes to FILENAME and see if we can find something.
595 (while (and tail (not done))
596 (setq fullname (info-insert-file-contents-1 filename
597 (car (car tail)) lfn))
598 (if (info-file-exists-p fullname)
599 (setq done t
600 ;; If we found a file with a suffix, set DECODER
601 ;; according to the suffix.
602 decoder (cdr (car tail)))
603 ;; When the MS-DOS port runs on Windows, we need to check
604 ;; the short variant of a long file name as well.
605 (when check-short
606 (setq fullname (info-insert-file-contents-1 filename
607 (car (car tail)) nil))
608 (if (info-file-exists-p fullname)
609 (setq done t
610 decoder (cdr (car tail))))))
611 (setq tail (cdr tail)))
612 (or tail
613 (error "Can't find %s or any compressed version of it" filename)))
614 ;; check for conflict with jka-compr
615 (if (and (jka-compr-installed-p)
616 (jka-compr-get-compression-info fullname))
617 (setq decoder nil))
618 (if decoder
619 (progn
620 (insert-file-contents-literally fullname visit)
621 (let ((inhibit-read-only t)
622 (coding-system-for-write 'no-conversion)
623 (inhibit-null-byte-detection t) ; Index nodes include null bytes
624 (default-directory (or (file-name-directory fullname)
625 default-directory)))
626 (or (consp decoder)
627 (setq decoder (list decoder)))
628 (apply 'call-process-region (point-min) (point-max)
629 (car decoder) t t nil (cdr decoder))))
630 (let ((inhibit-null-byte-detection t)) ; Index nodes include null bytes
631 (insert-file-contents fullname visit)))
633 ;; Clear the caches of modified Info files.
634 (let* ((attribs-old (cdr (assoc fullname Info-file-attributes)))
635 (modtime-old (and attribs-old (nth 5 attribs-old)))
636 (attribs-new (and (stringp fullname) (file-attributes fullname)))
637 (modtime-new (and attribs-new (nth 5 attribs-new))))
638 (when (and modtime-old modtime-new
639 (> (float-time modtime-new) (float-time modtime-old)))
640 (setq Info-index-nodes (remove (assoc (or Info-current-file filename)
641 Info-index-nodes)
642 Info-index-nodes))
643 (setq Info-toc-nodes (remove (assoc (or Info-current-file filename)
644 Info-toc-nodes)
645 Info-toc-nodes)))
646 ;; Add new modtime to `Info-file-attributes'.
647 (setq Info-file-attributes
648 (cons (cons fullname attribs-new)
649 (remove (assoc fullname Info-file-attributes)
650 Info-file-attributes))))))
652 (defun Info-file-supports-index-cookies (&optional file)
653 "Return non-nil value if FILE supports Info index cookies.
654 Info index cookies were first introduced in 4.7, and all later
655 makeinfo versions output them in index nodes, so we can rely
656 solely on the makeinfo version. This function caches the information
657 in `Info-file-supports-index-cookies-list'."
658 (or file (setq file Info-current-file))
659 (or (assoc file Info-file-supports-index-cookies-list)
660 ;; Skip virtual Info files
661 (and (or (not (stringp file))
662 (Info-virtual-file-p file))
663 (setq Info-file-supports-index-cookies-list
664 (cons (cons file nil) Info-file-supports-index-cookies-list)))
665 (save-excursion
666 (let ((found nil))
667 (goto-char (point-min))
668 (condition-case ()
669 (if (and (re-search-forward
670 "makeinfo[ \n]version[ \n]\\([0-9]+.[0-9]+\\)"
671 (line-beginning-position 4) t)
672 (not (version< (match-string 1) "4.7")))
673 (setq found t))
674 (error nil))
675 (setq Info-file-supports-index-cookies-list
676 (cons (cons file found) Info-file-supports-index-cookies-list)))))
677 (cdr (assoc file Info-file-supports-index-cookies-list)))
680 (defun Info-default-dirs ()
681 (let ((source (expand-file-name "info/" source-directory))
682 (sibling (if installation-directory
683 (expand-file-name "info/" installation-directory)
684 (if invocation-directory
685 (let ((infodir (expand-file-name
686 "../share/info/"
687 invocation-directory)))
688 (if (file-exists-p infodir)
689 infodir
690 (setq infodir (expand-file-name
691 "../../../share/info/"
692 invocation-directory))
693 (and (file-exists-p infodir)
694 infodir))))))
695 alternative)
696 (setq alternative
697 (if (and sibling (file-exists-p sibling))
698 ;; Uninstalled, Emacs builddir != srcdir.
699 sibling
700 ;; Uninstalled, builddir == srcdir
701 source))
702 (if (or (member alternative Info-default-directory-list)
703 ;; On DOS/NT, we use movable executables always,
704 ;; and we must always find the Info dir at run time.
705 (if (memq system-type '(ms-dos windows-nt))
707 ;; Use invocation-directory for Info
708 ;; only if we used it for exec-directory also.
709 (not (string= exec-directory
710 (expand-file-name "lib-src/"
711 installation-directory))))
712 (not (file-exists-p alternative)))
713 Info-default-directory-list
714 ;; `alternative' contains the Info files that came with this
715 ;; version, so we should look there first. `Info-insert-dir'
716 ;; currently expects to find `alternative' first on the list.
717 (cons alternative
718 ;; Don't drop the last part, it might contain non-Emacs stuff.
719 ;; (reverse (cdr (reverse
720 Info-default-directory-list)))) ;; )))
722 (defun info-initialize ()
723 "Initialize `Info-directory-list', if that hasn't been done yet."
724 (unless Info-directory-list
725 (let ((path (getenv "INFOPATH"))
726 (sep (regexp-quote path-separator)))
727 (setq Info-directory-list
728 (prune-directory-list
729 (if path
730 (if (string-match-p (concat sep "\\'") path)
731 (append (split-string (substring path 0 -1) sep)
732 (Info-default-dirs))
733 (split-string path sep))
734 (Info-default-dirs))))
735 ;; For a self-contained (ie relocatable) NS build, AFAICS we
736 ;; always want the included info directory to be at the head of
737 ;; the search path, unless it's already in INFOPATH somewhere.
738 ;; It's at the head of Info-default-directory-list,
739 ;; but there's no way to get it at the head of Info-directory-list
740 ;; except by doing it here.
741 (and path
742 (featurep 'ns)
743 (let ((dir (expand-file-name "../info" data-directory)))
744 (and (file-directory-p dir)
745 (not (member dir (split-string path ":" t)))
746 (push dir Info-directory-list)))))))
748 ;;;###autoload
749 (defun info-other-window (&optional file-or-node buffer)
750 "Like `info' but show the Info buffer in another window."
751 (interactive (list
752 (if (and current-prefix-arg (not (numberp current-prefix-arg)))
753 (read-file-name "Info file name: " nil nil t))
754 (if (numberp current-prefix-arg)
755 (format "*info*<%s>" current-prefix-arg))))
756 (info-setup file-or-node
757 (switch-to-buffer-other-window (or buffer "*info*"))))
759 ;;;###autoload (put 'info 'info-file (purecopy "emacs"))
760 ;;;###autoload
761 (defun info (&optional file-or-node buffer)
762 "Enter Info, the documentation browser.
763 Optional argument FILE-OR-NODE specifies the file to examine;
764 the default is the top-level directory of Info.
765 Called from a program, FILE-OR-NODE may specify an Info node of the form
766 \"(FILENAME)NODENAME\".
767 Optional argument BUFFER specifies the Info buffer name;
768 the default buffer name is *info*. If BUFFER exists,
769 just switch to BUFFER. Otherwise, create a new buffer
770 with the top-level Info directory.
772 In interactive use, a non-numeric prefix argument directs
773 this command to read a file name from the minibuffer.
775 A numeric prefix argument N selects an Info buffer named
776 \"*info*<%s>\".
778 The search path for Info files is in the variable `Info-directory-list'.
779 The top-level Info directory is made by combining all the files named `dir'
780 in all the directories in that path.
782 See a list of available Info commands in `Info-mode'."
783 (interactive (list
784 (if (and current-prefix-arg (not (numberp current-prefix-arg)))
785 (read-file-name "Info file name: " nil nil t))
786 (if (numberp current-prefix-arg)
787 (format "*info*<%s>" current-prefix-arg))))
788 (info-setup file-or-node
789 (pop-to-buffer-same-window (or buffer "*info*"))))
791 (defun info-setup (file-or-node buffer)
792 "Display Info node FILE-OR-NODE in BUFFER."
793 (if (and buffer (not (eq major-mode 'Info-mode)))
794 (Info-mode))
795 (if file-or-node
796 ;; If argument already contains parentheses, don't add another set
797 ;; since the argument will then be parsed improperly. This also
798 ;; has the added benefit of allowing node names to be included
799 ;; following the parenthesized filename.
800 (Info-goto-node
801 (if (and (stringp file-or-node) (string-match "(.*)" file-or-node))
802 file-or-node
803 (concat "(" file-or-node ")")))
804 (if (and (zerop (buffer-size))
805 (null Info-history))
806 ;; If we just created the Info buffer, go to the directory.
807 (Info-directory))))
809 ;;;###autoload
810 (defun info-emacs-manual ()
811 "Display the Emacs manual in Info mode."
812 (interactive)
813 (info "emacs"))
815 ;;;###autoload
816 (defun info-emacs-bug ()
817 "Display the \"Reporting Bugs\" section of the Emacs manual in Info mode."
818 (interactive)
819 (info "(emacs)Bugs"))
821 ;;;###autoload
822 (defun info-standalone ()
823 "Run Emacs as a standalone Info reader.
824 Usage: emacs -f info-standalone [filename]
825 In standalone mode, \\<Info-mode-map>\\[Info-exit] exits Emacs itself."
826 (setq Info-standalone t)
827 (if (and command-line-args-left
828 (not (string-match "^-" (car command-line-args-left))))
829 (condition-case err
830 (progn
831 (info (car command-line-args-left))
832 (setq command-line-args-left (cdr command-line-args-left)))
833 (error (send-string-to-terminal
834 (format "%s\n" (if (eq (car-safe err) 'error)
835 (nth 1 err) err)))
836 (save-buffers-kill-emacs)))
837 (info)))
839 ;; See if the accessible portion of the buffer begins with a node
840 ;; delimiter, and the node header line which follows matches REGEXP.
841 ;; Typically, this test will be followed by a loop that examines the
842 ;; rest of the buffer with (search-forward "\n\^_"), and it's a pity
843 ;; to have the overhead of this special test inside the loop.
845 ;; This function changes match-data, but supposedly the caller might
846 ;; want to use the results of re-search-backward.
848 ;; The return value is the value of point at the beginning of matching
849 ;; REGEXP, if the function succeeds, nil otherwise.
850 (defun Info-node-at-bob-matching (regexp)
851 (and (bobp) ; are we at beginning of buffer?
852 (looking-at "\^_") ; does it begin with node delimiter?
853 (let (beg)
854 (forward-line 1)
855 (setq beg (point))
856 (forward-line 1) ; does the line after delimiter match REGEXP?
857 (re-search-backward regexp beg t))))
859 (defun Info-find-file (filename &optional noerror)
860 "Return expanded FILENAME, or t if FILENAME is \"dir\".
861 Optional second argument NOERROR, if t, means if file is not found
862 just return nil (no error)."
863 ;; Convert filename to lower case if not found as specified.
864 ;; Expand it.
865 (cond
866 ((Info-virtual-call
867 (Info-virtual-fun 'find-file filename nil)
868 filename noerror))
869 ((stringp filename)
870 (let (temp temp-downcase found)
871 (setq filename (substitute-in-file-name filename))
872 (let ((dirs (if (string-match "^\\./" filename)
873 ;; If specified name starts with `./'
874 ;; then just try current directory.
875 '("./")
876 (if (file-name-absolute-p filename)
877 ;; No point in searching for an
878 ;; absolute file name
879 '(nil)
880 (if Info-additional-directory-list
881 (append Info-directory-list
882 Info-additional-directory-list)
883 Info-directory-list)))))
884 ;; Fall back on the installation directory if we can't find
885 ;; the info node anywhere else.
886 (when installation-directory
887 (setq dirs (append dirs (list (expand-file-name
888 "info" installation-directory)))))
889 ;; Search the directory list for file FILENAME.
890 (while (and dirs (not found))
891 (setq temp (expand-file-name filename (car dirs)))
892 (setq temp-downcase
893 (expand-file-name (downcase filename) (car dirs)))
894 ;; Try several variants of specified name.
895 (let ((suffix-list Info-suffix-list)
896 (lfn (if (fboundp 'msdos-long-file-names)
897 (msdos-long-file-names)
898 t)))
899 (while (and suffix-list (not found))
900 (cond ((info-file-exists-p
901 (info-insert-file-contents-1
902 temp (car (car suffix-list)) lfn))
903 (setq found temp))
904 ((info-file-exists-p
905 (info-insert-file-contents-1
906 temp-downcase (car (car suffix-list)) lfn))
907 (setq found temp-downcase))
908 ((and (fboundp 'msdos-long-file-names)
910 (info-file-exists-p
911 (info-insert-file-contents-1
912 temp (car (car suffix-list)) nil)))
913 (setq found temp)))
914 (setq suffix-list (cdr suffix-list))))
915 (setq dirs (cdr dirs))))
916 (if found
917 (setq filename found)
918 (if noerror
919 (setq filename nil)
920 (error "Info file %s does not exist" filename)))
921 filename))))
923 (defun Info-find-node (filename nodename &optional no-going-back)
924 "Go to an Info node specified as separate FILENAME and NODENAME.
925 NO-GOING-BACK is non-nil if recovering from an error in this function;
926 it says do not attempt further (recursive) error recovery."
927 (info-initialize)
928 (setq filename (Info-find-file filename))
929 ;; Go into Info buffer.
930 (or (eq major-mode 'Info-mode) (switch-to-buffer "*info*"))
931 ;; Record the node we are leaving, if we were in one.
932 (and (not no-going-back)
933 Info-current-file
934 (push (list Info-current-file Info-current-node (point))
935 Info-history))
936 (Info-find-node-2 filename nodename no-going-back))
938 ;;;###autoload
939 (defun Info-on-current-buffer (&optional nodename)
940 "Use Info mode to browse the current Info buffer.
941 With a prefix arg, this queries for the node name to visit first;
942 otherwise, that defaults to `Top'."
943 (interactive
944 (list (if current-prefix-arg
945 (completing-read "Node name: " (Info-build-node-completions)
946 nil t "Top"))))
947 (unless nodename (setq nodename "Top"))
948 (info-initialize)
949 (Info-mode)
950 (set (make-local-variable 'Info-current-file)
951 (or buffer-file-name
952 ;; If called on a non-file buffer, make a fake file name.
953 (concat default-directory (buffer-name))))
954 (Info-find-node-2 nil nodename))
956 (defun Info-revert-find-node (filename nodename)
957 "Go to an Info node FILENAME and NODENAME, re-reading disk contents.
958 When *info* is already displaying FILENAME and NODENAME, the window position
959 is preserved, if possible."
960 (or (eq major-mode 'Info-mode) (switch-to-buffer "*info*"))
961 (let ((old-filename Info-current-file)
962 (old-nodename Info-current-node)
963 (window-selected (eq (selected-window) (get-buffer-window)))
964 (pcolumn (current-column))
965 (pline (count-lines (point-min) (line-beginning-position)))
966 (wline (count-lines (point-min) (window-start)))
967 (new-history (and Info-current-file
968 (list Info-current-file Info-current-node (point)))))
969 ;; When `Info-current-file' is nil, `Info-find-node-2' rereads the file.
970 (setq Info-current-file nil)
971 (Info-find-node filename nodename)
972 (if (and (equal old-filename Info-current-file)
973 (equal old-nodename Info-current-node))
974 (progn
975 ;; note goto-line is no good, we want to measure from point-min
976 (when window-selected
977 (goto-char (point-min))
978 (forward-line wline)
979 (set-window-start (selected-window) (point)))
980 (goto-char (point-min))
981 (forward-line pline)
982 (move-to-column pcolumn))
983 ;; only add to the history when coming from a different file+node
984 (if new-history
985 (setq Info-history (cons new-history Info-history))))))
987 (defun Info-revert-buffer-function (_ignore-auto noconfirm)
988 (when (or noconfirm (y-or-n-p "Revert info buffer? "))
989 (Info-revert-find-node Info-current-file Info-current-node)
990 (message "Reverted %s" Info-current-file)))
992 (defun Info-find-in-tag-table-1 (marker regexp case-fold)
993 "Find a node in a tag table.
994 MARKER specifies the buffer and position to start searching at.
995 REGEXP is a regular expression matching nodes or references. Its first
996 group should match `Node:' or `Ref:'.
997 CASE-FOLD t means search for a case-insensitive match.
998 If a match was found, value is a list (FOUND-ANCHOR POS MODE), where
999 FOUND-ANCHOR is non-nil if a `Ref:' was matched, POS is the position
1000 where the match was found, and MODE is `major-mode' of the buffer in
1001 which the match was found."
1002 (let ((case-fold-search case-fold))
1003 (with-current-buffer (marker-buffer marker)
1004 (goto-char marker)
1006 ;; Search tag table
1007 (beginning-of-line)
1008 (when (re-search-forward regexp nil t)
1009 (list (string-equal "Ref:" (match-string 1))
1010 (+ (point-min) (read (current-buffer)))
1011 major-mode)))))
1013 (defun Info-find-in-tag-table (marker regexp)
1014 "Find a node in a tag table.
1015 MARKER specifies the buffer and position to start searching at.
1016 REGEXP is a regular expression matching nodes or references. Its first
1017 group should match `Node:' or `Ref:'.
1018 If a match was found, value is a list (FOUND-ANCHOR POS MODE), where
1019 FOUND-ANCHOR is non-nil if a `Ref:' was matched, POS is the position
1020 where the match was found, and MODE is `major-mode' of the buffer in
1021 which the match was found.
1022 This function tries to find a case-sensitive match first, then a
1023 case-insensitive match is tried."
1024 (let ((result (Info-find-in-tag-table-1 marker regexp nil)))
1025 (when (null (car result))
1026 (setq result (Info-find-in-tag-table-1 marker regexp t)))
1027 result))
1029 (defun Info-find-node-in-buffer-1 (regexp case-fold)
1030 "Find a node or anchor in the current buffer.
1031 REGEXP is a regular expression matching nodes or references. Its first
1032 group should match `Node:' or `Ref:'.
1033 CASE-FOLD t means search for a case-insensitive match.
1034 Value is the position at which a match was found, or nil if not found."
1035 (let ((case-fold-search case-fold)
1036 found)
1037 (save-excursion
1038 (if (Info-node-at-bob-matching regexp)
1039 (setq found (point))
1040 (while (and (not found)
1041 (search-forward "\n\^_" nil t))
1042 (forward-line 1)
1043 (let ((beg (point)))
1044 (forward-line 1)
1045 (if (re-search-backward regexp beg t)
1046 (setq found (line-beginning-position)))))))
1047 found))
1049 (defun Info-find-node-in-buffer (regexp)
1050 "Find a node or anchor in the current buffer.
1051 REGEXP is a regular expression matching nodes or references. Its first
1052 group should match `Node:' or `Ref:'.
1053 Value is the position at which a match was found, or nil if not found.
1054 This function looks for a case-sensitive match first. If none is found,
1055 a case-insensitive match is tried."
1056 (or (Info-find-node-in-buffer-1 regexp nil)
1057 (Info-find-node-in-buffer-1 regexp t)))
1059 (defun Info-find-node-2 (filename nodename &optional no-going-back)
1060 (buffer-disable-undo (current-buffer))
1061 (or (eq major-mode 'Info-mode)
1062 (Info-mode))
1063 (widen)
1064 (setq Info-current-node nil)
1065 (unwind-protect
1066 (let ((case-fold-search t)
1067 (virtual-fun (Info-virtual-fun 'find-node
1068 (or filename Info-current-file)
1069 nodename))
1070 anchorpos)
1071 (cond
1072 ((functionp virtual-fun)
1073 (let ((filename (or filename Info-current-file)))
1074 (setq buffer-read-only nil)
1075 (setq Info-current-file filename
1076 Info-current-subfile nil
1077 Info-current-file-completions nil
1078 buffer-file-name nil)
1079 (erase-buffer)
1080 (Info-virtual-call virtual-fun filename nodename no-going-back)
1081 (set-marker Info-tag-table-marker nil)
1082 (setq buffer-read-only t)
1083 (set-buffer-modified-p nil)
1084 (set (make-local-variable 'Info-current-node-virtual) t)))
1085 ((not (and
1086 ;; Reread a file when moving from a virtual node.
1087 (not Info-current-node-virtual)
1088 (or (null filename)
1089 (equal Info-current-file filename))))
1090 ;; Switch files if necessary
1091 (let ((inhibit-read-only t))
1092 (when Info-current-node-virtual
1093 ;; When moving from a virtual node.
1094 (set (make-local-variable 'Info-current-node-virtual) nil)
1095 (if (null filename)
1096 (setq filename Info-current-file)))
1097 (setq Info-current-file nil
1098 Info-current-subfile nil
1099 Info-current-file-completions nil
1100 buffer-file-name nil)
1101 (erase-buffer)
1102 (info-insert-file-contents filename nil)
1103 (setq default-directory (file-name-directory filename))
1104 (set-buffer-modified-p nil)
1105 (set (make-local-variable 'Info-file-supports-index-cookies)
1106 (Info-file-supports-index-cookies filename))
1108 ;; See whether file has a tag table. Record the location if yes.
1109 (goto-char (point-max))
1110 (forward-line -8)
1111 ;; Use string-equal, not equal, to ignore text props.
1112 (if (not (or (string-equal nodename "*")
1113 (not
1114 (search-forward "\^_\nEnd tag table\n" nil t))))
1115 (let (pos)
1116 ;; We have a tag table. Find its beginning.
1117 ;; Is this an indirect file?
1118 (search-backward "\nTag table:\n")
1119 (setq pos (point))
1120 (if (save-excursion
1121 (forward-line 2)
1122 (looking-at "(Indirect)\n"))
1123 ;; It is indirect. Copy it to another buffer
1124 ;; and record that the tag table is in that buffer.
1125 (let ((buf (current-buffer))
1126 (tagbuf
1127 (or Info-tag-table-buffer
1128 (generate-new-buffer " *info tag table*"))))
1129 (setq Info-tag-table-buffer tagbuf)
1130 (with-current-buffer tagbuf
1131 (buffer-disable-undo (current-buffer))
1132 (setq case-fold-search t)
1133 (erase-buffer)
1134 (insert-buffer-substring buf))
1135 (set-marker Info-tag-table-marker
1136 (match-end 0) tagbuf))
1137 (set-marker Info-tag-table-marker pos)))
1138 (set-marker Info-tag-table-marker nil))
1139 (setq Info-current-file filename)
1142 ;; Use string-equal, not equal, to ignore text props.
1143 (if (string-equal nodename "*")
1144 (progn (setq Info-current-node nodename)
1145 (Info-set-mode-line))
1146 ;; Possibilities:
1148 ;; 1. Anchor found in tag table
1149 ;; 2. Anchor *not* in tag table
1151 ;; 3. Node found in tag table
1152 ;; 4. Node *not* found in tag table, but found in file
1153 ;; 5. Node *not* in tag table, and *not* in file
1155 ;; *Or* the same, but in an indirect subfile.
1157 ;; Search file for a suitable node.
1158 (let ((guesspos (point-min))
1159 (regexp (concat "\\(Node:\\|Ref:\\) *\\("
1160 (if (stringp nodename)
1161 (regexp-quote nodename)
1163 "\\) *[,\t\n\177]")))
1165 (catch 'foo
1167 ;; First, search a tag table, if any
1168 (when (marker-position Info-tag-table-marker)
1169 (let* ((m Info-tag-table-marker)
1170 (found (Info-find-in-tag-table m regexp)))
1172 (when found
1173 ;; FOUND is (ANCHOR POS MODE).
1174 (setq guesspos (nth 1 found))
1176 ;; If this is an indirect file, determine which
1177 ;; file really holds this node and read it in.
1178 (unless (eq (nth 2 found) 'Info-mode)
1179 ;; Note that the current buffer must be the
1180 ;; *info* buffer on entry to
1181 ;; Info-read-subfile. Thus the hackery above.
1182 (setq guesspos (Info-read-subfile guesspos)))
1184 ;; Handle anchor
1185 (when (nth 0 found)
1186 (goto-char (setq anchorpos guesspos))
1187 (throw 'foo t)))))
1189 ;; Else we may have a node, which we search for:
1190 (goto-char (max (point-min)
1191 (- (byte-to-position guesspos) 1000)))
1193 ;; Now search from our advised position (or from beg of
1194 ;; buffer) to find the actual node. First, check
1195 ;; whether the node is right where we are, in case the
1196 ;; buffer begins with a node.
1197 (let ((pos (Info-find-node-in-buffer regexp)))
1198 (when pos
1199 (goto-char pos)
1200 (throw 'foo t)))
1202 (when (string-match "\\([^.]+\\)\\." nodename)
1203 (let (Info-point-loc)
1204 (Info-find-node-2
1205 filename (match-string 1 nodename) no-going-back))
1206 (widen)
1207 (throw 'foo t))
1209 ;; No such anchor in tag table or node in tag table or file
1210 (user-error "No such node or anchor: %s" nodename))
1212 (Info-select-node)
1213 (goto-char (point-min))
1214 (forward-line 1) ; skip header line
1215 ;; (when (> Info-breadcrumbs-depth 0) ; skip breadcrumbs line
1216 ;; (forward-line 1))
1218 (cond (anchorpos
1219 (let ((new-history (list Info-current-file
1220 (substring-no-properties nodename))))
1221 ;; Add anchors to the history too
1222 (setq Info-history-list
1223 (cons new-history
1224 (remove new-history Info-history-list))))
1225 (goto-char anchorpos))
1226 ((numberp Info-point-loc)
1227 (forward-line (- Info-point-loc 2))
1228 (setq Info-point-loc nil))
1229 ((stringp Info-point-loc)
1230 (Info-find-index-name Info-point-loc)
1231 (setq Info-point-loc nil))))))
1232 ;; If we did not finish finding the specified node,
1233 ;; go back to the previous one.
1234 (or Info-current-node no-going-back (null Info-history)
1235 (let ((hist (car Info-history)))
1236 (setq Info-history (cdr Info-history))
1237 (Info-find-node (nth 0 hist) (nth 1 hist) t)
1238 (goto-char (nth 2 hist))))))
1240 ;; Cache the contents of the (virtual) dir file, once we have merged
1241 ;; it for the first time, so we can save time subsequently.
1242 (defvar Info-dir-contents nil)
1244 ;; Cache for the directory we decided to use for the default-directory
1245 ;; of the merged dir text.
1246 (defvar Info-dir-contents-directory nil)
1248 ;; Record the file attributes of all the files from which we
1249 ;; constructed Info-dir-contents.
1250 (defvar Info-dir-file-attributes nil)
1252 (defvar Info-dir-file-name nil)
1254 ;; Construct the Info directory node by merging the files named `dir'
1255 ;; from various directories. Set the *info* buffer's
1256 ;; default-directory to the first directory we actually get any text
1257 ;; from.
1258 (defun Info-insert-dir ()
1259 (if (and Info-dir-contents Info-dir-file-attributes
1260 ;; Verify that none of the files we used has changed
1261 ;; since we used it.
1262 (eval (cons 'and
1263 (mapcar (lambda (elt)
1264 (let ((curr (file-attributes
1265 ;; Handle symlinks
1266 (file-truename (car elt)))))
1268 ;; Don't compare the access time.
1269 (if curr (setcar (nthcdr 4 curr) 0))
1270 (setcar (nthcdr 4 (cdr elt)) 0)
1271 (equal (cdr elt) curr)))
1272 Info-dir-file-attributes))))
1273 (progn
1274 (insert Info-dir-contents)
1275 (goto-char (point-min)))
1276 (let ((dirs (if Info-additional-directory-list
1277 (append Info-directory-list
1278 Info-additional-directory-list)
1279 Info-directory-list))
1280 (dir-file-attrs nil)
1281 ;; Bind this in case the user sets it to nil.
1282 (case-fold-search t)
1283 ;; This is set non-nil if we find a problem in some input files.
1284 problems
1285 buffers buffer others nodes dirs-done)
1287 ;; Search the directory list for the directory file.
1288 (while dirs
1289 (let ((truename (file-truename (expand-file-name (car dirs)))))
1290 (or (member truename dirs-done)
1291 (member (directory-file-name truename) dirs-done)
1292 ;; Try several variants of specified name.
1293 ;; Try upcasing, appending `.info', or both.
1294 (let* (file
1295 (attrs
1297 (progn (setq file (expand-file-name "dir" truename))
1298 (file-attributes file))
1299 (progn (setq file (expand-file-name "DIR" truename))
1300 (file-attributes file))
1301 (progn (setq file (expand-file-name "dir.info" truename))
1302 (file-attributes file))
1303 (progn (setq file (expand-file-name "DIR.INFO" truename))
1304 (file-attributes file))
1305 ;; Shouldn't really happen, but sometimes does,
1306 ;; eg on Debian systems with buggy packages;
1307 ;; so may as well try it.
1308 ;; http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00005.html
1309 (progn (setq file (expand-file-name "dir.gz" truename))
1310 (file-attributes file)))))
1311 (setq dirs-done
1312 (cons truename
1313 (cons (directory-file-name truename)
1314 dirs-done)))
1315 (if attrs
1316 (with-current-buffer (generate-new-buffer " info dir")
1317 (or buffers
1318 (message "Composing main Info directory..."))
1319 (condition-case nil
1320 ;; Index nodes include null bytes. DIR
1321 ;; files should not have indices, but who
1322 ;; knows...
1323 (let ((inhibit-null-byte-detection t))
1324 (insert-file-contents file)
1325 (set (make-local-variable 'Info-dir-file-name)
1326 file)
1327 (push (current-buffer) buffers)
1328 (push (cons file attrs) dir-file-attrs))
1329 (error (kill-buffer (current-buffer))))))))
1330 (unless (cdr dirs)
1331 (set (make-local-variable 'Info-dir-contents-directory)
1332 (file-name-as-directory (car dirs))))
1333 (setq dirs (cdr dirs))))
1335 (or buffers
1336 (error "Can't find the Info directory node"))
1338 ;; Distinguish the dir file that comes with Emacs from all the
1339 ;; others. Yes, that is really what this is supposed to do.
1340 ;; The definition of `Info-directory-list' puts it first on that
1341 ;; list and so last in `buffers' at this point.
1342 (setq buffer (car (last buffers))
1343 others (delq buffer buffers))
1345 ;; Insert the entire original dir file as a start; note that we've
1346 ;; already saved its default directory to use as the default
1347 ;; directory for the whole concatenation.
1348 (save-excursion (insert-buffer-substring buffer))
1350 ;; Look at each of the other buffers one by one.
1351 (dolist (other others)
1352 (let (this-buffer-nodes)
1353 ;; In each, find all the menus.
1354 (with-current-buffer other
1355 (goto-char (point-min))
1356 ;; Find each menu, and add an elt to NODES for it.
1357 (while (re-search-forward "^\\* Menu:" nil t)
1358 (while (and (zerop (forward-line 1)) (eolp)))
1359 (let ((beg (point))
1360 nodename end)
1361 (re-search-backward "^\^_")
1362 (search-forward "Node: ")
1363 (setq nodename (Info-following-node-name))
1364 (search-forward "\n\^_" nil 'move)
1365 (beginning-of-line)
1366 (setq end (point))
1367 (push (list nodename other beg end) this-buffer-nodes)))
1368 (if (assoc-string "top" this-buffer-nodes t)
1369 (setq nodes (nconc this-buffer-nodes nodes))
1370 (setq problems t)
1371 (message "No `top' node in %s" Info-dir-file-name)))))
1372 ;; Add to the main menu a menu item for each other node.
1373 (re-search-forward "^\\* Menu:")
1374 (forward-line 1)
1375 (let ((menu-items '("top"))
1376 (end (save-excursion (search-forward "\^_" nil t) (point))))
1377 (dolist (node nodes)
1378 (let ((nodename (car node)))
1379 (save-excursion
1380 (or (member (downcase nodename) menu-items)
1381 (re-search-forward (concat "^\\* +"
1382 (regexp-quote nodename)
1383 "::")
1384 end t)
1385 (progn
1386 (insert "* " nodename "::" "\n")
1387 (push nodename menu-items)))))))
1388 ;; Now take each node of each of the other buffers
1389 ;; and merge it into the main buffer.
1390 (dolist (node nodes)
1391 (let ((case-fold-search t)
1392 (nodename (car node)))
1393 (goto-char (point-min))
1394 ;; Find the like-named node in the main buffer.
1395 (if (re-search-forward (concat "^\^_.*\n.*Node: "
1396 (regexp-quote nodename)
1397 "[,\n\t]")
1398 nil t)
1399 (progn
1400 (search-forward "\n\^_" nil 'move)
1401 (beginning-of-line)
1402 (insert "\n"))
1403 ;; If none exists, add one.
1404 (goto-char (point-max))
1405 (insert "\^_\nFile: dir\tNode: " nodename "\n\n* Menu:\n\n"))
1406 ;; Merge the text from the other buffer's menu
1407 ;; into the menu in the like-named node in the main buffer.
1408 (apply 'insert-buffer-substring (cdr node))))
1409 (Info-dir-remove-duplicates)
1410 ;; Kill all the buffers we just made, including the special one excised.
1411 (mapc 'kill-buffer (cons buffer buffers))
1412 (goto-char (point-min))
1413 (if problems
1414 (message "Composing main Info directory...problems encountered, see `*Messages*'")
1415 (message "Composing main Info directory...done"))
1416 (set (make-local-variable 'Info-dir-contents) (buffer-string))
1417 (set (make-local-variable 'Info-dir-file-attributes) dir-file-attrs)))
1418 (setq default-directory Info-dir-contents-directory))
1420 (defvar Info-streamline-headings
1421 '(("Emacs" . "Emacs")
1422 ("Programming" . "Programming")
1423 ("Libraries" . "Libraries")
1424 ("World Wide Web\\|Net Utilities" . "Net Utilities"))
1425 "List of elements (RE . NAME) to merge headings matching RE to NAME.")
1427 (defun Info-dir-remove-duplicates ()
1428 (let (limit)
1429 (goto-char (point-min))
1430 ;; Remove duplicate headings in the same menu.
1431 (while (search-forward "\n* Menu:" nil t)
1432 (setq limit (save-excursion (search-forward "\n\^_" nil t)))
1433 ;; Look for the next heading to unify.
1434 (while (re-search-forward "^\\(\\w.*\\)\n\\*" limit t)
1435 (let ((name (match-string 1))
1436 (start (match-beginning 0))
1437 (entries nil) re)
1438 ;; Check whether this heading should be streamlined.
1439 (save-match-data
1440 (dolist (x Info-streamline-headings)
1441 (when (string-match (car x) name)
1442 (setq name (cdr x))
1443 (setq re (car x)))))
1444 (if re (replace-match name t t nil 1))
1445 (goto-char (if (re-search-forward "^[^* \n\t]" limit t)
1446 (match-beginning 0)
1447 (or limit (point-max))))
1448 ;; Look for other headings of the same category and merge them.
1449 (save-excursion
1450 (while (re-search-forward "^\\(\\w.*\\)\n\\*" limit t)
1451 (when (if re (save-match-data (string-match re (match-string 1)))
1452 (equal name (match-string 1)))
1453 (forward-line 0)
1454 ;; Delete redundant heading.
1455 (delete-region (match-beginning 0) (point))
1456 ;; Push the entries onto `text'.
1457 (push
1458 (delete-and-extract-region
1459 (point)
1460 (if (re-search-forward "^[^* \n\t]" nil t)
1461 (match-beginning 0)
1462 (or limit (point-max))))
1463 entries)
1464 (forward-line 0))))
1465 ;; Insert the entries just found.
1466 (while (= (line-beginning-position 0) (1- (point)))
1467 (backward-char))
1468 (dolist (entry (nreverse entries))
1469 (insert entry)
1470 (while (= (line-beginning-position 0) (1- (point)))
1471 (delete-region (1- (point)) (point))))
1473 ;; Now remove duplicate entries under the same heading.
1474 (let (seen)
1475 (save-restriction
1476 (narrow-to-region start (point))
1477 (goto-char (point-min))
1478 (while (re-search-forward "^* \\([^:\n]+:\\(:\\|[^.\n]+\\).\\)" nil 'move)
1479 ;; Fold case straight away; `member-ignore-case' here wasteful.
1480 (let ((x (downcase (match-string 1))))
1481 (if (member x seen)
1482 (delete-region
1483 (match-beginning 0)
1484 (if (re-search-forward "^[^ \t]" nil 'move)
1485 (goto-char (match-beginning 0))
1486 (point-max)))
1487 (push x seen)))))))))))
1489 ;; Note that on entry to this function the current-buffer must be the
1490 ;; *info* buffer; not the info tags buffer.
1491 (defun Info-read-subfile (nodepos)
1492 ;; NODEPOS is either a position (in the Info file as a whole,
1493 ;; not relative to a subfile) or the name of a subfile.
1494 (let (lastfilepos
1495 lastfilename)
1496 (if (numberp nodepos)
1497 (with-current-buffer (marker-buffer Info-tag-table-marker)
1498 (goto-char (point-min))
1499 (or (looking-at "\^_")
1500 (search-forward "\n\^_"))
1501 (forward-line 2)
1502 (catch 'foo
1503 (while (not (looking-at "\^_"))
1504 (if (not (eolp))
1505 (let ((beg (point))
1506 thisfilepos thisfilename)
1507 (search-forward ": ")
1508 (setq thisfilename (buffer-substring beg (- (point) 2)))
1509 (setq thisfilepos (+ (point-min) (read (current-buffer))))
1510 ;; read in version 19 stops at the end of number.
1511 ;; Advance to the next line.
1512 (forward-line 1)
1513 (if (> thisfilepos nodepos)
1514 (throw 'foo t))
1515 (setq lastfilename thisfilename)
1516 (setq lastfilepos thisfilepos))
1517 (forward-line 1)))))
1518 (setq lastfilename nodepos)
1519 (setq lastfilepos 0))
1520 ;; Assume previous buffer is in Info-mode.
1521 ;; (set-buffer (get-buffer "*info*"))
1522 (or (equal Info-current-subfile lastfilename)
1523 (let ((inhibit-read-only t))
1524 (setq buffer-file-name nil)
1525 (widen)
1526 (erase-buffer)
1527 (info-insert-file-contents lastfilename)
1528 (set-buffer-modified-p nil)
1529 (setq Info-current-subfile lastfilename)))
1530 ;; Widen in case we are in the same subfile as before.
1531 (widen)
1532 (goto-char (point-min))
1533 (if (looking-at "\^_")
1534 (forward-char 1)
1535 (search-forward "\n\^_"))
1536 (if (numberp nodepos)
1537 (+ (- nodepos lastfilepos) (point)))))
1539 (defun Info-unescape-quotes (value)
1540 "Unescape double quotes and backslashes in VALUE."
1541 (let ((start 0)
1542 (unquote value))
1543 (while (string-match "[^\\\"]*\\(\\\\\\)[\\\\\"]" unquote start)
1544 (setq unquote (replace-match "" t t unquote 1))
1545 (setq start (- (match-end 0) 1)))
1546 unquote))
1548 ;; As of Texinfo 4.6, makeinfo writes constructs like
1549 ;; \0\h[image param=value ...\h\0]
1550 ;; into the Info file for handling images.
1551 (defun Info-split-parameter-string (parameter-string)
1552 "Return alist of (\"KEY\" . \"VALUE\") from PARAMETER-STRING.
1553 PARAMETER-STRING is a whitespace separated list of KEY=VALUE pairs.
1554 If VALUE contains whitespace or double quotes, it must be quoted
1555 in double quotes and any double quotes or backslashes must be
1556 escaped (\\\",\\\\)."
1557 (let ((start 0)
1558 (parameter-alist))
1559 (while (string-match
1560 "\\s *\\([^=]+\\)=\\(?:\\([^\\s \"]+\\)\\|\\(?:\"\\(\\(?:[^\\\"]\\|\\\\[\\\\\"]\\)*\\)\"\\)\\)"
1561 parameter-string start)
1562 (setq start (match-end 0))
1563 (push (cons (match-string 1 parameter-string)
1564 (or (match-string 2 parameter-string)
1565 (Info-unescape-quotes
1566 (match-string 3 parameter-string))))
1567 parameter-alist))
1568 parameter-alist))
1570 (defun Info-display-images-node ()
1571 "Display images in current node."
1572 (save-excursion
1573 (let ((inhibit-read-only t)
1574 (case-fold-search t))
1575 (goto-char (point-min))
1576 (while (re-search-forward
1577 "\\(\0\b[[]image\\(\\(?:[^\b]\\|[^\0]+\b\\)*\\)\0\b[]]\\)"
1578 nil t)
1579 (let* ((start (match-beginning 1))
1580 (parameter-alist (Info-split-parameter-string (match-string 2)))
1581 (src (cdr (assoc-string "src" parameter-alist))))
1582 (if (display-images-p)
1583 (let* ((image-file (if src (if (file-name-absolute-p src) src
1584 (concat default-directory src))
1585 ""))
1586 (image (if (file-exists-p image-file)
1587 (create-image image-file)
1588 "[broken image]")))
1589 (if (not (get-text-property start 'display))
1590 (add-text-properties
1591 start (point) `(display ,image rear-nonsticky (display)))))
1592 ;; text-only display, show alternative text if provided, or
1593 ;; otherwise a clue that there's meant to be a picture
1594 (delete-region start (point))
1595 (insert (or (cdr (assoc-string "text" parameter-alist))
1596 (cdr (assoc-string "alt" parameter-alist))
1597 (and src
1598 (concat "[image:" src "]"))
1599 "[image]"))))))
1600 (set-buffer-modified-p nil)))
1602 ;; Texinfo 4.7 adds cookies of the form ^@^H[NAME CONTENTS ^@^H].
1603 ;; Hide any construct of the general form ^@[^@-^_][ ... ^@[^@-^_]],
1604 ;; including one optional trailing newline.
1605 (defun Info-hide-cookies-node ()
1606 "Hide unrecognized cookies in current node."
1607 (save-excursion
1608 (let ((inhibit-read-only t)
1609 (case-fold-search t))
1610 (goto-char (point-min))
1611 (while (re-search-forward
1612 "\\(\0[\0-\37][[][^\0]*\0[\0-\37][]]\n?\\)"
1613 nil t)
1614 (let* ((start (match-beginning 1)))
1615 (if (and (not (get-text-property start 'invisible))
1616 (not (get-text-property start 'display)))
1617 (put-text-property start (point) 'invisible t)))))
1618 (set-buffer-modified-p nil)))
1620 (defun Info-select-node ()
1621 "Select the Info node that point is in."
1622 ;; Bind this in case the user sets it to nil.
1623 (let ((case-fold-search t))
1624 (save-excursion
1625 ;; Find beginning of node.
1626 (if (search-backward "\n\^_" nil 'move)
1627 (forward-line 2)
1628 (if (looking-at "\^_")
1629 (forward-line 1)
1630 (signal 'search-failed (list "\n\^_"))))
1631 ;; Get nodename spelled as it is in the node.
1632 (re-search-forward "Node:[ \t]*")
1633 (setq Info-current-node
1634 (buffer-substring-no-properties (point)
1635 (progn
1636 (skip-chars-forward "^,\t\n")
1637 (point))))
1638 (Info-set-mode-line)
1639 ;; Find the end of it, and narrow.
1640 (beginning-of-line)
1641 (let (active-expression)
1642 ;; Narrow to the node contents
1643 (narrow-to-region (point)
1644 (if (re-search-forward "\n[\^_\f]" nil t)
1645 (prog1
1646 (1- (point))
1647 (if (looking-at "[\n\^_\f]*execute: ")
1648 (progn
1649 (goto-char (match-end 0))
1650 (setq active-expression
1651 (read (current-buffer))))))
1652 (point-max)))
1653 (if Info-enable-active-nodes (eval active-expression))
1654 ;; Add a new unique history item to full history list
1655 (let ((new-history (list Info-current-file Info-current-node)))
1656 (setq Info-history-list
1657 (cons new-history (remove new-history Info-history-list)))
1658 (setq Info-history-forward nil))
1659 (if (not (eq Info-fontify-maximum-menu-size nil))
1660 (Info-fontify-node))
1661 (Info-display-images-node)
1662 (Info-hide-cookies-node)
1663 (run-hooks 'Info-selection-hook)))))
1665 (defvar Info-mode-line-node-keymap
1666 (let ((map (make-sparse-keymap)))
1667 (define-key map [mode-line mouse-1] 'Info-mouse-scroll-up)
1668 (define-key map [mode-line mouse-3] 'Info-mouse-scroll-down)
1669 map)
1670 "Keymap to put on the Info node name in the mode line.")
1672 (defun Info-set-mode-line ()
1673 (setq mode-line-buffer-identification
1674 (nconc (propertized-buffer-identification "%b")
1675 (list
1676 (concat
1677 " ("
1678 (if (stringp Info-current-file)
1679 (replace-regexp-in-string
1680 "%" "%%"
1681 (file-name-sans-extension
1682 (file-name-nondirectory Info-current-file)))
1683 (format "*%S*" Info-current-file))
1684 ") "
1685 (if Info-current-node
1686 (propertize (replace-regexp-in-string
1687 "%" "%%" Info-current-node)
1688 'face 'mode-line-buffer-id
1689 'help-echo
1690 "mouse-1: scroll forward, mouse-3: scroll back"
1691 'mouse-face 'mode-line-highlight
1692 'local-map Info-mode-line-node-keymap)
1693 ""))))))
1695 ;; Go to an Info node specified with a filename-and-nodename string
1696 ;; of the sort that is found in pointers in nodes.
1698 ;; Don't autoload this function: the correct entry point for other packages
1699 ;; to use is `info'. --Stef
1700 ;; ;;;###autoload
1701 (defun Info-goto-node (nodename &optional fork)
1702 "Go to Info node named NODENAME. Give just NODENAME or (FILENAME)NODENAME.
1703 If NODENAME is of the form (FILENAME)NODENAME, the node is in the Info file
1704 FILENAME; otherwise, NODENAME should be in the current Info file (or one of
1705 its sub-files).
1706 Completion is available for node names in the current Info file as well as
1707 in the Info file FILENAME after the closing parenthesis in (FILENAME).
1708 Empty NODENAME in (FILENAME) defaults to the Top node.
1709 If FORK is non-nil (interactively with a prefix arg), show the node in
1710 a new Info buffer.
1711 If FORK is a string, it is the name to use for the new buffer."
1712 (interactive (list (Info-read-node-name "Go to node: ") current-prefix-arg))
1713 (info-initialize)
1714 (if fork
1715 (set-buffer
1716 (clone-buffer (concat "*info-" (if (stringp fork) fork nodename) "*") t)))
1717 (let (filename)
1718 (string-match "\\s *\\((\\s *\\([^\t)]*\\)\\s *)\\s *\\|\\)\\(.*\\)"
1719 nodename)
1720 (setq filename (if (= (match-beginning 1) (match-end 1))
1722 (match-string 2 nodename))
1723 nodename (match-string 3 nodename))
1724 (let ((trim (string-match "\\s +\\'" filename)))
1725 (if trim (setq filename (substring filename 0 trim))))
1726 (let ((trim (string-match "\\s +\\'" nodename)))
1727 (if trim (setq nodename (substring nodename 0 trim))))
1728 (if transient-mark-mode (deactivate-mark))
1729 (Info-find-node (if (equal filename "") nil filename)
1730 (if (equal nodename "") "Top" nodename))))
1732 (defvar Info-read-node-completion-table)
1734 (defun Info-read-node-name-2 (dirs suffixes string pred action)
1735 "Internal function used to complete Info node names.
1736 Return a completion table for Info files---the FILENAME part of a
1737 node named \"(FILENAME)NODENAME\". DIRS is a list of Info
1738 directories to search if FILENAME is not absolute; SUFFIXES is a
1739 list of valid filename suffixes for Info files. See
1740 `try-completion' for a description of the remaining arguments."
1741 (setq suffixes (remove "" suffixes))
1742 (when (file-name-absolute-p string)
1743 (setq dirs (list (file-name-directory string))))
1744 (let ((names nil)
1745 (names-sans-suffix nil)
1746 (suffix (concat (regexp-opt suffixes t) "\\'"))
1747 (string-dir (file-name-directory string)))
1748 (dolist (dir dirs)
1749 (unless dir
1750 (setq dir default-directory))
1751 (if string-dir (setq dir (expand-file-name string-dir dir)))
1752 (when (file-directory-p dir)
1753 (dolist (file (file-name-all-completions
1754 (file-name-nondirectory string) dir))
1755 ;; If the file name has no suffix or a standard suffix,
1756 ;; include it.
1757 (and (or (null (file-name-extension file))
1758 (string-match suffix file))
1759 ;; But exclude subfiles of split Info files.
1760 (not (string-match "-[0-9]+\\'" file))
1761 ;; And exclude backup files.
1762 (not (string-match "~\\'" file))
1763 (push (if string-dir (concat string-dir file) file) names))
1764 ;; If the file name ends in a standard suffix,
1765 ;; add the unsuffixed name as a completion option.
1766 (when (string-match suffix file)
1767 (setq file (substring file 0 (match-beginning 0)))
1768 (push (if string-dir (concat string-dir file) file)
1769 names-sans-suffix)))))
1770 ;; If there is just one file, don't duplicate it with suffixes,
1771 ;; so `Info-read-node-name-1' will be able to complete a single
1772 ;; candidate and to add the terminating ")".
1773 (if (and (= (length names) 1) (= (length names-sans-suffix) 1))
1774 (setq names names-sans-suffix)
1775 (setq names (append names-sans-suffix names)))
1776 (complete-with-action action names string pred)))
1778 (defun Info-read-node-name-1 (string predicate code)
1779 "Internal function used by `Info-read-node-name'.
1780 See `completing-read' for a description of arguments and usage."
1781 (cond
1782 ;; First complete embedded file names.
1783 ((string-match "\\`([^)]*\\'" string)
1784 (completion-table-with-context
1786 (apply-partially 'completion-table-with-terminator ")"
1787 (apply-partially 'Info-read-node-name-2
1788 Info-directory-list
1789 (mapcar 'car Info-suffix-list)))
1790 (substring string 1)
1791 predicate
1792 code))
1793 ;; If a file name was given, complete nodes in the file.
1794 ((string-match "\\`(\\([^)]+\\))" string)
1795 (let ((file0 (match-string 0 string))
1796 (file1 (match-string 1 string))
1797 (nodename (substring string (match-end 0))))
1798 (if (and (equal nodename "") (eq code 'lambda))
1799 ;; Empty node name is permitted that means "Top".
1801 (completion-table-with-context
1802 file0
1803 (apply-partially
1804 (lambda (string pred action)
1805 (complete-with-action
1806 action
1807 (Info-build-node-completions (Info-find-file file1))
1808 string pred)))
1809 nodename predicate code))))
1810 ;; Otherwise use Info-read-node-completion-table.
1811 (t (complete-with-action
1812 code Info-read-node-completion-table string predicate))))
1814 ;; Arrange to highlight the proper letters in the completion list buffer.
1815 (defun Info-read-node-name (prompt)
1816 "Read an Info node name with completion, prompting with PROMPT.
1817 A node name can have the form \"NODENAME\", referring to a node
1818 in the current Info file, or \"(FILENAME)NODENAME\", referring to
1819 a node in FILENAME. \"(FILENAME)\" is a short format to go to
1820 the Top node in FILENAME."
1821 (let* ((completion-ignore-case t)
1822 (Info-read-node-completion-table (Info-build-node-completions))
1823 (nodename (completing-read prompt 'Info-read-node-name-1 nil t)))
1824 (if (equal nodename "")
1825 (Info-read-node-name prompt)
1826 nodename)))
1828 (defun Info-build-node-completions (&optional filename)
1829 (if filename
1830 (or (cdr (assoc filename Info-file-completions))
1831 (with-temp-buffer
1832 (Info-mode)
1833 (Info-goto-node (format "(%s)Top" filename))
1834 (Info-build-node-completions-1)
1835 (push (cons filename Info-current-file-completions) Info-file-completions)
1836 Info-current-file-completions))
1837 (or Info-current-file-completions
1838 (Info-build-node-completions-1))))
1840 (defun Info-build-node-completions-1 ()
1841 (let ((compl nil)
1842 ;; Bind this in case the user sets it to nil.
1843 (case-fold-search t)
1844 (node-regexp "Node: *\\([^,\n]*\\) *[,\n\t]"))
1845 (save-excursion
1846 (save-restriction
1847 (or Info-tag-table-marker
1848 (error "No Info tags found"))
1849 (if (marker-buffer Info-tag-table-marker)
1850 (let ((marker Info-tag-table-marker))
1851 (set-buffer (marker-buffer marker))
1852 (widen)
1853 (goto-char marker)
1854 (while (re-search-forward "\n\\(Node\\|Ref\\): \\(.*\\)\177" nil t)
1855 (setq compl
1856 (cons (list (match-string-no-properties 2))
1857 compl))))
1858 (widen)
1859 (goto-char (point-min))
1860 ;; If the buffer begins with a node header, process that first.
1861 (if (Info-node-at-bob-matching node-regexp)
1862 (setq compl (list (match-string-no-properties 1))))
1863 ;; Now for the rest of the nodes.
1864 (while (search-forward "\n\^_" nil t)
1865 (forward-line 1)
1866 (let ((beg (point)))
1867 (forward-line 1)
1868 (if (re-search-backward node-regexp beg t)
1869 (setq compl
1870 (cons (list (match-string-no-properties 1))
1871 compl))))))))
1872 (setq compl (cons '("*") (nreverse compl)))
1873 (set (make-local-variable 'Info-current-file-completions) compl)
1874 compl))
1877 (defun Info-restore-point (hl)
1878 "If this node has been visited, restore the point value when we left."
1879 (while hl
1880 (if (and (equal (nth 0 (car hl)) Info-current-file)
1881 ;; Use string-equal, not equal, to ignore text props.
1882 (string-equal (nth 1 (car hl)) Info-current-node))
1883 (progn
1884 (goto-char (nth 2 (car hl)))
1885 (setq hl nil)) ;terminate the while at next iter
1886 (setq hl (cdr hl)))))
1888 (defvar Info-search-history nil
1889 "The history list for `Info-search'.")
1891 (defvar Info-search-case-fold nil
1892 "The value of `case-fold-search' from previous `Info-search' command.")
1894 (defun Info-search (regexp &optional bound _noerror _count direction)
1895 "Search for REGEXP, starting from point, and select node it's found in.
1896 If DIRECTION is `backward', search in the reverse direction."
1897 (interactive (list (read-string
1898 (if Info-search-history
1899 (format "Regexp search%s (default %s): "
1900 (if case-fold-search "" " case-sensitively")
1901 (car Info-search-history))
1902 (format "Regexp search%s: "
1903 (if case-fold-search "" " case-sensitively")))
1904 nil 'Info-search-history)))
1905 (deactivate-mark)
1906 (when (equal regexp "")
1907 (setq regexp (car Info-search-history)))
1908 (when regexp
1909 (let (found beg-found give-up
1910 (backward (eq direction 'backward))
1911 (onode Info-current-node)
1912 (ofile Info-current-file)
1913 (opoint (point))
1914 (opoint-min (point-min))
1915 (opoint-max (point-max))
1916 (ostart (window-start))
1917 (osubfile Info-current-subfile))
1918 (setq Info-search-case-fold case-fold-search)
1919 (save-excursion
1920 (save-restriction
1921 (widen)
1922 (when backward
1923 ;; Hide Info file header for backward search
1924 (narrow-to-region (save-excursion
1925 (goto-char (point-min))
1926 (search-forward "\n\^_")
1927 (1- (point)))
1928 (point-max)))
1929 (while (and (not give-up)
1930 (or (null found)
1931 (not (funcall isearch-filter-predicate beg-found found))))
1932 (let ((search-spaces-regexp Info-search-whitespace-regexp))
1933 (if (if backward
1934 (re-search-backward regexp bound t)
1935 (re-search-forward regexp bound t))
1936 (setq found (point) beg-found (if backward (match-end 0)
1937 (match-beginning 0)))
1938 (setq give-up t))))))
1940 (when (and isearch-mode Info-isearch-search
1941 (not Info-isearch-initial-node)
1942 (not bound)
1943 (or give-up (and found (not (and (> found opoint-min)
1944 (< found opoint-max))))))
1945 (signal 'search-failed (list regexp "end of node")))
1947 ;; If no subfiles, give error now.
1948 (if give-up
1949 (if (null Info-current-subfile)
1950 (if isearch-mode
1951 (signal 'search-failed (list regexp "end of manual"))
1952 (let ((search-spaces-regexp Info-search-whitespace-regexp))
1953 (if backward
1954 (re-search-backward regexp)
1955 (re-search-forward regexp))))
1956 (setq found nil)))
1958 (if (and bound (not found))
1959 (signal 'search-failed (list regexp)))
1961 (unless (or found bound)
1962 (unwind-protect
1963 ;; Try other subfiles.
1964 (let ((list ()))
1965 (with-current-buffer (marker-buffer Info-tag-table-marker)
1966 (goto-char (point-min))
1967 (search-forward "\n\^_\nIndirect:")
1968 (save-restriction
1969 (narrow-to-region (point)
1970 (progn (search-forward "\n\^_")
1971 (1- (point))))
1972 (goto-char (point-min))
1973 ;; Find the subfile we just searched.
1974 (search-forward (concat "\n" osubfile ": "))
1975 ;; Skip that one.
1976 (forward-line (if backward 0 1))
1977 (if backward (forward-char -1))
1978 ;; Make a list of all following subfiles.
1979 ;; Each elt has the form (VIRT-POSITION . SUBFILENAME).
1980 (while (not (if backward (bobp) (eobp)))
1981 (if backward
1982 (re-search-backward "\\(^.*\\): [0-9]+$")
1983 (re-search-forward "\\(^.*\\): [0-9]+$"))
1984 (goto-char (+ (match-end 1) 2))
1985 (setq list (cons (cons (+ (point-min)
1986 (read (current-buffer)))
1987 (match-string-no-properties 1))
1988 list))
1989 (goto-char (if backward
1990 (1- (match-beginning 0))
1991 (1+ (match-end 0)))))
1992 ;; Put in forward order
1993 (setq list (nreverse list))))
1994 (while list
1995 (message "Searching subfile %s..." (cdr (car list)))
1996 (Info-read-subfile (car (car list)))
1997 (when backward
1998 ;; Hide Info file header for backward search
1999 (narrow-to-region (save-excursion
2000 (goto-char (point-min))
2001 (search-forward "\n\^_")
2002 (1- (point)))
2003 (point-max))
2004 (goto-char (point-max)))
2005 (setq list (cdr list))
2006 (setq give-up nil found nil)
2007 (while (and (not give-up)
2008 (or (null found)
2009 (not (funcall isearch-filter-predicate beg-found found))))
2010 (let ((search-spaces-regexp Info-search-whitespace-regexp))
2011 (if (if backward
2012 (re-search-backward regexp nil t)
2013 (re-search-forward regexp nil t))
2014 (setq found (point) beg-found (if backward (match-end 0)
2015 (match-beginning 0)))
2016 (setq give-up t))))
2017 (if give-up
2018 (setq found nil))
2019 (if found
2020 (setq list nil)))
2021 (if found
2022 (message "")
2023 (signal 'search-failed (if isearch-mode
2024 (list regexp "end of manual")
2025 (list regexp)))))
2026 (if (not found)
2027 (progn (Info-read-subfile osubfile)
2028 (goto-char opoint)
2029 (Info-select-node)
2030 (set-window-start (selected-window) ostart)))))
2032 (if (and (string= osubfile Info-current-subfile)
2033 (> found opoint-min)
2034 (< found opoint-max))
2035 ;; Search landed in the same node
2036 (goto-char found)
2037 (widen)
2038 (goto-char found)
2039 (save-match-data (Info-select-node)))
2041 ;; Use string-equal, not equal, to ignore text props.
2042 (or (and (string-equal onode Info-current-node)
2043 (equal ofile Info-current-file))
2044 (and isearch-mode isearch-wrapped
2045 (eq opoint (if isearch-forward opoint-min opoint-max)))
2046 (setq Info-history (cons (list ofile onode opoint)
2047 Info-history))))))
2049 (defun Info-search-case-sensitively ()
2050 "Search for a regexp case-sensitively."
2051 (interactive)
2052 (let ((case-fold-search nil))
2053 (call-interactively 'Info-search)))
2055 (defun Info-search-next ()
2056 "Search for next regexp from a previous `Info-search' command."
2057 (interactive)
2058 (let ((case-fold-search Info-search-case-fold))
2059 (if Info-search-history
2060 (Info-search (car Info-search-history))
2061 (call-interactively 'Info-search))))
2063 (defun Info-search-backward (regexp &optional bound noerror count)
2064 "Search for REGEXP in the reverse direction."
2065 (interactive (list (read-string
2066 (if Info-search-history
2067 (format "Regexp search%s backward (default %s): "
2068 (if case-fold-search "" " case-sensitively")
2069 (car Info-search-history))
2070 (format "Regexp search%s backward: "
2071 (if case-fold-search "" " case-sensitively")))
2072 nil 'Info-search-history)))
2073 (Info-search regexp bound noerror count 'backward))
2075 (defun Info-isearch-search ()
2076 (if Info-isearch-search
2077 (lambda (string &optional bound noerror count)
2078 (let ((Info-search-whitespace-regexp
2079 (if (if isearch-regexp
2080 isearch-regexp-lax-whitespace
2081 isearch-lax-whitespace)
2082 search-whitespace-regexp)))
2083 (Info-search
2084 (cond
2085 (isearch-word
2086 ;; Lax version of word search
2087 (let ((lax (not (or isearch-nonincremental
2088 (eq (length string)
2089 (length (isearch--state-string
2090 (car isearch-cmds))))))))
2091 (if (functionp isearch-word)
2092 (funcall isearch-word string lax)
2093 (word-search-regexp string lax))))
2094 (isearch-regexp string)
2095 (t (regexp-quote string)))
2096 bound noerror count
2097 (unless isearch-forward 'backward)))
2098 (point))
2099 (isearch-search-fun-default)))
2101 (defun Info-isearch-wrap ()
2102 (if Info-isearch-search
2103 (if Info-isearch-initial-node
2104 (progn
2105 (if isearch-forward (Info-top-node) (Info-final-node))
2106 (goto-char (if isearch-forward (point-min) (point-max))))
2107 (setq Info-isearch-initial-node Info-current-node)
2108 (setq isearch-wrapped nil))
2109 (goto-char (if isearch-forward (point-min) (point-max)))))
2111 (defun Info-isearch-push-state ()
2112 `(lambda (cmd)
2113 (Info-isearch-pop-state cmd ',Info-current-file ',Info-current-node)))
2115 (defun Info-isearch-pop-state (_cmd file node)
2116 (or (and (equal Info-current-file file)
2117 (equal Info-current-node node))
2118 (progn (Info-find-node file node) (sit-for 0))))
2120 (defun Info-isearch-start ()
2121 (setq Info-isearch-initial-node
2122 ;; Don't stop at initial node for nonincremental search.
2123 ;; Otherwise this variable is set after first search failure.
2124 (and isearch-nonincremental Info-current-node))
2125 (setq Info-isearch-initial-history Info-history
2126 Info-isearch-initial-history-list Info-history-list)
2127 (add-hook 'isearch-mode-end-hook 'Info-isearch-end nil t))
2129 (defun Info-isearch-end ()
2130 ;; Remove intermediate nodes (visited while searching)
2131 ;; from the history. Add only the last node (where Isearch ended).
2132 (if (> (length Info-history)
2133 (length Info-isearch-initial-history))
2134 (setq Info-history
2135 (nthcdr (- (length Info-history)
2136 (length Info-isearch-initial-history)
2138 Info-history)))
2139 (if (> (length Info-history-list)
2140 (length Info-isearch-initial-history-list))
2141 (setq Info-history-list
2142 (cons (car Info-history-list)
2143 Info-isearch-initial-history-list)))
2144 (remove-hook 'isearch-mode-end-hook 'Info-isearch-end t))
2146 (defun Info-isearch-filter (beg-found found)
2147 "Test whether the current search hit is a visible useful text.
2148 Return non-nil if the text from BEG-FOUND to FOUND is visible
2149 and is not in the header line or a tag table."
2150 (save-match-data
2151 (let ((backward (< found beg-found)))
2152 (not
2154 (and (not (eq search-invisible t))
2155 (if backward
2156 (or (text-property-not-all found beg-found 'invisible nil)
2157 (text-property-not-all found beg-found 'display nil))
2158 (or (text-property-not-all beg-found found 'invisible nil)
2159 (text-property-not-all beg-found found 'display nil))))
2160 ;; Skip node header line
2161 (and (save-excursion (forward-line -1)
2162 (looking-at "\^_"))
2163 (forward-line (if backward -1 1)))
2164 ;; Skip Tag Table node
2165 (save-excursion
2166 (and (search-backward "\^_" nil t)
2167 (looking-at
2168 "\^_\n\\(Tag Table\\|Local Variables\\)"))))))))
2171 (defun Info-extract-pointer (name &optional errorname)
2172 "Extract the value of the node-pointer named NAME.
2173 If there is none, use ERRORNAME in the error message;
2174 if ERRORNAME is nil, just return nil."
2175 ;; Bind this in case the user sets it to nil.
2176 (let ((case-fold-search t))
2177 (save-excursion
2178 (goto-char (point-min))
2179 (let ((bound (point)))
2180 (forward-line 1)
2181 (cond ((re-search-backward
2182 (concat name ":" (Info-following-node-name-re)) bound t)
2183 (match-string-no-properties 1))
2184 ((not (eq errorname t))
2185 (user-error "Node has no %s"
2186 (capitalize (or errorname name)))))))))
2188 (defun Info-following-node-name-re (&optional allowedchars)
2189 "Return a regexp matching a node name.
2190 ALLOWEDCHARS, if non-nil, goes within [...] to make a regexp
2191 saying which chars may appear in the node name.
2192 Submatch 1 is the complete node name.
2193 Submatch 2 if non-nil is the parenthesized file name part of the node name.
2194 Submatch 3 is the local part of the node name.
2195 End of submatch 0, 1, and 3 are the same, so you can safely concat."
2196 (concat "[ \t\n]*" ;Skip leading space.
2197 "\\(\\(([^)]+)\\)?" ;Node name can start with a file name.
2198 "\\([" (or allowedchars "^,\t\n") "]*" ;Any number of allowed chars.
2199 "[" (or allowedchars "^,\t\n") " ]" ;The last char can't be a space.
2200 "\\|\\)\\)")) ;Allow empty node names.
2202 ;;; For compatibility; other files have used this name.
2203 (defun Info-following-node-name ()
2204 (and (looking-at (Info-following-node-name-re))
2205 (match-string-no-properties 1)))
2207 (defun Info-next ()
2208 "Go to the next node of this node."
2209 (interactive)
2210 ;; In case another window is currently selected
2211 (save-window-excursion
2212 (or (eq major-mode 'Info-mode) (switch-to-buffer "*info*"))
2213 (Info-goto-node (Info-extract-pointer "next"))))
2215 (defun Info-prev ()
2216 "Go to the previous node of this node."
2217 (interactive)
2218 ;; In case another window is currently selected
2219 (save-window-excursion
2220 (or (eq major-mode 'Info-mode) (switch-to-buffer "*info*"))
2221 (Info-goto-node (Info-extract-pointer "prev[ious]*" "previous"))))
2223 (defun Info-up (&optional same-file)
2224 "Go to the superior node of this node.
2225 If SAME-FILE is non-nil, do not move to a different Info file."
2226 (interactive)
2227 ;; In case another window is currently selected
2228 (save-window-excursion
2229 (or (eq major-mode 'Info-mode) (switch-to-buffer "*info*"))
2230 (let ((old-node Info-current-node)
2231 (old-file Info-current-file)
2232 (node (Info-extract-pointer "up")) p)
2233 (and same-file
2234 (string-match "^(" node)
2235 (error "Up node is in another Info file"))
2236 (Info-goto-node node)
2237 (setq p (point))
2238 (goto-char (point-min))
2239 (if (and (stringp old-file)
2240 (search-forward "\n* Menu:" nil t)
2241 (re-search-forward
2242 (if (string-equal old-node "Top")
2243 (concat "\n\\*[^:]+: +(" (file-name-nondirectory old-file) ")")
2244 (concat "\n\\* +\\(" (regexp-quote old-node)
2245 ":\\|[^:]+: +" (regexp-quote old-node) "\\)"))
2246 nil t))
2247 (progn (beginning-of-line) (if (looking-at "^\\* ") (forward-char 2)))
2248 (goto-char p)
2249 (Info-restore-point Info-history)))))
2251 (defun Info-history-back ()
2252 "Go back in the history to the last node visited."
2253 (interactive)
2254 (or Info-history
2255 (user-error "This is the first Info node you looked at"))
2256 (let ((history-forward
2257 (cons (list Info-current-file Info-current-node (point))
2258 Info-history-forward))
2259 filename nodename opoint)
2260 (setq filename (car (car Info-history)))
2261 (setq nodename (car (cdr (car Info-history))))
2262 (setq opoint (car (cdr (cdr (car Info-history)))))
2263 (setq Info-history (cdr Info-history))
2264 (Info-find-node filename nodename)
2265 (setq Info-history (cdr Info-history))
2266 (setq Info-history-forward history-forward)
2267 (goto-char opoint)))
2269 (defalias 'Info-last 'Info-history-back)
2271 (defun Info-history-forward ()
2272 "Go forward in the history of visited nodes."
2273 (interactive)
2274 (or Info-history-forward
2275 (user-error "This is the last Info node you looked at"))
2276 (let ((history-forward (cdr Info-history-forward))
2277 filename nodename opoint)
2278 (setq filename (car (car Info-history-forward)))
2279 (setq nodename (car (cdr (car Info-history-forward))))
2280 (setq opoint (car (cdr (cdr (car Info-history-forward)))))
2281 (Info-find-node filename nodename)
2282 (setq Info-history-forward history-forward)
2283 (goto-char opoint)))
2285 (add-to-list 'Info-virtual-files
2286 '("\\`dir\\'"
2287 (toc-nodes . Info-directory-toc-nodes)
2288 (find-file . Info-directory-find-file)
2289 (find-node . Info-directory-find-node)
2292 (defun Info-directory-toc-nodes (filename)
2293 "Directory-specific implementation of `Info-toc-nodes'."
2294 `(,filename
2295 ("Top" nil nil nil)))
2297 (defun Info-directory-find-file (filename &optional _noerror)
2298 "Directory-specific implementation of `Info-find-file'."
2299 filename)
2301 (defun Info-directory-find-node (_filename _nodename &optional _no-going-back)
2302 "Directory-specific implementation of `Info-find-node-2'."
2303 (Info-insert-dir))
2305 ;;;###autoload
2306 (defun Info-directory ()
2307 "Go to the Info directory node."
2308 (interactive)
2309 (Info-find-node "dir" "top"))
2311 (add-to-list 'Info-virtual-files
2312 '("\\`\\*History\\*\\'"
2313 (toc-nodes . Info-history-toc-nodes)
2314 (find-file . Info-history-find-file)
2315 (find-node . Info-history-find-node)
2318 (defun Info-history-toc-nodes (filename)
2319 "History-specific implementation of `Info-toc-nodes'."
2320 `(,filename
2321 ("Top" nil nil nil)))
2323 (defun Info-history-find-file (filename &optional _noerror)
2324 "History-specific implementation of `Info-find-file'."
2325 filename)
2327 (defun Info-history-find-node (filename nodename &optional _no-going-back)
2328 "History-specific implementation of `Info-find-node-2'."
2329 (insert (format "\n\^_\nFile: %s, Node: %s, Up: (dir)\n\n"
2330 (or filename Info-current-file) nodename))
2331 (insert "Recently Visited Nodes\n")
2332 (insert "**********************\n\n")
2333 (insert "* Menu:\n\n")
2334 (let ((hl (remove '("*History*" "Top") Info-history-list)))
2335 (while hl
2336 (let ((file (nth 0 (car hl)))
2337 (node (nth 1 (car hl))))
2338 (if (stringp file)
2339 (insert "* " node ": ("
2340 (propertize (or (file-name-directory file) "") 'invisible t)
2341 (file-name-nondirectory file)
2342 ")" node ".\n")))
2343 (setq hl (cdr hl)))))
2345 (defun Info-history ()
2346 "Go to a node with a menu of visited nodes."
2347 (interactive)
2348 (Info-find-node "*History*" "Top")
2349 (Info-next-reference)
2350 (Info-next-reference))
2352 (add-to-list 'Info-virtual-nodes
2353 '("\\`\\*TOC\\*\\'"
2354 (find-node . Info-toc-find-node)
2357 (defun Info-toc-find-node (filename nodename &optional _no-going-back)
2358 "Toc-specific implementation of `Info-find-node-2'."
2359 (let* ((curr-file (substring-no-properties (or filename Info-current-file)))
2360 (curr-node (substring-no-properties (or nodename Info-current-node)))
2361 (node-list (Info-toc-nodes curr-file)))
2362 (insert (format "\n\^_\nFile: %s, Node: %s, Up: Top\n\n"
2363 curr-file curr-node))
2364 (insert "Table of Contents\n")
2365 (insert "*****************\n\n")
2366 (insert "*Note Top::\n")
2367 (Info-toc-insert
2368 (nth 3 (assoc "Top" node-list)) ; get Top nodes
2369 node-list 0 curr-file)
2370 (unless (bobp)
2371 (let ((Info-hide-note-references 'hide)
2372 (Info-fontify-visited-nodes nil))
2373 (setq Info-current-file filename Info-current-node "*TOC*")
2374 (goto-char (point-min))
2375 (narrow-to-region (or (re-search-forward "\n[\^_\f]\n" nil t)
2376 (point-min))
2377 (point-max))
2378 (Info-fontify-node)
2379 (widen)))))
2381 (defun Info-toc ()
2382 "Go to a node with table of contents of the current Info file.
2383 Table of contents is created from the tree structure of menus."
2384 (interactive)
2385 (Info-find-node Info-current-file "*TOC*")
2386 (let ((prev-node (nth 1 (car Info-history))) p)
2387 (goto-char (point-min))
2388 (if (setq p (search-forward (concat "*Note " prev-node ":") nil t))
2389 (setq p (- p (length prev-node) 2)))
2390 (goto-char (or p (point-min)))))
2392 (defun Info-toc-insert (nodes node-list level curr-file)
2393 "Insert table of contents with references to nodes."
2394 (let ((section "Top"))
2395 (while nodes
2396 (let ((node (assoc (car nodes) node-list)))
2397 (unless (member (nth 2 node) (list nil section))
2398 (insert (setq section (nth 2 node)) "\n"))
2399 (insert (make-string level ?\t))
2400 (insert "*Note " (car nodes) ":: \n")
2401 (Info-toc-insert (nth 3 node) node-list (1+ level) curr-file)
2402 (setq nodes (cdr nodes))))))
2404 (defun Info-toc-build (file)
2405 "Build table of contents from menus of Info FILE and its subfiles."
2406 (with-temp-buffer
2407 (let* ((file (and (stringp file) (Info-find-file file)))
2408 (default-directory (or (and (stringp file)
2409 (file-name-directory file))
2410 default-directory))
2411 (main-file (and (stringp file) file))
2412 (sections '(("Top" "Top")))
2413 nodes subfiles)
2414 (while (or main-file subfiles)
2415 ;; (or main-file (message "Searching subfile %s..." (car subfiles)))
2416 (erase-buffer)
2417 (info-insert-file-contents (or main-file (car subfiles)))
2418 (goto-char (point-min))
2419 (while (and (search-forward "\n\^_\nFile:" nil 'move)
2420 (search-forward "Node: " nil 'move))
2421 (let* ((nodename (substring-no-properties (Info-following-node-name)))
2422 (bound (- (or (save-excursion (search-forward "\n\^_" nil t))
2423 (point-max)) 2))
2424 (upnode (and (re-search-forward
2425 (concat "Up:" (Info-following-node-name-re))
2426 bound t)
2427 (match-string-no-properties 1)))
2428 (section "Top")
2429 menu-items)
2430 (when (and upnode (string-match "(" upnode)) (setq upnode nil))
2431 (when (and (not (Info-index-node nodename file))
2432 (re-search-forward "^\\* Menu:" bound t))
2433 (forward-line 1)
2434 (beginning-of-line)
2435 (setq bound (or (and (equal nodename "Top")
2436 (save-excursion
2437 (re-search-forward
2438 "^[ \t-]*The Detailed Node Listing" nil t)))
2439 bound))
2440 (while (< (point) bound)
2441 (cond
2442 ;; Menu item line
2443 ((looking-at "^\\* +[^:]+:")
2444 (beginning-of-line)
2445 (forward-char 2)
2446 (let ((menu-node-name (substring-no-properties
2447 (Info-extract-menu-node-name))))
2448 (setq menu-items (cons menu-node-name menu-items))
2449 (if (equal nodename "Top")
2450 (setq sections
2451 (cons (list menu-node-name section) sections)))))
2452 ;; Other non-empty strings in the Top node are section names
2453 ((and (equal nodename "Top")
2454 (looking-at "^\\([^ \t\n*=.-][^:\n]*\\)"))
2455 (setq section (match-string-no-properties 1))))
2456 (forward-line 1)
2457 (beginning-of-line)))
2458 (setq nodes (cons (list nodename upnode
2459 (cadr (assoc nodename sections))
2460 (nreverse menu-items))
2461 nodes))
2462 (goto-char bound)))
2463 (if main-file
2464 (save-excursion
2465 (goto-char (point-min))
2466 (if (search-forward "\n\^_\nIndirect:" nil t)
2467 (let ((bound (save-excursion (search-forward "\n\^_" nil t))))
2468 (while (re-search-forward "^\\(.*\\): [0-9]+$" bound t)
2469 (setq subfiles (cons (match-string-no-properties 1)
2470 subfiles)))))
2471 (setq subfiles (nreverse subfiles)
2472 main-file nil))
2473 (setq subfiles (cdr subfiles))))
2474 (message "")
2475 (nreverse nodes))))
2477 (defun Info-toc-nodes (filename)
2478 "Return a node list of Info FILENAME with parent-children information.
2479 This information is cached in the variable `Info-toc-nodes' with the help
2480 of the function `Info-toc-build'."
2481 (cond
2482 ((Info-virtual-call
2483 (Info-virtual-fun 'toc-nodes (or filename Info-current-file) nil)
2484 filename))
2486 (or filename (setq filename Info-current-file))
2487 (or (assoc filename Info-toc-nodes)
2488 ;; Skip virtual Info files
2489 (and (or (not (stringp filename))
2490 (Info-virtual-file-p filename))
2491 (push (cons filename nil) Info-toc-nodes))
2492 ;; Scan the entire manual and cache the result in Info-toc-nodes
2493 (let ((nodes (Info-toc-build filename)))
2494 (push (cons filename nodes) Info-toc-nodes)
2495 nodes)
2496 ;; If there is an error, still add nil to the cache
2497 (push (cons filename nil) Info-toc-nodes))
2498 (cdr (assoc filename Info-toc-nodes)))))
2501 (defun Info-follow-reference (footnotename &optional fork)
2502 "Follow cross reference named FOOTNOTENAME to the node it refers to.
2503 FOOTNOTENAME may be an abbreviation of the reference name.
2504 If FORK is non-nil (interactively with a prefix arg), show the node in
2505 a new Info buffer. If FORK is a string, it is the name to use for the
2506 new buffer."
2507 (interactive
2508 (let ((completion-ignore-case t)
2509 (case-fold-search t)
2510 completions default alt-default (start-point (point)) str i bol eol)
2511 (save-excursion
2512 ;; Store end and beginning of line.
2513 (setq eol (line-end-position)
2514 bol (line-beginning-position))
2515 (goto-char (point-min))
2516 (while (re-search-forward "\\*note[ \n\t]+\\([^:]*\\):" nil t)
2517 (setq str (match-string-no-properties 1))
2518 ;; See if this one should be the default.
2519 (and (null default)
2520 (<= (match-beginning 0) start-point)
2521 (<= start-point (point))
2522 (setq default t))
2523 ;; See if this one should be the alternate default.
2524 (and (null alt-default)
2525 (and (<= bol (match-beginning 0))
2526 (<= (point) eol))
2527 (setq alt-default t))
2528 (setq i 0)
2529 (while (setq i (string-match "[ \n\t]+" str i))
2530 (setq str (concat (substring str 0 i) " "
2531 (substring str (match-end 0))))
2532 (setq i (1+ i)))
2533 ;; Record as a completion and perhaps as default.
2534 (if (eq default t) (setq default str))
2535 (if (eq alt-default t) (setq alt-default str))
2536 ;; Don't add this string if it's a duplicate.
2537 (or (assoc-string str completions t)
2538 (push str completions))))
2539 ;; If no good default was found, try an alternate.
2540 (or default
2541 (setq default alt-default))
2542 ;; If only one cross-reference found, then make it default.
2543 (if (eq (length completions) 1)
2544 (setq default (car completions)))
2545 (if completions
2546 (let ((input (completing-read (if default
2547 (concat
2548 "Follow reference named (default "
2549 default "): ")
2550 "Follow reference named: ")
2551 completions nil t)))
2552 (list (if (equal input "")
2553 default input) current-prefix-arg))
2554 (user-error "No cross-references in this node"))))
2556 (unless footnotename
2557 (error "No reference was specified"))
2559 (let (target i (str (concat "\\*note " (regexp-quote footnotename)))
2560 (case-fold-search t))
2561 (while (setq i (string-match " " str i))
2562 (setq str (concat (substring str 0 i) "[ \t\n]+" (substring str (1+ i))))
2563 (setq i (+ i 6)))
2564 (save-excursion
2565 ;; Move point to the beginning of reference if point is on reference
2566 (or (looking-at "\\*note[ \n\t]+")
2567 (and (looking-back "\\*note[ \n\t]+")
2568 (goto-char (match-beginning 0)))
2569 (if (and (save-excursion
2570 (goto-char (+ (point) 5)) ; skip a possible *note
2571 (re-search-backward "\\*note[ \n\t]+" nil t)
2572 (looking-at str))
2573 (<= (point) (match-end 0)))
2574 (goto-char (match-beginning 0))))
2575 ;; Go to the reference closest to point
2576 (let ((next-ref (save-excursion (and (re-search-forward str nil t)
2577 (+ (match-beginning 0) 5))))
2578 (prev-ref (save-excursion (and (re-search-backward str nil t)
2579 (+ (match-beginning 0) 5)))))
2580 (goto-char (cond ((and next-ref prev-ref)
2581 (if (< (abs (- next-ref (point)))
2582 (abs (- prev-ref (point))))
2583 next-ref prev-ref))
2584 ((or next-ref prev-ref))
2585 ((user-error "No cross-reference named %s"
2586 footnotename))))
2587 (setq target (Info-extract-menu-node-name t))))
2588 (while (setq i (string-match "[ \t\n]+" target i))
2589 (setq target (concat (substring target 0 i) " "
2590 (substring target (match-end 0))))
2591 (setq i (+ i 1)))
2592 (Info-goto-node target fork)))
2594 (defconst Info-menu-entry-name-re "\\(?:[^:]\\|:[^:,.;() \t\n]\\)*"
2595 ;; We allow newline because this is also used in Info-follow-reference,
2596 ;; where the xref name might be wrapped over two lines.
2597 "Regexp that matches a menu entry name upto but not including the colon.
2598 Because of ambiguities, this should be concatenated with something like
2599 `:' and `Info-following-node-name-re'.")
2601 (defun Info-extract-menu-node-name (&optional multi-line index-node)
2602 (skip-chars-forward " \t\n")
2603 (when (looking-at (concat Info-menu-entry-name-re ":\\(:\\|"
2604 (Info-following-node-name-re
2605 (cond
2606 (index-node "^,\t\n")
2607 (multi-line "^.,\t")
2608 (t "^.,\t\n")))
2609 "\\)"
2610 (if index-node
2611 "\\.\\(?:[ \t\n]+(line +\\([0-9]+\\))\\)?"
2612 "")))
2613 (if index-node
2614 (setq Info-point-loc
2615 (if (match-beginning 5)
2616 (string-to-number (match-string 5))
2617 (buffer-substring-no-properties
2618 (match-beginning 0) (1- (match-beginning 1)))))
2619 ;;; Uncomment next line to use names of cross-references in non-index nodes:
2620 ;;; (setq Info-point-loc
2621 ;;; (buffer-substring (match-beginning 0) (1- (match-beginning 1))))
2623 (replace-regexp-in-string
2624 "[ \n]+" " "
2625 (or (and (not (equal (match-string-no-properties 2) ""))
2626 (match-string-no-properties 2))
2627 ;; If the node name is the menu entry name (using `entry::').
2628 (buffer-substring-no-properties
2629 (match-beginning 0) (1- (match-beginning 1)))))))
2631 ;; No one calls this.
2632 ;;(defun Info-menu-item-sequence (list)
2633 ;; (while list
2634 ;; (Info-menu (car list))
2635 ;; (setq list (cdr list))))
2637 (defvar Info-complete-menu-buffer)
2638 (defvar Info-complete-next-re nil)
2639 (defvar Info-complete-nodes nil)
2640 (defvar Info-complete-cache nil)
2642 (defconst Info-node-spec-re
2643 (concat (Info-following-node-name-re "^.,:") "[,:.]")
2644 "Regexp to match the text after a : until the terminating `.'.")
2646 (defun Info-complete-menu-item (string predicate action)
2647 ;; This uses two dynamically bound variables:
2648 ;; - `Info-complete-menu-buffer' which contains the buffer in which
2649 ;; is the menu of items we're trying to complete.
2650 ;; - `Info-complete-next-re' which, if non-nil, indicates that we should
2651 ;; also look for menu items in subsequent nodes as long as those
2652 ;; nodes' names match `Info-complete-next-re'. This feature is currently
2653 ;; not used.
2654 ;; - `Info-complete-nodes' which, if non-nil, indicates that we should
2655 ;; also look for menu items in these nodes. This feature is currently
2656 ;; only used for completion in Info-index.
2658 ;; Note that `Info-complete-menu-buffer' could be current already,
2659 ;; so we want to save point.
2660 (with-current-buffer Info-complete-menu-buffer
2661 (save-excursion
2662 (let ((completion-ignore-case t)
2663 (case-fold-search t)
2664 (orignode Info-current-node)
2665 nextnode)
2666 (goto-char (point-min))
2667 (search-forward "\n* Menu:")
2668 (cond
2669 ((eq (car-safe action) 'boundaries) nil)
2670 ((eq action 'lambda)
2671 (re-search-forward
2672 (concat "\n\\* +" (regexp-quote string) ":") nil t))
2674 (let ((pattern (concat "\n\\* +\\("
2675 (regexp-quote string)
2676 Info-menu-entry-name-re "\\):"
2677 Info-node-spec-re))
2678 completions
2679 (complete-nodes Info-complete-nodes))
2680 ;; Check the cache.
2681 (if (and (equal (nth 0 Info-complete-cache) Info-current-file)
2682 (equal (nth 1 Info-complete-cache) Info-current-node)
2683 (equal (nth 2 Info-complete-cache) Info-complete-next-re)
2684 (equal (nth 5 Info-complete-cache) Info-complete-nodes)
2685 (let ((prev (nth 3 Info-complete-cache)))
2686 (eq t (compare-strings string 0 (length prev)
2687 prev 0 nil t))))
2688 ;; We can reuse the previous list.
2689 (setq completions (nth 4 Info-complete-cache))
2690 ;; The cache can't be used.
2691 (while
2692 (progn
2693 (while (re-search-forward pattern nil t)
2694 (push (match-string-no-properties 1)
2695 completions))
2696 (setq completions (delete-dups completions))
2697 ;; Check subsequent nodes if applicable.
2698 (or (and Info-complete-next-re
2699 (setq nextnode (Info-extract-pointer "next" t))
2700 (string-match Info-complete-next-re nextnode))
2701 (and complete-nodes
2702 (setq complete-nodes (cdr complete-nodes)
2703 nextnode (car complete-nodes)))))
2704 (Info-goto-node nextnode))
2705 ;; Go back to the start node (for the next completion).
2706 (unless (equal Info-current-node orignode)
2707 (Info-goto-node orignode))
2708 ;; Update the cache.
2709 (set (make-local-variable 'Info-complete-cache)
2710 (list Info-current-file Info-current-node
2711 Info-complete-next-re string completions
2712 Info-complete-nodes)))
2713 (complete-with-action action completions string predicate))))))))
2716 (defun Info-menu (menu-item &optional fork)
2717 "Go to the node pointed to by the menu item named (or abbreviated) MENU-ITEM.
2718 The menu item should one of those listed in the current node's menu.
2719 Completion is allowed, and the default menu item is the one point is on.
2720 If FORK is non-nil (interactively with a prefix arg), show the node in
2721 a new Info buffer. If FORK is a string, it is the name to use for the
2722 new buffer."
2723 (interactive
2724 (let (;; If point is within a menu item, use that item as the default
2725 (default nil)
2726 (p (point))
2728 (case-fold-search t))
2729 (save-excursion
2730 (goto-char (point-min))
2731 (if (not (search-forward "\n* menu:" nil t))
2732 (user-error "No menu in this node"))
2733 (setq beg (point))
2734 (and (< (point) p)
2735 (save-excursion
2736 (goto-char p)
2737 (end-of-line)
2738 (if (re-search-backward (concat "\n\\* +\\("
2739 Info-menu-entry-name-re
2740 "\\):") beg t)
2741 (setq default (match-string-no-properties 1))))))
2742 (let ((item nil))
2743 (while (null item)
2744 (setq item (let ((completion-ignore-case t)
2745 (Info-complete-menu-buffer (current-buffer)))
2746 (completing-read (if default
2747 (format "Menu item (default %s): "
2748 default)
2749 "Menu item: ")
2750 'Info-complete-menu-item nil t)))
2751 ;; we rely on the fact that completing-read accepts an input
2752 ;; of "" even when the require-match argument is true and ""
2753 ;; is not a valid possibility
2754 (if (string= item "")
2755 (if default
2756 (setq item default)
2757 ;; ask again
2758 (setq item nil))))
2759 (list item current-prefix-arg))))
2760 ;; there is a problem here in that if several menu items have the same
2761 ;; name you can only go to the node of the first with this command.
2762 (Info-goto-node (Info-extract-menu-item menu-item)
2763 (and fork
2764 (if (stringp fork) fork menu-item))))
2766 (defun Info-extract-menu-item (menu-item)
2767 (setq menu-item (regexp-quote menu-item))
2768 (let ((case-fold-search t))
2769 (save-excursion
2770 (let ((case-fold-search t))
2771 (goto-char (point-min))
2772 (or (search-forward "\n* menu:" nil t)
2773 (user-error "No menu in this node"))
2774 (or (re-search-forward (concat "\n\\* +" menu-item ":") nil t)
2775 (re-search-forward (concat "\n\\* +" menu-item) nil t)
2776 (user-error "No such item in menu"))
2777 (beginning-of-line)
2778 (forward-char 2)
2779 (Info-extract-menu-node-name nil (Info-index-node))))))
2781 ;; If COUNT is nil, use the last item in the menu.
2782 (defun Info-extract-menu-counting (count &optional no-detail)
2783 (let ((case-fold-search t))
2784 (save-excursion
2785 (let ((case-fold-search t)
2786 (bound (when (and no-detail
2787 (re-search-forward
2788 "^[ \t-]*The Detailed Node Listing" nil t))
2789 (match-beginning 0))))
2790 (goto-char (point-min))
2791 (or (search-forward "\n* menu:" bound t)
2792 (user-error "No menu in this node"))
2793 (if count
2794 (or (search-forward "\n* " bound t count)
2795 (error "Too few items in menu"))
2796 (while (search-forward "\n* " bound t)
2797 nil))
2798 (Info-extract-menu-node-name nil (Info-index-node))))))
2800 (defun Info-nth-menu-item ()
2801 "Go to the node of the Nth menu item.
2802 N is the digit argument used to invoke this command."
2803 (interactive)
2804 (Info-goto-node
2805 (Info-extract-menu-counting
2806 (- (aref (this-command-keys) (1- (length (this-command-keys)))) ?0))))
2808 (defun Info-top-node ()
2809 "Go to the Top node of this file."
2810 (interactive)
2811 (Info-goto-node "Top"))
2813 (defun Info-final-node ()
2814 "Go to the final node in this file."
2815 (interactive)
2816 (Info-goto-node "Top")
2817 (let ((Info-history nil)
2818 (case-fold-search t))
2819 ;; Go to the last node in the menu of Top. But don't delve into
2820 ;; detailed node listings.
2821 (Info-goto-node (Info-extract-menu-counting nil t))
2822 ;; If the last node in the menu is not last in pointer structure,
2823 ;; move forward (but not down- or upward - see bug#1116) until we
2824 ;; can't go any farther.
2825 (while (Info-forward-node t t t) nil)
2826 ;; Then keep moving down to last subnode, unless we reach an index.
2827 (while (and (not (Info-index-node))
2828 (save-excursion (search-forward "\n* Menu:" nil t)))
2829 (Info-goto-node (Info-extract-menu-counting nil)))))
2831 (defun Info-forward-node (&optional not-down not-up no-error)
2832 "Go forward one node, considering all nodes as forming one sequence."
2833 (interactive)
2834 (goto-char (point-min))
2835 (forward-line 1)
2836 (let ((case-fold-search t))
2837 ;; three possibilities, in order of priority:
2838 ;; 1. next node is in a menu in this node (but not in an index)
2839 ;; 2. next node is next at same level
2840 ;; 3. next node is up and next
2841 (cond ((and (not not-down)
2842 (save-excursion (search-forward "\n* menu:" nil t))
2843 (not (Info-index-node)))
2844 (Info-goto-node (Info-extract-menu-counting 1))
2846 ((save-excursion (search-backward "next:" nil t))
2847 (Info-next)
2849 ((and (not not-up)
2850 (save-excursion (search-backward "up:" nil t))
2851 ;; Use string-equal, not equal, to ignore text props.
2852 (not (string-equal (downcase (Info-extract-pointer "up"))
2853 "top")))
2854 (let ((old-node Info-current-node))
2855 (Info-up)
2856 (let ((old-history Info-history)
2857 success)
2858 (unwind-protect
2859 (setq success (Info-forward-node t nil no-error))
2860 (or success (Info-goto-node old-node)))
2861 (if Info-history-skip-intermediate-nodes
2862 (setq Info-history old-history)))))
2863 (no-error nil)
2864 (t (user-error "No pointer forward from this node")))))
2866 (defun Info-backward-node ()
2867 "Go backward one node, considering all nodes as forming one sequence."
2868 (interactive)
2869 (let ((prevnode (Info-extract-pointer "prev[ious]*" t))
2870 (upnode (Info-extract-pointer "up" t))
2871 (case-fold-search t))
2872 (cond ((and upnode (string-match "(" upnode))
2873 (user-error "First node in file"))
2874 ((and upnode (or (null prevnode)
2875 ;; Use string-equal, not equal,
2876 ;; to ignore text properties.
2877 (string-equal (downcase prevnode)
2878 (downcase upnode))))
2879 (Info-up))
2880 (prevnode
2881 ;; If we move back at the same level,
2882 ;; go down to find the last subnode*.
2883 (Info-prev)
2884 (let ((old-history Info-history))
2885 (while (and (not (Info-index-node))
2886 (save-excursion (search-forward "\n* Menu:" nil t)))
2887 (Info-goto-node (Info-extract-menu-counting nil)))
2888 (if Info-history-skip-intermediate-nodes
2889 (setq Info-history old-history))))
2891 (user-error "No pointer backward from this node")))))
2893 (defun Info-exit ()
2894 "Exit Info by selecting some other buffer."
2895 (interactive)
2896 (if Info-standalone
2897 (save-buffers-kill-emacs)
2898 (quit-window)))
2900 (defun Info-next-menu-item ()
2901 "Go to the node of the next menu item."
2902 (interactive)
2903 ;; Bind this in case the user sets it to nil.
2904 (let* ((case-fold-search t)
2905 (node
2906 (save-excursion
2907 (forward-line -1)
2908 (search-forward "\n* menu:" nil t)
2909 (and (search-forward "\n* " nil t)
2910 (Info-extract-menu-node-name)))))
2911 (if node (Info-goto-node node)
2912 (user-error "No more items in menu"))))
2914 (defun Info-last-menu-item ()
2915 "Go to the node of the previous menu item."
2916 (interactive)
2917 (save-excursion
2918 (forward-line 1)
2919 ;; Bind this in case the user sets it to nil.
2920 (let* ((case-fold-search t)
2921 (beg (save-excursion
2922 (and (search-backward "\n* menu:" nil t)
2923 (point)))))
2924 (or (and beg (search-backward "\n* " beg t))
2925 (user-error "No previous items in menu")))
2926 (Info-goto-node (save-excursion
2927 (goto-char (match-end 0))
2928 (Info-extract-menu-node-name)))))
2930 (defmacro Info-no-error (&rest body)
2931 `(condition-case nil (progn ,@body t) (error nil)))
2933 (defun Info-next-preorder ()
2934 "Go to the next subnode or the next node, or go up a level."
2935 (interactive)
2936 (cond ((Info-no-error (Info-next-menu-item)))
2937 ((Info-no-error (Info-next)))
2938 ((Info-no-error (Info-up t))
2939 ;; Since we have already gone thru all the items in this menu,
2940 ;; go up to the end of this node.
2941 (goto-char (point-max))
2942 ;; Since logically we are done with the node with that menu,
2943 ;; move on from it. But don't add intermediate nodes
2944 ;; to the history on recursive calls.
2945 (let ((old-history Info-history))
2946 (Info-next-preorder)
2947 (if Info-history-skip-intermediate-nodes
2948 (setq Info-history old-history))))
2950 (user-error "No more nodes"))))
2952 (defun Info-last-preorder ()
2953 "Go to the last node, popping up a level if there is none."
2954 (interactive)
2955 (cond ((and Info-scroll-prefer-subnodes
2956 (Info-no-error
2957 (Info-last-menu-item)
2958 ;; If we go down a menu item, go to the end of the node
2959 ;; so we can scroll back through it.
2960 (goto-char (point-max))))
2961 ;; Keep going down, as long as there are nested menu nodes.
2962 (let ((old-history Info-history))
2963 (while (Info-no-error
2964 (Info-last-menu-item)
2965 ;; If we go down a menu item, go to the end of the node
2966 ;; so we can scroll back through it.
2967 (goto-char (point-max))))
2968 (if Info-history-skip-intermediate-nodes
2969 (setq Info-history old-history)))
2970 (recenter -1))
2971 ((and (Info-no-error (Info-extract-pointer "prev"))
2972 (not (equal (Info-extract-pointer "up")
2973 (Info-extract-pointer "prev"))))
2974 (Info-no-error (Info-prev))
2975 (goto-char (point-max))
2976 (let ((old-history Info-history))
2977 (while (Info-no-error
2978 (Info-last-menu-item)
2979 ;; If we go down a menu item, go to the end of the node
2980 ;; so we can scroll back through it.
2981 (goto-char (point-max))))
2982 (if Info-history-skip-intermediate-nodes
2983 (setq Info-history old-history)))
2984 (recenter -1))
2985 ((Info-no-error (Info-up t))
2986 (goto-char (point-min))
2987 (let ((case-fold-search t))
2988 (or (search-forward "\n* Menu:" nil t)
2989 (goto-char (point-max)))))
2990 (t (user-error "No previous nodes"))))
2992 (defun Info-scroll-up ()
2993 "Scroll one screenful forward in Info, considering all nodes as one sequence.
2994 Once you scroll far enough in a node that its menu appears on the screen
2995 but after point, the next scroll moves into its first subnode, unless
2996 `Info-scroll-prefer-subnodes' is nil.
2998 When you scroll past the end of a node, that goes to the next node if
2999 `Info-scroll-prefer-subnodes' is non-nil and to the first subnode otherwise;
3000 if this node has no successor, it moves to the parent node's successor,
3001 and so on. If `Info-scroll-prefer-subnodes' is non-nil and point is inside
3002 the menu of a node, it moves to subnode indicated by the following menu
3003 item. (That case won't normally result from this command, but can happen
3004 in other ways.)"
3006 (interactive)
3007 (if (or (< (window-start) (point-min))
3008 (> (window-start) (point-max)))
3009 (set-window-start (selected-window) (point)))
3010 (let* ((case-fold-search t)
3011 (virtual-end (save-excursion
3012 (goto-char (point-min))
3013 (if (and Info-scroll-prefer-subnodes
3014 (search-forward "\n* Menu:" nil t))
3015 (point)
3016 (point-max)))))
3017 (if (or (< virtual-end (window-start))
3018 (pos-visible-in-window-p virtual-end))
3019 (cond
3020 (Info-scroll-prefer-subnodes (Info-next-preorder))
3021 ((Info-no-error (Info-goto-node (Info-extract-menu-counting 1))))
3022 (t (Info-next-preorder)))
3023 (scroll-up))))
3025 (defun Info-mouse-scroll-up (e)
3026 "Scroll one screenful forward in Info, using the mouse.
3027 See `Info-scroll-up'."
3028 (interactive "e")
3029 (save-selected-window
3030 (if (eventp e)
3031 (select-window (posn-window (event-start e))))
3032 (Info-scroll-up)))
3034 (defun Info-scroll-down ()
3035 "Scroll one screenful back in Info, considering all nodes as one sequence.
3036 If point is within the menu of a node, and `Info-scroll-prefer-subnodes'
3037 is non-nil, this goes to its last subnode. When you scroll past the
3038 beginning of a node, that goes to the previous node or back up to the
3039 parent node."
3040 (interactive)
3041 (if (or (< (window-start) (point-min))
3042 (> (window-start) (point-max)))
3043 (set-window-start (selected-window) (point)))
3044 (let* ((case-fold-search t)
3045 (current-point (point))
3046 (virtual-end
3047 (and Info-scroll-prefer-subnodes
3048 (save-excursion
3049 (setq current-point (line-beginning-position))
3050 (goto-char (point-min))
3051 (search-forward "\n* Menu:" current-point t)))))
3052 (if (or virtual-end
3053 (pos-visible-in-window-p (point-min) nil t))
3054 (Info-last-preorder)
3055 (scroll-down))))
3057 (defun Info-mouse-scroll-down (e)
3058 "Scroll one screenful backward in Info, using the mouse.
3059 See `Info-scroll-down'."
3060 (interactive "e")
3061 (save-selected-window
3062 (if (eventp e)
3063 (select-window (posn-window (event-start e))))
3064 (Info-scroll-down)))
3066 (defun Info-next-reference (&optional recur)
3067 "Move cursor to the next cross-reference or menu item in the node."
3068 (interactive)
3069 (let ((pat "\\*note[ \n\t]+\\([^:]+\\):\\|^\\* .*:\\|[hf]t?tps?://")
3070 (old-pt (point))
3071 (case-fold-search t))
3072 (or (eobp) (forward-char 1))
3073 (or (re-search-forward pat nil t)
3074 (progn
3075 (goto-char (point-min))
3076 (or (re-search-forward pat nil t)
3077 (progn
3078 (goto-char old-pt)
3079 (user-error "No cross references in this node")))))
3080 (goto-char (or (match-beginning 1) (match-beginning 0)))
3081 (if (looking-at "\\* Menu:")
3082 (if recur
3083 (user-error "No cross references in this node")
3084 (Info-next-reference t))
3085 (if (looking-at "^\\* ")
3086 (forward-char 2)))))
3088 (defun Info-prev-reference (&optional recur)
3089 "Move cursor to the previous cross-reference or menu item in the node."
3090 (interactive)
3091 (let ((pat "\\*note[ \n\t]+\\([^:]+\\):\\|^\\* .*:\\|[hf]t?tps?://")
3092 (old-pt (point))
3093 (case-fold-search t))
3094 (or (re-search-backward pat nil t)
3095 (progn
3096 (goto-char (point-max))
3097 (or (re-search-backward pat nil t)
3098 (progn
3099 (goto-char old-pt)
3100 (user-error "No cross references in this node")))))
3101 (goto-char (or (match-beginning 1) (match-beginning 0)))
3102 (if (looking-at "\\* Menu:")
3103 (if recur
3104 (user-error "No cross references in this node")
3105 (Info-prev-reference t))
3106 (if (looking-at "^\\* ")
3107 (forward-char 2)))))
3109 (defun Info-index-nodes (&optional file)
3110 "Return a list of names of all index nodes in Info FILE.
3111 If FILE is omitted, it defaults to the current Info file.
3112 First look in a list of cached index node names. Then scan Info
3113 file and its subfiles for nodes with the index cookie. Then try
3114 to find index nodes starting from the first node in the top level
3115 menu whose name contains the word \"Index\", plus any immediately
3116 following nodes whose names also contain the word \"Index\"."
3117 (or file (setq file Info-current-file))
3118 (or (assoc file Info-index-nodes)
3119 ;; Skip virtual Info files
3120 (and (or (not (stringp file))
3121 (Info-virtual-file-p file))
3122 (setq Info-index-nodes (cons (cons file nil) Info-index-nodes)))
3123 (if (Info-file-supports-index-cookies file)
3124 ;; Find nodes with index cookie
3125 (let* ((default-directory (or (and (stringp file)
3126 (file-name-directory
3127 (setq file (Info-find-file file))))
3128 default-directory))
3129 Info-history Info-history-list Info-fontify-maximum-menu-size
3130 (main-file file) subfiles nodes)
3131 (condition-case nil
3132 (with-temp-buffer
3133 (while (or main-file subfiles)
3134 (erase-buffer)
3135 (info-insert-file-contents (or main-file (car subfiles)))
3136 (goto-char (point-min))
3137 (while (search-forward "\0\b[index\0\b]" nil 'move)
3138 (save-excursion
3139 (re-search-backward "^\^_")
3140 (search-forward "Node: ")
3141 (setq nodes (cons (Info-following-node-name) nodes))))
3142 (if main-file
3143 (save-excursion
3144 (goto-char (point-min))
3145 (if (search-forward "\n\^_\nIndirect:" nil t)
3146 (let ((bound (save-excursion (search-forward "\n\^_" nil t))))
3147 (while (re-search-forward "^\\(.*\\): [0-9]+$" bound t)
3148 (setq subfiles (cons (match-string-no-properties 1)
3149 subfiles)))))
3150 (setq subfiles (nreverse subfiles)
3151 main-file nil))
3152 (setq subfiles (cdr subfiles)))))
3153 (error nil))
3154 (if nodes
3155 (setq nodes (nreverse nodes)
3156 Info-index-nodes (cons (cons file nodes) Info-index-nodes)))
3157 nodes)
3158 ;; Else find nodes with the word "Index" in the node name
3159 (let ((case-fold-search t)
3160 Info-history Info-history-list Info-fontify-maximum-menu-size Info-point-loc
3161 nodes node)
3162 (condition-case nil
3163 (with-temp-buffer
3164 (Info-mode)
3165 (Info-find-node file "Top")
3166 (when (and (search-forward "\n* menu:" nil t)
3167 (re-search-forward "\n\\* \\(.*\\<Index\\>\\)" nil t))
3168 (goto-char (match-beginning 1))
3169 (setq nodes (list (Info-extract-menu-node-name)))
3170 (Info-goto-node (car nodes))
3171 (while (and (setq node (Info-extract-pointer "next" t))
3172 (string-match "\\<Index\\>" node))
3173 (push node nodes)
3174 (Info-goto-node node))))
3175 (error nil))
3176 (if nodes
3177 (setq nodes (nreverse nodes)
3178 Info-index-nodes (cons (cons file nodes) Info-index-nodes)))
3179 nodes))
3180 ;; If file has no index nodes, still add it to the cache
3181 (setq Info-index-nodes (cons (cons file nil) Info-index-nodes)))
3182 (cdr (assoc file Info-index-nodes)))
3184 (defun Info-index-node (&optional node file)
3185 "Return non-nil value if NODE is an index node.
3186 If NODE is nil, check the current Info node.
3187 If FILE is nil, check the current Info file."
3188 (or file (setq file Info-current-file))
3189 (if (and (or (and node (not (equal node Info-current-node)))
3190 (assoc file Info-index-nodes))
3191 (not Info-current-node-virtual))
3192 (member (or node Info-current-node) (Info-index-nodes file))
3193 ;; Don't search all index nodes if request is only for the current node
3194 ;; and file is not in the cache of index nodes
3195 (save-match-data
3196 (if (Info-file-supports-index-cookies file)
3197 (save-excursion
3198 (goto-char (+ (or (save-excursion
3199 (search-backward "\n\^_" nil t))
3200 (point-min)) 2))
3201 (search-forward "\0\b[index\0\b]"
3202 (or (save-excursion
3203 (search-forward "\n\^_" nil t))
3204 (point-max)) t))
3205 (string-match "\\<Index\\>" (or node Info-current-node ""))))))
3207 (defun Info-goto-index ()
3208 "Go to the first index node."
3209 (let ((node (car (Info-index-nodes))))
3210 (or node (error "No index"))
3211 (Info-goto-node node)))
3213 ;;;###autoload
3214 (defun Info-index (topic)
3215 "Look up a string TOPIC in the index for this manual and go to that entry.
3216 If there are no exact matches to the specified topic, this chooses
3217 the first match which is a case-insensitive substring of a topic.
3218 Use the \\<Info-mode-map>\\[Info-index-next] command to see the other matches.
3219 Give an empty topic name to go to the Index node itself."
3220 (interactive
3221 (list
3222 (let ((completion-ignore-case t)
3223 (Info-complete-menu-buffer (clone-buffer))
3224 (Info-complete-nodes (Info-index-nodes))
3225 (Info-history-list nil))
3226 (if (equal Info-current-file "dir")
3227 (error "The Info directory node has no index; use m to select a manual"))
3228 (unwind-protect
3229 (with-current-buffer Info-complete-menu-buffer
3230 (Info-goto-index)
3231 (completing-read "Index topic: " 'Info-complete-menu-item))
3232 (kill-buffer Info-complete-menu-buffer)))))
3233 (if (equal Info-current-file "dir")
3234 (error "The Info directory node has no index; use m to select a manual"))
3235 ;; Strip leading colon in topic; index format does not allow them.
3236 (if (and (stringp topic)
3237 (> (length topic) 0)
3238 (= (aref topic 0) ?:))
3239 (setq topic (substring topic 1)))
3240 (let ((orignode Info-current-node)
3241 (pattern (format "\n\\* +\\([^\n]*%s[^\n]*\\):[ \t]+\\([^\n]*\\)\\.\\(?:[ \t\n]*(line +\\([0-9]+\\))\\)?"
3242 (regexp-quote topic)))
3243 node (nodes (Info-index-nodes))
3244 (ohist-list Info-history-list)
3245 (case-fold-search t))
3246 (Info-goto-index)
3247 (or (equal topic "")
3248 (let ((matches nil)
3249 (exact nil)
3250 ;; We bind Info-history to nil for internal node-switches so
3251 ;; that we don't put junk in the history. In the first
3252 ;; Info-goto-index call, above, we do update the history
3253 ;; because that is what the user's previous node choice into it.
3254 (Info-history nil)
3255 found)
3256 (while
3257 (progn
3258 (goto-char (point-min))
3259 (while (re-search-forward pattern nil t)
3260 (push (list (match-string-no-properties 1)
3261 (match-string-no-properties 2)
3262 Info-current-node
3263 (string-to-number (concat "0"
3264 (match-string 3))))
3265 matches))
3266 (setq nodes (cdr nodes) node (car nodes)))
3267 (Info-goto-node node))
3268 (or matches
3269 (progn
3270 (Info-goto-node orignode)
3271 (user-error "No `%s' in index" topic)))
3272 ;; Here it is a feature that assoc is case-sensitive.
3273 (while (setq found (assoc topic matches))
3274 (setq exact (cons found exact)
3275 matches (delq found matches)))
3276 (setq Info-history-list ohist-list)
3277 (setq Info-index-alternatives (nconc exact (nreverse matches)))
3278 (Info-index-next 0)))))
3280 (defun Info-index-next (num)
3281 "Go to the next matching index item from the last \\<Info-mode-map>\\[Info-index] command."
3282 (interactive "p")
3283 (or Info-index-alternatives
3284 (user-error "No previous `i' command"))
3285 (while (< num 0)
3286 (setq num (+ num (length Info-index-alternatives))))
3287 (while (> num 0)
3288 (setq Info-index-alternatives
3289 (nconc (cdr Info-index-alternatives)
3290 (list (car Info-index-alternatives)))
3291 num (1- num)))
3292 (Info-goto-node (nth 1 (car Info-index-alternatives)))
3293 (if (> (nth 3 (car Info-index-alternatives)) 0)
3294 ;; Forward 2 lines less because `Info-find-node-2' initially
3295 ;; puts point to the 2nd line.
3296 (forward-line (- (nth 3 (car Info-index-alternatives)) 2))
3297 (forward-line 3) ; don't search in headers
3298 (let ((name (car (car Info-index-alternatives))))
3299 (Info-find-index-name name)))
3300 (message "Found `%s' in %s. %s"
3301 (car (car Info-index-alternatives))
3302 (nth 2 (car Info-index-alternatives))
3303 (if (cdr Info-index-alternatives)
3304 (format "(%s total; use `%s' for next)"
3305 (length Info-index-alternatives)
3306 (key-description (where-is-internal
3307 'Info-index-next overriding-local-map
3308 t)))
3309 "(Only match)")))
3311 (defun Info-find-index-name (name)
3312 "Move point to the place within the current node where NAME is defined."
3313 (let ((case-fold-search t))
3314 (if (or (re-search-forward (format
3315 "[a-zA-Z]+: %s\\( \\|$\\)"
3316 (regexp-quote name)) nil t)
3317 ;; Find a function definition with a return type.
3318 (re-search-forward (format
3319 "[a-zA-Z]+: [a-zA-Z0-9_ *&]+ %s\\( \\|$\\)"
3320 (regexp-quote name)) nil t)
3321 (search-forward (format "`%s'" name) nil t)
3322 (and (string-match "\\`.*\\( (.*)\\)\\'" name)
3323 (search-forward
3324 (format "`%s'" (substring name 0 (match-beginning 1)))
3325 nil t))
3326 (search-forward name nil t)
3327 ;; Try again without the " <1>" makeinfo can append
3328 (and (string-match "\\`\\(.*\\) <[0-9]+>\\'" name)
3329 (Info-find-index-name (match-string 1 name))))
3330 (progn (beginning-of-line) t) ;; non-nil for recursive call
3331 (goto-char (point-min)))))
3333 (add-to-list 'Info-virtual-nodes
3334 '("\\`\\*Index.*\\*\\'"
3335 (find-node . Info-virtual-index-find-node)
3336 (slow . t)
3339 (defvar Info-virtual-index-nodes nil
3340 "Alist of cached matched index search nodes.
3341 Each element is ((FILENAME . TOPIC) MATCHES) where
3342 FILENAME is the file name of the manual,
3343 TOPIC is the search string given as an argument to `Info-virtual-index',
3344 MATCHES is a list of index matches found by `Info-index'.")
3346 (defun Info-virtual-index-find-node (filename nodename &optional _no-going-back)
3347 "Index-specific implementation of `Info-find-node-2'."
3348 ;; Generate Index-like menu of matches
3349 (if (string-match "^\\*Index for `\\(.+\\)'\\*$" nodename)
3350 ;; Generate Index-like menu of matches
3351 (let* ((topic (match-string 1 nodename))
3352 (matches (cdr (assoc (cons (or filename Info-current-file) topic)
3353 Info-virtual-index-nodes))))
3354 (insert (format "\n\^_\nFile: %s, Node: %s, Up: *Index*\n\n"
3355 (or filename Info-current-file) nodename))
3356 (insert "Info Virtual Index\n")
3357 (insert "******************\n\n")
3358 (insert "Index entries that match `" topic "':\n\n")
3359 (insert "\0\b[index\0\b]\n")
3360 (if (null matches)
3361 (insert "No matches found.\n")
3362 (insert "* Menu:\n\n")
3363 (dolist (entry matches)
3364 (insert (format "* %-38s %s.%s\n"
3365 (format "%s [%s]:" (nth 0 entry) (nth 2 entry))
3366 (nth 1 entry)
3367 (if (nth 3 entry)
3368 (format " (line %s)" (nth 3 entry))
3369 ""))))))
3370 ;; Else, Generate a list of previous search results
3371 (let ((nodes (reverse Info-virtual-index-nodes)))
3372 (insert (format "\n\^_\nFile: %s, Node: %s, Up: Top\n\n"
3373 (or filename Info-current-file) nodename))
3374 (insert "Info Virtual Index\n")
3375 (insert "******************\n\n")
3376 (insert "This is a list of search results produced by\n"
3377 "`Info-virtual-index' for the current manual.\n\n")
3378 (insert "* Menu:\n\n")
3379 (dolist (nodeinfo nodes)
3380 (when (equal (car (nth 0 nodeinfo)) (or filename Info-current-file))
3381 (insert
3382 (format "* %-20s %s.\n"
3383 (format "*Index for `%s'*::" (cdr (nth 0 nodeinfo)))
3384 (cdr (nth 0 nodeinfo)))))))))
3386 (defun Info-virtual-index (topic)
3387 "Show a node with all lines in the index containing a string TOPIC.
3388 Like `Info-index' but displays a node with index search results.
3389 Give an empty topic name to go to the node with links to previous
3390 search results."
3391 ;; `interactive' is a copy from `Info-index'
3392 (interactive
3393 (list
3394 (let ((completion-ignore-case t)
3395 (Info-complete-menu-buffer (clone-buffer))
3396 (Info-complete-nodes (Info-index-nodes))
3397 (Info-history-list nil))
3398 (if (equal Info-current-file "dir")
3399 (error "The Info directory node has no index; use m to select a manual"))
3400 (unwind-protect
3401 (with-current-buffer Info-complete-menu-buffer
3402 (Info-goto-index)
3403 (completing-read "Index topic: " 'Info-complete-menu-item))
3404 (kill-buffer Info-complete-menu-buffer)))))
3405 (if (equal topic "")
3406 (Info-find-node Info-current-file "*Index*")
3407 (unless (assoc (cons Info-current-file topic) Info-virtual-index-nodes)
3408 (let ((orignode Info-current-node)
3409 (ohist-list Info-history-list))
3410 ;; Reuse `Info-index' to set `Info-index-alternatives'.
3411 (Info-index topic)
3412 (push (cons (cons Info-current-file topic) Info-index-alternatives)
3413 Info-virtual-index-nodes)
3414 ;; Clean up unnecessary side-effects of `Info-index'.
3415 (setq Info-history-list ohist-list)
3416 (Info-goto-node orignode)
3417 (message "")))
3418 (Info-find-node Info-current-file (format "*Index for `%s'*" topic))))
3420 (add-to-list 'Info-virtual-files
3421 '("\\`\\*Apropos\\*\\'"
3422 (toc-nodes . Info-apropos-toc-nodes)
3423 (find-file . Info-apropos-find-file)
3424 (find-node . Info-apropos-find-node)
3425 (slow . t)
3428 (defvar Info-apropos-file "*Apropos*"
3429 "Info file name of the virtual manual for matches of `info-apropos'.")
3431 (defvar Info-apropos-nodes nil
3432 "Alist of cached apropos matched nodes.
3433 Each element is (NODENAME STRING MATCHES) where
3434 NODENAME is the name of the node that holds the search result,
3435 STRING is the search string given as an argument to `info-apropos',
3436 MATCHES is a list of index matches found by `Info-apropos-matches'.")
3438 (defun Info-apropos-toc-nodes (filename)
3439 "Apropos-specific implementation of `Info-toc-nodes'."
3440 (let ((nodes (mapcar 'car (reverse Info-apropos-nodes))))
3441 `(,filename
3442 ("Top" nil nil ,nodes)
3443 ,@(mapcar (lambda (node) `(,node "Top" nil nil)) nodes))))
3445 (defun Info-apropos-find-file (filename &optional _noerror)
3446 "Apropos-specific implementation of `Info-find-file'."
3447 filename)
3449 (defun Info-apropos-find-node (_filename nodename &optional _no-going-back)
3450 "Apropos-specific implementation of `Info-find-node-2'."
3451 (if (equal nodename "Top")
3452 ;; Generate Top menu
3453 (let ((nodes (reverse Info-apropos-nodes)))
3454 (insert (format "\n\^_\nFile: %s, Node: %s, Up: (dir)\n\n"
3455 Info-apropos-file nodename))
3456 (insert "Apropos Index\n")
3457 (insert "*************\n\n")
3458 (insert "This is a list of search results produced by `info-apropos'.\n\n")
3459 (insert "* Menu:\n\n")
3460 (dolist (nodeinfo nodes)
3461 (insert (format "* %-20s %s.\n"
3462 (format "%s::" (nth 0 nodeinfo))
3463 (nth 1 nodeinfo)))))
3464 ;; Else, Generate Index-like menu of matches
3465 (let* ((nodeinfo (assoc nodename Info-apropos-nodes))
3466 (matches (nth 2 nodeinfo)))
3467 (when matches
3468 (insert (format "\n\^_\nFile: %s, Node: %s, Up: Top\n\n"
3469 Info-apropos-file nodename))
3470 (insert "Apropos Index\n")
3471 (insert "*************\n\n")
3472 (insert "Index entries that match `" (nth 1 nodeinfo) "':\n\n")
3473 (insert "\0\b[index\0\b]\n")
3474 (if (eq matches t)
3475 (insert "No matches found.\n")
3476 (insert "* Menu:\n\n")
3477 (dolist (entry matches)
3478 (insert (format "* %-38s (%s)%s.%s\n"
3479 (format "%s [%s]:" (nth 1 entry) (nth 0 entry))
3480 (nth 0 entry)
3481 (nth 2 entry)
3482 (if (nth 3 entry)
3483 (format " (line %s)" (nth 3 entry))
3484 "")))))))))
3486 (defun Info-apropos-matches (string)
3487 "Collect STRING matches from all known Info files on your system.
3488 Return a list of matches where each element is in the format
3489 \((FILENAME INDEXTEXT NODENAME LINENUMBER))."
3490 (unless (string= string "")
3491 (let ((pattern (format "\n\\* +\\([^\n]*%s[^\n]*\\):[ \t]+\\([^\n]+\\)\\.\\(?:[ \t\n]*(line +\\([0-9]+\\))\\)?"
3492 (regexp-quote string)))
3493 (ohist Info-history)
3494 (ohist-list Info-history-list)
3495 (current-node Info-current-node)
3496 (current-file Info-current-file)
3497 manuals matches node nodes)
3498 (let ((Info-fontify-maximum-menu-size nil))
3499 (Info-directory)
3500 ;; current-node and current-file are nil when they invoke info-apropos
3501 ;; as the first Info command, i.e. info-apropos loads info.el. In that
3502 ;; case, we use (DIR)Top instead, to avoid signaling an error after
3503 ;; the search is complete.
3504 (when (null current-node)
3505 (setq current-file Info-current-file)
3506 (setq current-node Info-current-node))
3507 (message "Searching indices...")
3508 (goto-char (point-min))
3509 (re-search-forward "\\* Menu: *\n" nil t)
3510 (while (re-search-forward "\\*.*: *(\\([^)]+\\))" nil t)
3511 ;; add-to-list makes sure we don't have duplicates in `manuals',
3512 ;; so that the following dolist loop runs faster.
3513 (add-to-list 'manuals (match-string 1)))
3514 (dolist (manual (nreverse manuals))
3515 (message "Searching %s" manual)
3516 (condition-case err
3517 (if (setq nodes (Info-index-nodes (Info-find-file manual)))
3518 (save-excursion
3519 (Info-find-node manual (car nodes))
3520 (while
3521 (progn
3522 (goto-char (point-min))
3523 (while (re-search-forward pattern nil t)
3524 (setq matches
3525 (cons (list manual
3526 (match-string-no-properties 1)
3527 (match-string-no-properties 2)
3528 (match-string-no-properties 3))
3529 matches)))
3530 (setq nodes (cdr nodes) node (car nodes)))
3531 (Info-goto-node node))))
3532 (error
3533 (message "%s" (if (eq (car-safe err) 'error)
3534 (nth 1 err) err))
3535 (sit-for 1 t)))))
3536 (Info-find-node current-file current-node)
3537 (setq Info-history ohist
3538 Info-history-list ohist-list)
3539 (message "Searching indices...done")
3540 (or (nreverse matches) t))))
3542 ;;;###autoload
3543 (defun info-apropos (string)
3544 "Grovel indices of all known Info files on your system for STRING.
3545 Build a menu of the possible matches."
3546 (interactive "sIndex apropos: ")
3547 (if (equal string "")
3548 (Info-find-node Info-apropos-file "Top")
3549 (let* ((nodes Info-apropos-nodes) nodename)
3550 (while (and nodes (not (equal string (nth 1 (car nodes)))))
3551 (setq nodes (cdr nodes)))
3552 (if nodes
3553 (Info-find-node Info-apropos-file (car (car nodes)))
3554 (setq nodename (format "Index for `%s'" string))
3555 (push (list nodename string (Info-apropos-matches string))
3556 Info-apropos-nodes)
3557 (Info-find-node Info-apropos-file nodename)))))
3559 (add-to-list 'Info-virtual-files
3560 '("\\`\\*Finder.*\\*\\'"
3561 (find-file . Info-finder-find-file)
3562 (find-node . Info-finder-find-node)
3565 (defvar Info-finder-file "*Finder*"
3566 "Info file name of the virtual Info keyword finder manual.")
3568 (defun Info-finder-find-file (filename &optional _noerror)
3569 "Finder-specific implementation of `Info-find-file'."
3570 filename)
3572 (defvar finder-known-keywords)
3573 (declare-function find-library-name "find-func" (library))
3574 (declare-function finder-unknown-keywords "finder" ())
3575 (declare-function lm-commentary "lisp-mnt" (&optional file))
3576 (defvar finder-keywords-hash)
3577 (defvar package--builtins) ; finder requires package
3579 (defun Info-finder-find-node (_filename nodename &optional _no-going-back)
3580 "Finder-specific implementation of `Info-find-node-2'."
3581 (require 'finder)
3582 (cond
3583 ((equal nodename "Top")
3584 ;; Display Top menu with descriptions of the keywords
3585 (insert (format "\n\^_\nFile: %s, Node: %s, Up: (dir)\n\n"
3586 Info-finder-file nodename))
3587 (insert "Finder Keywords\n")
3588 (insert "***************\n\n")
3589 (insert "* Menu:\n\n")
3590 (dolist (assoc (append '((all . "All package info")
3591 (unknown . "Unknown keywords"))
3592 finder-known-keywords))
3593 (let ((keyword (car assoc)))
3594 (insert (format "* %s %s.\n"
3595 (concat (symbol-name keyword) ": "
3596 "Keyword " (symbol-name keyword) ".")
3597 (cdr assoc))))))
3598 ((equal nodename "Keyword unknown")
3599 ;; Display unknown keywords
3600 (insert (format "\n\^_\nFile: %s, Node: %s, Up: Top\n\n"
3601 Info-finder-file nodename))
3602 (insert "Finder Unknown Keywords\n")
3603 (insert "***********************\n\n")
3604 (insert "* Menu:\n\n")
3605 (mapc
3606 (lambda (assoc)
3607 (insert (format "* %-14s %s.\n"
3608 (concat (symbol-name (car assoc)) ": "
3609 "Keyword " (symbol-name (car assoc)) ".")
3610 (cdr assoc))))
3611 (finder-unknown-keywords)))
3612 ((equal nodename "Keyword all")
3613 ;; Display all package info.
3614 (insert (format "\n\^_\nFile: %s, Node: %s, Up: Top\n\n"
3615 Info-finder-file nodename))
3616 (insert "Finder Package Info\n")
3617 (insert "*******************\n\n")
3618 (insert "* Menu:\n\n")
3619 (let (desc)
3620 (dolist (package package--builtins)
3621 (setq desc (cdr-safe package))
3622 (when (vectorp desc)
3623 (insert (format "* %-16s %s.\n"
3624 (concat (symbol-name (car package)) "::")
3625 (aref desc 2)))))))
3626 ((string-match "\\`Keyword " nodename)
3627 (setq nodename (substring nodename (match-end 0)))
3628 ;; Display packages that match the keyword
3629 ;; or the list of keywords separated by comma.
3630 (insert (format "\n\^_\nFile: %s, Node: Keyword %s, Up: Top\n\n"
3631 Info-finder-file nodename))
3632 (insert "Finder Packages\n")
3633 (insert "***************\n\n")
3634 (insert
3635 "The following packages match the keyword `" nodename "':\n\n")
3636 (insert "* Menu:\n\n")
3637 (let ((keywords
3638 (mapcar 'intern (if (string-match-p "," nodename)
3639 (split-string nodename ",[ \t\n]*" t)
3640 (list nodename))))
3641 hits desc)
3642 (dolist (keyword keywords)
3643 (push (copy-tree (gethash keyword finder-keywords-hash)) hits))
3644 (setq hits (delete-dups (apply 'append hits)))
3645 (dolist (package hits)
3646 (setq desc (cdr-safe (assq package package--builtins)))
3647 (when (vectorp desc)
3648 (insert (format "* %-16s %s.\n"
3649 (concat (symbol-name package) "::")
3650 (aref desc 2)))))))
3652 ;; Display commentary section
3653 (insert (format "\n\^_\nFile: %s, Node: %s, Up: Top\n\n"
3654 Info-finder-file nodename))
3655 (insert "Finder Commentary\n")
3656 (insert "*****************\n\n")
3657 (insert
3658 "Commentary section of the package `" nodename "':\n\n")
3659 (let ((str (lm-commentary (find-library-name nodename))))
3660 (if (null str)
3661 (insert "Can't find any Commentary section\n\n")
3662 (insert
3663 (with-temp-buffer
3664 (insert str)
3665 (goto-char (point-min))
3666 (delete-blank-lines)
3667 (goto-char (point-max))
3668 (delete-blank-lines)
3669 (goto-char (point-min))
3670 (while (re-search-forward "^;+ ?" nil t)
3671 (replace-match "" nil nil))
3672 (buffer-string))))))))
3674 ;;;###autoload
3675 (defun info-finder (&optional keywords)
3676 "Display descriptions of the keywords in the Finder virtual manual.
3677 In interactive use, a prefix argument directs this command to read
3678 a list of keywords separated by comma. After that, it displays a node
3679 with a list of packages that contain all specified keywords."
3680 (interactive
3681 (when current-prefix-arg
3682 (require 'finder)
3683 (list
3684 (completing-read-multiple
3685 "Keywords (separated by comma): "
3686 (mapcar 'symbol-name (mapcar 'car (append finder-known-keywords
3687 (finder-unknown-keywords))))
3688 nil t))))
3689 (require 'finder)
3690 (if keywords
3691 (Info-find-node Info-finder-file (mapconcat 'identity keywords ", "))
3692 (Info-find-node Info-finder-file "Top")))
3695 (defun Info-undefined ()
3696 "Make command be undefined in Info."
3697 (interactive)
3698 (ding))
3700 (defun Info-help ()
3701 "Enter the Info tutorial."
3702 (interactive)
3703 (delete-other-windows)
3704 (Info-find-node "info"
3705 (if (< (window-height) 23)
3706 "Help-Small-Screen"
3707 "Help")))
3709 (defun Info-summary ()
3710 "Display a brief summary of all Info commands."
3711 (interactive)
3712 (save-window-excursion
3713 (switch-to-buffer "*Help*")
3714 (setq buffer-read-only nil)
3715 (erase-buffer)
3716 (insert (documentation 'Info-mode))
3717 (help-mode)
3718 (goto-char (point-min))
3719 (let (ch flag)
3720 (while (progn (setq flag (not (pos-visible-in-window-p (point-max))))
3721 (message (if flag "Type Space to see more"
3722 "Type Space to return to Info"))
3723 (if (not (eq ?\s (setq ch (read-event))))
3724 (progn (setq unread-command-events (list ch)) nil)
3725 flag))
3726 (scroll-up)))
3727 (bury-buffer "*Help*")))
3729 (defun Info-get-token (pos start all &optional errorstring)
3730 "Return the token around POS.
3731 POS must be somewhere inside the token.
3732 START is a regular expression which will match the
3733 beginning of the tokens delimited string.
3734 ALL is a regular expression with a single
3735 parenthesized subpattern which is the token to be
3736 returned. E.g. '{\(.*\)}' would return any string
3737 enclosed in braces around POS.
3738 ERRORSTRING optional fourth argument, controls action on no match:
3739 nil: return nil
3740 t: beep
3741 a string: signal an error, using that string."
3742 (let ((case-fold-search t))
3743 (save-excursion
3744 (goto-char pos)
3745 ;; First look for a match for START that goes across POS.
3746 (while (and (not (bobp)) (> (point) (- pos (length start)))
3747 (not (looking-at start)))
3748 (forward-char -1))
3749 ;; If we did not find one, search back for START
3750 ;; (this finds only matches that end at or before POS).
3751 (or (looking-at start)
3752 (progn
3753 (goto-char pos)
3754 (re-search-backward start (max (point-min) (- pos 200)) 'yes)))
3755 (let (found)
3756 (while (and (re-search-forward all (min (point-max) (+ pos 200)) 'yes)
3757 (not (setq found (and (<= (match-beginning 0) pos)
3758 (> (match-end 0) pos))))))
3759 (if (and found (<= (match-beginning 0) pos)
3760 (> (match-end 0) pos))
3761 (match-string-no-properties 1)
3762 (cond ((null errorstring)
3763 nil)
3764 ((eq errorstring t)
3765 (beep)
3766 nil)
3768 (error "No %s around position %d" errorstring pos))))))))
3770 (defun Info-mouse-follow-nearest-node (click)
3771 "\\<Info-mode-map>Follow a node reference near point.
3772 Like \\[Info-menu], \\[Info-follow-reference], \\[Info-next], \\[Info-prev] or \\[Info-up] command, depending on where you click.
3773 At end of the node's text, moves to the next node, or up if none."
3774 (interactive "e")
3775 (mouse-set-point click)
3776 (and (not (Info-follow-nearest-node))
3777 (save-excursion (forward-line 1) (eobp))
3778 (Info-next-preorder)))
3780 (defun Info-follow-nearest-node (&optional fork)
3781 "Follow a node reference near point.
3782 If point is on a reference, follow that reference. Otherwise,
3783 if point is in a menu item description, follow that menu item.
3785 If FORK is non-nil (interactively with a prefix arg), show the node in
3786 a new Info buffer.
3787 If FORK is a string, it is the name to use for the new buffer."
3788 (interactive "P")
3789 (or (Info-try-follow-nearest-node fork)
3790 (when (save-excursion
3791 (search-backward "\n* menu:" nil t))
3792 (save-excursion
3793 (beginning-of-line)
3794 (while (not (or (bobp) (looking-at "[^ \t]\\|[ \t]*$")))
3795 (beginning-of-line 0))
3796 (when (looking-at "\\* +\\([^\t\n]*\\):")
3797 (Info-goto-node
3798 (Info-extract-menu-item (match-string-no-properties 1)) fork)
3799 t)))
3800 (and (eq this-command 'Info-mouse-follow-nearest-node)
3801 ;; Don't raise an error when mouse-1 is bound to this - it's
3802 ;; often used to simply select the window or frame.
3803 (eq 'mouse-1 (event-basic-type last-input-event)))
3804 (user-error "Point neither on reference nor in menu item description")))
3806 ;; Common subroutine.
3807 (defun Info-try-follow-nearest-node (&optional fork)
3808 "Follow a node reference near point. Return non-nil if successful.
3809 If FORK is non-nil, it is passed to `Info-goto-node'."
3810 (let (node)
3811 (cond
3812 ((setq node (Info-get-token (point) "[hf]t?tps?://"
3813 "\\([hf]t?tps?://[^ \t\n\"`({<>})']+\\)"))
3814 (browse-url node)
3815 (setq node t))
3816 ((setq node (Info-get-token (point) "\\*note[ \n\t]+"
3817 "\\*note[ \n\t]+\\([^:]*\\):\\(:\\|[ \n\t]*(\\)?"))
3818 (Info-follow-reference node fork))
3819 ;; menu item: node name
3820 ((setq node (Info-get-token (point) "\\* +" "\\* +\\([^:]*\\)::"))
3821 (Info-goto-node node fork))
3822 ;; menu item: node name or index entry
3823 ((Info-get-token (point) "\\* +" "\\* +\\(.*\\): ")
3824 (beginning-of-line)
3825 (forward-char 2)
3826 (setq node (Info-extract-menu-node-name nil (Info-index-node)))
3827 (Info-goto-node node fork))
3828 ((setq node (Info-get-token (point) "Up: " "Up: \\([^,\n\t]*\\)"))
3829 (Info-goto-node node fork))
3830 ((setq node (Info-get-token (point) "Next: " "Next: \\([^,\n\t]*\\)"))
3831 (Info-goto-node node fork))
3832 ((setq node (Info-get-token (point) "File: " "File: \\([^,\n\t]*\\)"))
3833 (Info-goto-node "Top" fork))
3834 ((setq node (Info-get-token (point) "Prev: " "Prev: \\([^,\n\t]*\\)"))
3835 (Info-goto-node node fork)))
3836 node))
3838 (defun Info-mouse-follow-link (click)
3839 "Follow a link where you click."
3840 (interactive "@e")
3841 (let* ((position (event-start click))
3842 (posn-string (and position (posn-string position)))
3843 (link-args (if posn-string
3844 (get-text-property (cdr posn-string)
3845 'link-args
3846 (car posn-string))
3847 (get-char-property (posn-point position)
3848 'link-args))))
3849 (cond ((stringp link-args)
3850 (Info-goto-node link-args))
3851 ;; These special values of the `link-args' property are used
3852 ;; for navigation; see `Info-fontify-node'.
3853 ((eq link-args 'prev) (Info-prev))
3854 ((eq link-args 'next) (Info-next))
3855 ((eq link-args 'up) (Info-up)))))
3858 (defvar Info-mode-map
3859 (let ((map (make-keymap)))
3860 (suppress-keymap map)
3861 (define-key map "." 'beginning-of-buffer)
3862 (define-key map " " 'Info-scroll-up)
3863 (define-key map "\C-m" 'Info-follow-nearest-node)
3864 (define-key map "\t" 'Info-next-reference)
3865 (define-key map "\e\t" 'Info-prev-reference)
3866 (define-key map [backtab] 'Info-prev-reference)
3867 (define-key map "1" 'Info-nth-menu-item)
3868 (define-key map "2" 'Info-nth-menu-item)
3869 (define-key map "3" 'Info-nth-menu-item)
3870 (define-key map "4" 'Info-nth-menu-item)
3871 (define-key map "5" 'Info-nth-menu-item)
3872 (define-key map "6" 'Info-nth-menu-item)
3873 (define-key map "7" 'Info-nth-menu-item)
3874 (define-key map "8" 'Info-nth-menu-item)
3875 (define-key map "9" 'Info-nth-menu-item)
3876 (define-key map "0" 'undefined)
3877 (define-key map "?" 'Info-summary)
3878 (define-key map "]" 'Info-forward-node)
3879 (define-key map "[" 'Info-backward-node)
3880 (define-key map "<" 'Info-top-node)
3881 (define-key map ">" 'Info-final-node)
3882 (define-key map "b" 'beginning-of-buffer)
3883 (put 'beginning-of-buffer :advertised-binding "b")
3884 (define-key map "d" 'Info-directory)
3885 (define-key map "e" 'end-of-buffer)
3886 (define-key map "f" 'Info-follow-reference)
3887 (define-key map "g" 'Info-goto-node)
3888 (define-key map "h" 'Info-help)
3889 (define-key map "i" 'Info-index)
3890 (define-key map "I" 'Info-virtual-index)
3891 (define-key map "l" 'Info-history-back)
3892 (define-key map "L" 'Info-history)
3893 (define-key map "m" 'Info-menu)
3894 (define-key map "n" 'Info-next)
3895 (define-key map "p" 'Info-prev)
3896 (define-key map "q" 'Info-exit)
3897 (define-key map "r" 'Info-history-forward)
3898 (define-key map "s" 'Info-search)
3899 (define-key map "S" 'Info-search-case-sensitively)
3900 (define-key map "\M-n" 'clone-buffer)
3901 (define-key map "t" 'Info-top-node)
3902 (define-key map "T" 'Info-toc)
3903 (define-key map "u" 'Info-up)
3904 ;; `w' for consistency with `dired-copy-filename-as-kill'.
3905 (define-key map "w" 'Info-copy-current-node-name)
3906 (define-key map "c" 'Info-copy-current-node-name)
3907 ;; `^' for consistency with `dired-up-directory'.
3908 (define-key map "^" 'Info-up)
3909 (define-key map "," 'Info-index-next)
3910 (define-key map "\177" 'Info-scroll-down)
3911 (define-key map [mouse-2] 'Info-mouse-follow-nearest-node)
3912 (define-key map [follow-link] 'mouse-face)
3913 (define-key map [XF86Back] 'Info-history-back)
3914 (define-key map [XF86Forward] 'Info-history-forward)
3915 map)
3916 "Keymap containing Info commands.")
3919 (defun Info-check-pointer (item)
3920 "Non-nil if ITEM is present in this node."
3921 (condition-case nil
3922 (Info-extract-pointer item)
3923 (error nil)))
3925 (easy-menu-define
3926 Info-mode-menu Info-mode-map
3927 "Menu for Info files."
3928 '("Info"
3929 ["Up" Info-up :active (Info-check-pointer "up")
3930 :help "Go up in the Info tree"]
3931 ["Next" Info-next :active (Info-check-pointer "next")
3932 :help "Go to the next node"]
3933 ["Previous" Info-prev :active (Info-check-pointer "prev[ious]*")
3934 :help "Go to the previous node"]
3935 ["Backward" Info-backward-node
3936 :help "Go backward one node, considering all as a sequence"]
3937 ["Forward" Info-forward-node
3938 :help "Go forward one node, considering all as a sequence"]
3939 ["Beginning" beginning-of-buffer
3940 :help "Go to beginning of this node"]
3941 ["Top" Info-top-node
3942 :help "Go to top node of file"]
3943 ["Final Node" Info-final-node
3944 :help "Go to final node in this file"]
3945 ("Menu Item" ["You should never see this" report-emacs-bug t])
3946 ("Reference" ["You should never see this" report-emacs-bug t])
3947 ["Search..." Info-search
3948 :help "Search for regular expression in this Info file"]
3949 ["Search Next" Info-search-next
3950 :help "Search for another occurrence of regular expression"]
3951 ["Go to Node..." Info-goto-node
3952 :help "Go to a named node"]
3953 ["Back in history" Info-history-back :active Info-history
3954 :help "Go back in history to the last node you were at"]
3955 ["Forward in history" Info-history-forward :active Info-history-forward
3956 :help "Go forward in history"]
3957 ["History" Info-history :active Info-history-list
3958 :help "Go to menu of visited nodes"]
3959 ["Table of Contents" Info-toc
3960 :help "Go to table of contents"]
3961 ("Index"
3962 ["Lookup a String..." Info-index
3963 :help "Look for a string in the index items"]
3964 ["Next Matching Item" Info-index-next :active Info-index-alternatives
3965 :help "Look for another occurrence of previous item"]
3966 ["Lookup a string and display index of results..." Info-virtual-index
3967 :help "Look for a string in the index items and display node with results"]
3968 ["Lookup a string in all indices..." info-apropos
3969 :help "Look for a string in the indices of all manuals"])
3970 ["Copy Node Name" Info-copy-current-node-name
3971 :help "Copy the name of the current node into the kill ring"]
3972 ["Clone Info buffer" clone-buffer
3973 :help "Create a twin copy of the current Info buffer."]
3974 ["Exit" Info-exit :help "Stop reading Info"]))
3977 (defvar info-tool-bar-map
3978 (let ((map (make-sparse-keymap)))
3979 (tool-bar-local-item-from-menu 'Info-history-back "left-arrow" map Info-mode-map
3980 :rtl "right-arrow"
3981 :label "Back"
3982 :vert-only t)
3983 (tool-bar-local-item-from-menu 'Info-history-forward "right-arrow" map Info-mode-map
3984 :rtl "left-arrow"
3985 :label "Forward"
3986 :vert-only t)
3987 (define-key-after map [separator-1] menu-bar-separator)
3988 (tool-bar-local-item-from-menu 'Info-prev "prev-node" map Info-mode-map
3989 :rtl "next-node")
3990 (tool-bar-local-item-from-menu 'Info-next "next-node" map Info-mode-map
3991 :rtl "prev-node")
3992 (tool-bar-local-item-from-menu 'Info-up "up-node" map Info-mode-map
3993 :vert-only t)
3994 (define-key-after map [separator-2] menu-bar-separator)
3995 (tool-bar-local-item-from-menu 'Info-top-node "home" map Info-mode-map
3996 :vert-only t)
3997 (tool-bar-local-item-from-menu 'Info-goto-node "jump-to" map Info-mode-map)
3998 (define-key-after map [separator-3] menu-bar-separator)
3999 (tool-bar-local-item-from-menu 'Info-index "index" map Info-mode-map
4000 :label "Index")
4001 (tool-bar-local-item-from-menu 'Info-search "search" map Info-mode-map
4002 :vert-only t)
4003 (tool-bar-local-item-from-menu 'Info-exit "exit" map Info-mode-map
4004 :vert-only t)
4005 map))
4007 (defvar Info-menu-last-node nil)
4008 ;; Last node the menu was created for.
4009 ;; Value is a list, (FILE-NAME NODE-NAME).
4011 (defun Info-menu-update ()
4012 "Update the Info menu for the current node."
4013 (condition-case nil
4014 (if (or (not (eq major-mode 'Info-mode))
4015 (equal (list Info-current-file Info-current-node)
4016 Info-menu-last-node))
4018 ;; Update menu menu.
4019 (let* ((Info-complete-menu-buffer (current-buffer))
4020 (items (nreverse (condition-case nil
4021 (Info-complete-menu-item "" nil t)
4022 (error nil))))
4023 entries current
4024 (number 0))
4025 (while (and items (< number 9))
4026 (setq current (car items)
4027 items (cdr items)
4028 number (1+ number))
4029 (setq entries (cons `[,current
4030 (Info-menu ,current)
4031 :keys ,(format "%d" number)]
4032 entries)))
4033 (if items
4034 (setq entries (cons ["Other..." Info-menu t] entries)))
4035 (or entries
4036 (setq entries (list ["No menu" nil nil] nil :active)))
4037 (easy-menu-change '("Info") "Menu Item" (nreverse entries)))
4038 ;; Update reference menu. Code stolen from `Info-follow-reference'.
4039 (let ((items nil)
4040 str i entries current
4041 (number 0)
4042 (case-fold-search t))
4043 (save-excursion
4044 (goto-char (point-min))
4045 (while (re-search-forward "\\*note[ \n\t]+\\([^:]*\\):" nil t)
4046 (setq str (match-string 1))
4047 (setq i 0)
4048 (while (setq i (string-match "[ \n\t]+" str i))
4049 (setq str (concat (substring str 0 i) " "
4050 (substring str (match-end 0))))
4051 (setq i (1+ i)))
4052 (setq items
4053 (cons str items))))
4054 (while (and items (< number 9))
4055 (setq current (car items)
4056 items (cdr items)
4057 number (1+ number))
4058 (setq entries (cons `[,current
4059 (Info-follow-reference ,current)
4061 entries)))
4062 (if items
4063 (setq entries (cons ["Other..." Info-follow-reference t]
4064 entries)))
4065 (or entries
4066 (setq entries (list ["No references" nil nil] nil :active)))
4067 (easy-menu-change '("Info") "Reference" (nreverse entries)))
4068 ;; Update last seen node.
4069 (setq Info-menu-last-node (list Info-current-file Info-current-node)))
4070 ;; Try to avoid entering infinite beep mode in case of errors.
4071 (error (ding))))
4074 (defun Info-copy-current-node-name (&optional arg)
4075 "Put the name of the current Info node into the kill ring.
4076 The name of the Info file is prepended to the node name in parentheses.
4077 With a zero prefix arg, put the name inside a function call to `info'."
4078 (interactive "P")
4079 (unless Info-current-node
4080 (user-error "No current Info node"))
4081 (let ((node (if (stringp Info-current-file)
4082 (concat "(" (file-name-sans-extension
4083 (file-name-nondirectory Info-current-file))
4084 ") "
4085 Info-current-node))))
4086 (if (zerop (prefix-numeric-value arg))
4087 (setq node (concat "(info \"" node "\")")))
4088 (unless (stringp Info-current-file)
4089 (setq node (format "(Info-find-node '%S '%S)"
4090 Info-current-file Info-current-node)))
4091 (kill-new node)
4092 (message "%s" node)))
4095 ;; Info mode is suitable only for specially formatted data.
4096 (put 'Info-mode 'mode-class 'special)
4097 (put 'Info-mode 'no-clone-indirect t)
4099 (defvar tool-bar-map)
4100 (defvar bookmark-make-record-function)
4102 (defvar Info-mode-syntax-table
4103 (let ((st (copy-syntax-table text-mode-syntax-table)))
4104 ;; Use punctuation syntax for apostrophe because of
4105 ;; extensive use of quotes like `this' in Info manuals.
4106 (modify-syntax-entry ?' "." st)
4108 "Syntax table used in `Info-mode'.")
4110 ;; Autoload cookie needed by desktop.el
4111 ;;;###autoload
4112 (define-derived-mode Info-mode nil "Info"
4113 "Info mode provides commands for browsing through the Info documentation tree.
4114 Documentation in Info is divided into \"nodes\", each of which discusses
4115 one topic and contains references to other nodes which discuss related
4116 topics. Info has commands to follow the references and show you other nodes.
4118 \\<Info-mode-map>\
4119 \\[Info-help] Invoke the Info tutorial.
4120 \\[Info-exit] Quit Info: reselect previously selected buffer.
4122 Selecting other nodes:
4123 \\[Info-mouse-follow-nearest-node]
4124 Follow a node reference you click on.
4125 This works with menu items, cross references, and
4126 the \"next\", \"previous\" and \"up\", depending on where you click.
4127 \\[Info-follow-nearest-node] Follow a node reference near point, like \\[Info-mouse-follow-nearest-node].
4128 \\[Info-next] Move to the \"next\" node of this node.
4129 \\[Info-prev] Move to the \"previous\" node of this node.
4130 \\[Info-up] Move \"up\" from this node.
4131 \\[Info-menu] Pick menu item specified by name (or abbreviation).
4132 Picking a menu item causes another node to be selected.
4133 \\[Info-directory] Go to the Info directory node.
4134 \\[Info-top-node] Go to the Top node of this file.
4135 \\[Info-final-node] Go to the final node in this file.
4136 \\[Info-backward-node] Go backward one node, considering all nodes as forming one sequence.
4137 \\[Info-forward-node] Go forward one node, considering all nodes as forming one sequence.
4138 \\[Info-next-reference] Move cursor to next cross-reference or menu item.
4139 \\[Info-prev-reference] Move cursor to previous cross-reference or menu item.
4140 \\[Info-follow-reference] Follow a cross reference. Reads name of reference.
4141 \\[Info-history-back] Move back in history to the last node you were at.
4142 \\[Info-history-forward] Move forward in history to the node you returned from after using \\[Info-history-back].
4143 \\[Info-history] Go to menu of visited nodes.
4144 \\[Info-toc] Go to table of contents of the current Info file.
4146 Moving within a node:
4147 \\[Info-scroll-up] Normally, scroll forward a full screen.
4148 Once you scroll far enough in a node that its menu appears on the
4149 screen but after point, the next scroll moves into its first
4150 subnode. When after all menu items (or if there is no menu),
4151 move up to the parent node.
4152 \\[Info-scroll-down] Normally, scroll backward. If the beginning of the buffer is
4153 already visible, try to go to the previous menu entry, or up
4154 if there is none.
4155 \\[beginning-of-buffer] Go to beginning of node.
4157 Advanced commands:
4158 \\[Info-search] Search through this Info file for specified regexp,
4159 and select the node in which the next occurrence is found.
4160 \\[Info-search-case-sensitively] Search through this Info file for specified regexp case-sensitively.
4161 \\[isearch-forward], \\[isearch-forward-regexp] Use Isearch to search through multiple Info nodes.
4162 \\[Info-index] Search for a topic in this manual's Index and go to index entry.
4163 \\[Info-index-next] (comma) Move to the next match from a previous \\<Info-mode-map>\\[Info-index] command.
4164 \\[Info-virtual-index] Look for a string and display the index node with results.
4165 \\[info-apropos] Look for a string in the indices of all manuals.
4166 \\[Info-goto-node] Move to node specified by name.
4167 You may include a filename as well, as (FILENAME)NODENAME.
4168 1 .. 9 Pick first ... ninth item in node's menu.
4169 Every third `*' is highlighted to help pick the right number.
4170 \\[Info-copy-current-node-name] Put name of current Info node in the kill ring.
4171 \\[clone-buffer] Select a new cloned Info buffer in another window.
4172 \\[universal-argument] \\[info] Move to new Info file with completion.
4173 \\[universal-argument] N \\[info] Select Info buffer with prefix number in the name *info*<N>."
4174 :syntax-table Info-mode-syntax-table
4175 :abbrev-table text-mode-abbrev-table
4176 (setq tab-width 8)
4177 (add-hook 'activate-menubar-hook 'Info-menu-update nil t)
4178 (setq case-fold-search t)
4179 (setq buffer-read-only t)
4180 (make-local-variable 'Info-current-file)
4181 (make-local-variable 'Info-current-subfile)
4182 (make-local-variable 'Info-current-node)
4183 (set (make-local-variable 'Info-tag-table-marker) (make-marker))
4184 (set (make-local-variable 'Info-tag-table-buffer) nil)
4185 (make-local-variable 'Info-history)
4186 (make-local-variable 'Info-history-forward)
4187 (make-local-variable 'Info-index-alternatives)
4188 (if Info-use-header-line ; do not override global header lines
4189 (setq header-line-format
4190 '(:eval (get-text-property (point-min) 'header-line))))
4191 (set (make-local-variable 'tool-bar-map) info-tool-bar-map)
4192 ;; This is for the sake of the invisible text we use handling titles.
4193 (set (make-local-variable 'line-move-ignore-invisible) t)
4194 (set (make-local-variable 'desktop-save-buffer)
4195 'Info-desktop-buffer-misc-data)
4196 (set (make-local-variable 'widen-automatically) nil)
4197 (add-hook 'kill-buffer-hook 'Info-kill-buffer nil t)
4198 (add-hook 'clone-buffer-hook 'Info-clone-buffer nil t)
4199 (add-hook 'change-major-mode-hook 'font-lock-defontify nil t)
4200 (add-hook 'isearch-mode-hook 'Info-isearch-start nil t)
4201 (set (make-local-variable 'isearch-search-fun-function)
4202 'Info-isearch-search)
4203 (set (make-local-variable 'isearch-wrap-function)
4204 'Info-isearch-wrap)
4205 (set (make-local-variable 'isearch-push-state-function)
4206 'Info-isearch-push-state)
4207 (set (make-local-variable 'isearch-filter-predicate)
4208 'Info-isearch-filter)
4209 (set (make-local-variable 'revert-buffer-function)
4210 'Info-revert-buffer-function)
4211 (Info-set-mode-line)
4212 (set (make-local-variable 'bookmark-make-record-function)
4213 'Info-bookmark-make-record))
4215 ;; When an Info buffer is killed, make sure the associated tags buffer
4216 ;; is killed too.
4217 (defun Info-kill-buffer ()
4218 (and (eq major-mode 'Info-mode)
4219 Info-tag-table-buffer
4220 (kill-buffer Info-tag-table-buffer)))
4222 ;; Placed on `clone-buffer-hook'.
4223 (defun Info-clone-buffer ()
4224 (when (bufferp Info-tag-table-buffer)
4225 (setq Info-tag-table-buffer
4226 (with-current-buffer Info-tag-table-buffer (clone-buffer))))
4227 (let ((m Info-tag-table-marker))
4228 (when (markerp m)
4229 (setq Info-tag-table-marker
4230 (if (and (marker-position m) (bufferp Info-tag-table-buffer))
4231 (with-current-buffer Info-tag-table-buffer
4232 (copy-marker (marker-position m)))
4233 (make-marker))))))
4235 (defvar Info-edit-map (let ((map (make-sparse-keymap)))
4236 (set-keymap-parent map text-mode-map)
4237 (define-key map "\C-c\C-c" 'Info-cease-edit)
4238 map)
4239 "Local keymap used within `e' command of Info.")
4241 ;; Info-edit mode is suitable only for specially formatted data.
4242 (put 'Info-edit-mode 'mode-class 'special)
4244 (defun Info-edit-mode ()
4245 "Major mode for editing the contents of an Info node.
4246 Like text mode with the addition of `Info-cease-edit'
4247 which returns to Info mode for browsing.
4248 \\{Info-edit-map}"
4249 (use-local-map Info-edit-map)
4250 (setq major-mode 'Info-edit-mode)
4251 (setq mode-name "Info Edit")
4252 (kill-local-variable 'mode-line-buffer-identification)
4253 (setq buffer-read-only nil)
4254 (force-mode-line-update)
4255 (buffer-enable-undo (current-buffer))
4256 (run-mode-hooks 'Info-edit-mode-hook))
4258 (defun Info-edit ()
4259 "Edit the contents of this Info node.
4260 Allowed only if variable `Info-enable-edit' is non-nil."
4261 (interactive)
4262 (or Info-enable-edit
4263 (error "Editing Info nodes is not enabled"))
4264 (Info-edit-mode)
4265 (message "%s" (substitute-command-keys
4266 "Editing: Type \\<Info-edit-map>\\[Info-cease-edit] to return to info")))
4268 (defun Info-cease-edit ()
4269 "Finish editing Info node; switch back to Info proper."
4270 (interactive)
4271 ;; Do this first, so nothing has changed if user C-g's at query.
4272 (and (buffer-modified-p)
4273 (y-or-n-p "Save the file? ")
4274 (save-buffer))
4275 (use-local-map Info-mode-map)
4276 (setq major-mode 'Info-mode)
4277 (setq mode-name "Info")
4278 (Info-set-mode-line)
4279 (setq buffer-read-only t)
4280 (force-mode-line-update)
4281 (and (marker-position Info-tag-table-marker)
4282 (buffer-modified-p)
4283 (message "Tags may have changed. Use Info-tagify if necessary")))
4285 (defvar Info-file-list-for-emacs
4286 '("ediff" "eudc" "forms" "gnus" "info" ("Info" . "info") ("mh" . "mh-e")
4287 "sc" "message" ("dired" . "dired-x") "viper" "vip" "idlwave"
4288 ("c" . "ccmode") ("c++" . "ccmode") ("objc" . "ccmode")
4289 ("java" . "ccmode") ("idl" . "ccmode") ("pike" . "ccmode")
4290 ("skeleton" . "autotype") ("auto-insert" . "autotype")
4291 ("copyright" . "autotype") ("executable" . "autotype")
4292 ("time-stamp" . "autotype") ("quickurl" . "autotype")
4293 ("tempo" . "autotype") ("hippie-expand" . "autotype")
4294 ("cvs" . "pcl-cvs") ("ada" . "ada-mode") "calc"
4295 ("calcAlg" . "calc") ("calcDigit" . "calc") ("calcVar" . "calc")
4296 "ebrowse" "eshell" "cl" "reftex" "speedbar" "widget" "woman"
4297 ("mail-header" . "emacs-mime") ("mail-content" . "emacs-mime")
4298 ("mail-encode" . "emacs-mime") ("mail-decode" . "emacs-mime")
4299 ("rfc2045" . "emacs-mime")
4300 ("rfc2231" . "emacs-mime") ("rfc2047" . "emacs-mime")
4301 ("rfc2045" . "emacs-mime") ("rfc1843" . "emacs-mime")
4302 ("ietf-drums" . "emacs-mime") ("quoted-printable" . "emacs-mime")
4303 ("binhex" . "emacs-mime") ("uudecode" . "emacs-mime")
4304 ("mailcap" . "emacs-mime") ("mm" . "emacs-mime")
4305 ("mml" . "emacs-mime"))
4306 "List of Info files that describe Emacs commands.
4307 An element can be a file name, or a list of the form (PREFIX . FILE)
4308 where PREFIX is a name prefix and FILE is the file to look in.
4309 If the element is just a file name, the file name also serves as the prefix.")
4311 (defun Info-find-emacs-command-nodes (command)
4312 "Return a list of locations documenting COMMAND.
4313 The `info-file' property of COMMAND says which Info manual to search.
4314 If COMMAND has no property, the variable `Info-file-list-for-emacs'
4315 defines heuristics for which Info manual to try.
4316 The locations are of the format used in the variable `Info-history', i.e.
4317 \(FILENAME NODENAME BUFFERPOS), where BUFFERPOS is the line number
4318 in the first element of the returned list (which is treated specially in
4319 `Info-goto-emacs-command-node'), and 0 for the rest elements of a list."
4320 (let ((where '()) line-number
4321 (cmd-desc (concat "^\\* +" (regexp-quote (symbol-name command))
4322 "\\( <[0-9]+>\\)?:\\s *\\(.*\\)\\."
4323 "\\(?:[ \t\n]+(line +\\([0-9]+\\))\\)?"))
4324 (info-file "emacs")) ;default
4325 ;; Determine which Info file this command is documented in.
4326 (if (get command 'info-file)
4327 (setq info-file (get command 'info-file))
4328 ;; If it doesn't say explicitly, test its name against
4329 ;; various prefixes that we know.
4330 (let ((file-list Info-file-list-for-emacs))
4331 (while file-list
4332 (let* ((elt (car file-list))
4333 (name (if (consp elt)
4334 (car elt)
4335 elt))
4336 (file (if (consp elt) (cdr elt) elt))
4337 (case-fold-search nil)
4338 (regexp (concat "\\`" (regexp-quote name)
4339 "\\(\\'\\|-\\)")))
4340 (if (string-match regexp (symbol-name command))
4341 (setq info-file file file-list nil))
4342 (setq file-list (cdr file-list))))))
4343 (Info-find-node info-file "Top")
4344 ;; Bind Info-history to nil, to prevent the index nodes from
4345 ;; getting into the node history.
4346 (let ((Info-history nil)
4347 (Info-history-list nil)
4348 node (nodes (Info-index-nodes)))
4349 (Info-goto-node (car nodes))
4350 (while
4351 (progn
4352 (goto-char (point-min))
4353 (while (re-search-forward cmd-desc nil t)
4354 (setq where
4355 (cons (list Info-current-file
4356 (match-string-no-properties 2)
4358 where))
4359 (setq line-number (and (match-beginning 3)
4360 (string-to-number (match-string 3)))))
4361 (and (setq nodes (cdr nodes) node (car nodes))))
4362 (Info-goto-node node)))
4363 (if (and line-number where)
4364 (cons (list (nth 0 (car where)) (nth 1 (car where)) line-number)
4365 (cdr where))
4366 where)))
4368 ;;;###autoload (put 'Info-goto-emacs-command-node 'info-file (purecopy "emacs"))
4369 ;;;###autoload
4370 (defun Info-goto-emacs-command-node (command)
4371 "Go to the Info node in the Emacs manual for command COMMAND.
4372 The command is found by looking up in Emacs manual's indices
4373 or in another manual found via COMMAND's `info-file' property or
4374 the variable `Info-file-list-for-emacs'.
4375 COMMAND must be a symbol or string."
4376 (interactive "CFind documentation for command: ")
4377 ;; If command is given as a string, convert it to a symbol.
4378 (if (stringp command)
4379 (setq command (intern command)))
4380 (or (commandp command)
4381 (signal 'wrong-type-argument (list 'commandp command)))
4382 (let ((where (Info-find-emacs-command-nodes command)))
4383 (if where
4384 (let ((num-matches (length where)))
4385 ;; Get Info running, and pop to it in another window.
4386 (save-window-excursion
4387 (info))
4388 (or (eq major-mode 'Info-mode) (pop-to-buffer "*info*"))
4389 ;; Bind Info-history to nil, to prevent the last Index node
4390 ;; visited by Info-find-emacs-command-nodes from being
4391 ;; pushed onto the history.
4392 (let ((Info-history nil) (Info-history-list nil)
4393 (line-number (nth 2 (car where))))
4394 (Info-find-node (nth 0 (car where)) (nth 1 (car where)))
4395 (if (and (integerp line-number) (> line-number 0))
4396 (forward-line (1- line-number))))
4397 (if (> num-matches 1)
4398 (progn
4399 ;; (car where) will be pushed onto Info-history
4400 ;; when/if they go to another node. Put the other
4401 ;; nodes that were found on the history.
4402 (setq Info-history (nconc (cdr where) Info-history))
4403 (message "Found %d other entr%s. Use %s to see %s."
4404 (1- num-matches)
4405 (if (> num-matches 2) "ies" "y")
4406 (substitute-command-keys "\\[Info-history-back]")
4407 (if (> num-matches 2) "them" "it")))))
4408 (error "Couldn't find documentation for %s" command))))
4410 ;;;###autoload (put 'Info-goto-emacs-key-command-node 'info-file (purecopy "emacs"))
4411 ;;;###autoload
4412 (defun Info-goto-emacs-key-command-node (key)
4413 "Go to the node in the Emacs manual which describes the command bound to KEY.
4414 KEY is a string.
4415 Interactively, if the binding is `execute-extended-command', a command is read.
4416 The command is found by looking up in Emacs manual's indices
4417 or in another manual found via COMMAND's `info-file' property or
4418 the variable `Info-file-list-for-emacs'."
4419 (interactive "kFind documentation for key: ")
4420 (let ((command (key-binding key)))
4421 (cond ((null command)
4422 (message "%s is undefined" (key-description key)))
4423 ((and (called-interactively-p 'interactive)
4424 (eq command 'execute-extended-command))
4425 (Info-goto-emacs-command-node
4426 (read-command "Find documentation for command: ")))
4428 (Info-goto-emacs-command-node command)))))
4430 (defvar Info-link-keymap
4431 (let ((keymap (make-sparse-keymap)))
4432 (define-key keymap [header-line down-mouse-1] 'mouse-drag-header-line)
4433 (define-key keymap [header-line mouse-1] 'mouse-select-window)
4434 (define-key keymap [header-line mouse-2] 'Info-mouse-follow-link)
4435 (define-key keymap [mouse-2] 'Info-mouse-follow-link)
4436 (define-key keymap [follow-link] 'mouse-face)
4437 keymap)
4438 "Keymap to put on Info links.
4439 This is used for the \"Next\", \"Prev\", and \"Up\" links in the
4440 first line or header line, and for breadcrumb links.")
4442 (defun Info-breadcrumbs ()
4443 (let ((nodes (Info-toc-nodes Info-current-file))
4444 (node Info-current-node)
4445 (crumbs ())
4446 (depth Info-breadcrumbs-depth)
4447 line)
4449 ;; Get ancestors from the cached parent-children node info
4450 (while (and (not (equal "Top" node)) (> depth 0))
4451 (setq node (nth 1 (assoc node nodes)))
4452 (if node (push node crumbs))
4453 (setq depth (1- depth)))
4455 ;; Add bottom node.
4456 (when Info-use-header-line
4457 ;; Let it disappear if crumbs is nil.
4458 (nconc crumbs (list Info-current-node)))
4459 (when (or Info-use-header-line crumbs)
4460 ;; Add top node (and continuation if needed).
4461 (setq crumbs
4462 (cons "Top" (if (member (pop crumbs) '(nil "Top"))
4463 crumbs (cons nil crumbs))))
4464 ;; Eliminate duplicate.
4465 (forward-line 1)
4466 (dolist (node crumbs)
4467 (let ((text
4468 (if (not (equal node "Top")) node
4469 (format "(%s)Top"
4470 (if (stringp Info-current-file)
4471 (file-name-sans-extension
4472 (file-name-nondirectory Info-current-file))
4473 ;; Some legacy code can still use a symbol.
4474 Info-current-file)))))
4475 (setq line (concat
4476 line
4477 (if (null line) "" " > ")
4478 (cond
4479 ((null node) "...")
4480 ((equal node Info-current-node)
4481 ;; No point linking to ourselves.
4482 (propertize text 'font-lock-face 'info-header-node))
4484 (propertize text
4485 'mouse-face 'highlight
4486 'font-lock-face 'info-header-xref
4487 'help-echo "mouse-2: Go to node"
4488 'keymap Info-link-keymap
4489 'link-args text)))))))
4490 (setq line (concat line "\n")))
4491 ;; (font-lock-append-text-property 0 (length line)
4492 ;; 'font-lock-face 'header-line line)
4493 line))
4495 (defun Info-fontify-node ()
4496 "Fontify the node."
4497 (save-excursion
4498 (let* ((inhibit-read-only t)
4499 (case-fold-search t)
4500 paragraph-markers
4501 (not-fontified-p ; the node hasn't already been fontified
4502 (not (let ((where (next-single-property-change (point-min)
4503 'font-lock-face)))
4504 (and where (not (= where (point-max)))))))
4505 (fontify-visited-p ; visited nodes need to be re-fontified
4506 (and Info-fontify-visited-nodes
4507 ;; Don't take time to refontify visited nodes in huge nodes
4508 Info-fontify-maximum-menu-size
4509 (< (- (point-max) (point-min)) Info-fontify-maximum-menu-size)))
4510 rbeg rend)
4512 ;; Fontify header line
4513 (goto-char (point-min))
4514 (when (and not-fontified-p (looking-at "^\\(File: [^,: \t]+,?[ \t]+\\)?"))
4515 (goto-char (match-end 0))
4516 (while (looking-at "[ \t]*\\([^:, \t\n]+\\):[ \t]+\\([^:,\t\n]+\\),?")
4517 (goto-char (match-end 0))
4518 (let* ((nbeg (match-beginning 2))
4519 (nend (match-end 2))
4520 (tbeg (match-beginning 1))
4521 (tag (match-string 1)))
4522 (if (string-equal (downcase tag) "node")
4523 (put-text-property nbeg nend 'font-lock-face 'info-header-node)
4524 (put-text-property nbeg nend 'font-lock-face 'info-header-xref)
4525 (put-text-property tbeg nend 'mouse-face 'highlight)
4526 (put-text-property tbeg nend
4527 'help-echo
4528 (concat "mouse-2: Go to node "
4529 (buffer-substring nbeg nend)))
4530 ;; Set up the text property keymap. Depending on
4531 ;; `Info-use-header-line', it is either used in the
4532 ;; buffer, or copied to the header line. A symbol value
4533 ;; of the `link-args' property is handled specially by
4534 ;; `Info-mouse-follow-link'.
4535 (put-text-property tbeg nend 'keymap Info-link-keymap)
4536 (put-text-property tbeg nend 'link-args
4537 (intern (downcase tag))))))
4539 ;; (when (> Info-breadcrumbs-depth 0)
4540 ;; (insert (Info-breadcrumbs)))
4542 ;; Treat header line.
4543 (when Info-use-header-line
4544 (goto-char (point-min))
4545 (let* ((header-end (line-end-position))
4546 (header
4547 ;; If we find neither Next: nor Prev: link, show the entire
4548 ;; node header. Otherwise, don't show the File: and Node:
4549 ;; parts, to avoid wasting precious space on information that
4550 ;; is available in the mode line.
4551 (if (re-search-forward
4552 "\\(next\\|up\\|prev[ious]*\\): "
4553 header-end t)
4554 (progn
4555 (goto-char (match-beginning 1))
4556 (buffer-substring (point) header-end))
4557 (if (re-search-forward "node:[ \t]*[^ \t]+[ \t]*"
4558 header-end t)
4559 (concat "No next, prev or up links -- "
4560 (buffer-substring (point) header-end))
4561 (buffer-substring (point) header-end)))))
4562 (put-text-property (point-min) (1+ (point-min))
4563 'header-line
4564 (replace-regexp-in-string
4566 ;; Preserve text properties on duplicated `%'.
4567 (lambda (s) (concat s s)) header))
4568 ;; Hide the part of the first line
4569 ;; that is in the header, if it is just part.
4570 (cond
4571 ((> Info-breadcrumbs-depth 0)
4572 (let ((ov (make-overlay (point-min) (1+ header-end))))
4573 (overlay-put ov 'display (Info-breadcrumbs))
4574 (overlay-put ov 'evaporate t)))
4575 ((not (bobp))
4576 ;; Hide the punctuation at the end, too.
4577 (skip-chars-backward " \t,")
4578 (put-text-property (point) header-end 'invisible t)
4579 ;; Hide the suffix of the Info file name.
4580 (beginning-of-line)
4581 (if (re-search-forward
4582 (format "File: %s\\([^,\n\t]+\\),"
4583 (if (stringp Info-current-file)
4584 (file-name-sans-extension
4585 (file-name-nondirectory Info-current-file))
4586 Info-current-file))
4587 header-end t)
4588 (put-text-property (match-beginning 1) (match-end 1)
4589 'invisible t)))))))
4591 ;; Fontify titles
4592 (goto-char (point-min))
4593 (when (and font-lock-mode not-fontified-p)
4594 (while (and (re-search-forward "\n\\([^ \t\n].+\\)\n\\(\\*\\*+\\|==+\\|--+\\|\\.\\.+\\)$"
4595 nil t)
4596 ;; Only consider it as an underlined title if the ASCII
4597 ;; underline has the same size as the text. A typical
4598 ;; counter example is when a continuation "..." is alone
4599 ;; on a line.
4600 (= (string-width (match-string 1))
4601 (string-width (match-string 2))))
4602 (let* ((c (preceding-char))
4603 (face
4604 (cond ((= c ?*) 'info-title-1)
4605 ((= c ?=) 'info-title-2)
4606 ((= c ?-) 'info-title-3)
4607 (t 'info-title-4))))
4608 (put-text-property (match-beginning 1) (match-end 1)
4609 'font-lock-face face))
4610 ;; This is a serious problem for trying to handle multiple
4611 ;; frame types at once. We want this text to be invisible
4612 ;; on frames that can display the font above.
4613 (when (memq (framep (selected-frame)) '(x pc w32 ns))
4614 (add-text-properties (1- (match-beginning 2)) (match-end 2)
4615 '(invisible t front-sticky nil rear-nonsticky t)))))
4617 ;; Fontify cross references
4618 (goto-char (point-min))
4619 (when (or not-fontified-p fontify-visited-p)
4620 (while (re-search-forward "\\(\\*Note[ \n\t]+\\)\\([^:]*\\)\\(:[ \t]*\\([^.,:(]*\\)\\(\\(([^)]*)\\)[^.,:]*\\)?[,:]?\n?\\)" nil t)
4621 (let ((start (match-beginning 0))
4622 (next (point))
4623 other-tag)
4624 (when not-fontified-p
4625 (when Info-hide-note-references
4626 (when (and (not (eq Info-hide-note-references 'hide))
4627 (> (line-number-at-pos) 4)) ; Skip breadcrumbs
4628 ;; *Note is often used where *note should have been
4629 (goto-char start)
4630 (skip-syntax-backward " ")
4631 (when (memq (char-before) '(?\( ?\[ ?\{))
4632 ;; Check whether the paren is preceded by
4633 ;; an end of sentence
4634 (skip-syntax-backward " ("))
4635 (setq other-tag
4636 (cond ((save-match-data (looking-back "\\<see"))
4638 ((save-match-data (looking-back "\\<in"))
4640 ((memq (char-before) '(nil ?\. ?! ??))
4641 "See ")
4642 ((save-match-data
4643 (save-excursion
4644 (search-forward "\n\n" start t)))
4645 "See ")
4646 (t "see "))))
4647 (goto-char next)
4648 (add-text-properties
4649 (match-beginning 1)
4650 (or (save-match-data
4651 ;; Don't hide \n after *Note
4652 (let ((start1 (match-beginning 1)))
4653 (if (string-match "\n" (match-string 1))
4654 (+ start1 (match-beginning 0)))))
4655 (match-end 1))
4656 (if other-tag
4657 `(display ,other-tag front-sticky nil rear-nonsticky t)
4658 '(invisible t front-sticky nil rear-nonsticky t))))
4659 (add-text-properties
4660 (match-beginning 2) (match-end 2)
4661 (list
4662 'help-echo (if (or (match-end 5)
4663 (not (equal (match-string 4) "")))
4664 (concat "mouse-2: go to " (or (match-string 5)
4665 (match-string 4)))
4666 "mouse-2: go to this node")
4667 'mouse-face 'highlight)))
4668 (when (or not-fontified-p fontify-visited-p)
4669 (setq rbeg (match-beginning 2)
4670 rend (match-end 2))
4671 (put-text-property
4672 rbeg rend
4673 'font-lock-face
4674 ;; Display visited nodes in a different face
4675 (if (and Info-fontify-visited-nodes
4676 (save-match-data
4677 (let* ((node (replace-regexp-in-string
4678 "^[ \t]+" ""
4679 (replace-regexp-in-string
4680 "[ \t\n]+" " "
4681 (or (match-string-no-properties 5)
4682 (and (not (equal (match-string 4) ""))
4683 (match-string-no-properties 4))
4684 (match-string-no-properties 2)))))
4685 (external-link-p
4686 (string-match "(\\([^)]+\\))\\([^)]*\\)" node))
4687 (file (if external-link-p
4688 (file-name-nondirectory
4689 (match-string-no-properties 1 node))
4690 Info-current-file))
4691 (hl Info-history-list)
4692 res)
4693 (if external-link-p
4694 (setq node (if (equal (match-string 2 node) "")
4695 "Top"
4696 (match-string-no-properties 2 node))))
4697 (while hl
4698 (if (and (string-equal node (nth 1 (car hl)))
4699 (equal file
4700 (if (and external-link-p
4701 (stringp (caar hl)))
4702 (file-name-nondirectory
4703 (caar hl))
4704 (caar hl))))
4705 (setq res (car hl) hl nil)
4706 (setq hl (cdr hl))))
4707 res))) 'info-xref-visited 'info-xref))
4708 ;; For multiline ref, unfontify newline and surrounding whitespace
4709 (save-excursion
4710 (goto-char rbeg)
4711 (save-match-data
4712 (while (re-search-forward "\\s-*\n\\s-*" rend t nil)
4713 (remove-text-properties (match-beginning 0)
4714 (match-end 0)
4715 '(font-lock-face t))))))
4716 (when not-fontified-p
4717 (when (memq Info-hide-note-references '(t hide))
4718 (add-text-properties (match-beginning 3) (match-end 3)
4719 '(invisible t front-sticky nil rear-nonsticky t))
4720 ;; Unhide the file name of the external reference in parens
4721 (if (and (match-string 6) (not (eq Info-hide-note-references 'hide)))
4722 (remove-text-properties (match-beginning 6) (match-end 6)
4723 '(invisible t front-sticky nil rear-nonsticky t)))
4724 ;; Unhide newline because hidden newlines cause too long lines
4725 (save-match-data
4726 (let ((beg3 (match-beginning 3))
4727 (end3 (match-end 3)))
4728 (if (and (string-match "\n[ \t]*" (match-string 3))
4729 (not (save-match-data
4730 (save-excursion
4731 (goto-char (1+ end3))
4732 (looking-at "[.)]*$")))))
4733 (remove-text-properties (+ beg3 (match-beginning 0))
4734 (+ beg3 (match-end 0))
4735 '(invisible t front-sticky nil rear-nonsticky t))))))
4736 (when (and Info-refill-paragraphs Info-hide-note-references)
4737 (push (set-marker (make-marker) start)
4738 paragraph-markers))))))
4740 ;; Refill paragraphs (experimental feature)
4741 (when (and not-fontified-p
4742 Info-refill-paragraphs
4743 paragraph-markers)
4744 (let ((fill-nobreak-invisible t)
4745 (fill-individual-varying-indent nil)
4746 (paragraph-start "\f\\|[ \t]*[-*]\\|[ \t]*$")
4747 (paragraph-separate ".*\\.[ \t]*\n[ \t]\\|[ \t]*[-*]\\|[ \t\f]*$")
4748 (adaptive-fill-mode nil))
4749 (goto-char (point-max))
4750 (dolist (m paragraph-markers)
4751 (when (< m (point))
4752 (goto-char m)
4753 (beginning-of-line)
4754 (let ((beg (point)))
4755 (when (zerop (forward-paragraph))
4756 (fill-individual-paragraphs beg (point) nil nil)
4757 (goto-char beg))))
4758 (set-marker m nil))))
4760 ;; Fontify menu items
4761 (goto-char (point-min))
4762 (when (and (or not-fontified-p fontify-visited-p)
4763 (search-forward "\n* Menu:" nil t)
4764 ;; Don't take time to annotate huge menus
4765 Info-fontify-maximum-menu-size
4766 (< (- (point-max) (point)) Info-fontify-maximum-menu-size))
4767 (let ((n 0)
4768 cont)
4769 (while (re-search-forward
4770 (concat "^\\* Menu:\\|\\(?:^\\* +\\(" Info-menu-entry-name-re "\\)\\(:"
4771 Info-node-spec-re "\\([ \t]*\\)\\)\\)")
4772 nil t)
4773 (when (match-beginning 1)
4774 (when not-fontified-p
4775 (setq n (1+ n))
4776 (if (and (<= n 9) (zerop (% n 3))) ; visual aids to help with 1-9 keys
4777 (put-text-property (match-beginning 0)
4778 (1+ (match-beginning 0))
4779 'font-lock-face 'info-menu-star)))
4780 (when not-fontified-p
4781 (add-text-properties
4782 (match-beginning 1) (match-end 1)
4783 (list
4784 'help-echo (if (and (match-end 3)
4785 (not (equal (match-string 3) "")))
4786 (concat "mouse-2: go to " (match-string 3))
4787 "mouse-2: go to this node")
4788 'mouse-face 'highlight)))
4789 (when (or not-fontified-p fontify-visited-p)
4790 (put-text-property
4791 (match-beginning 1) (match-end 1)
4792 'font-lock-face
4793 ;; Display visited menu items in a different face
4794 (if (and Info-fontify-visited-nodes
4795 (save-match-data
4796 (let* ((node (if (equal (match-string 3) "")
4797 (match-string-no-properties 1)
4798 (match-string-no-properties 3)))
4799 (external-link-p
4800 (string-match "(\\([^)]+\\))\\([^)]*\\)" node))
4801 (file (if external-link-p
4802 (file-name-nondirectory
4803 (match-string-no-properties 1 node))
4804 Info-current-file))
4805 (hl Info-history-list)
4806 res)
4807 (if external-link-p
4808 (setq node (if (equal (match-string 2 node) "")
4809 "Top"
4810 (match-string-no-properties 2 node))))
4811 (while hl
4812 (if (and (string-equal node (nth 1 (car hl)))
4813 (equal file
4814 (if (and external-link-p
4815 (stringp (caar hl)))
4816 (file-name-nondirectory
4817 (caar hl))
4818 (caar hl))))
4819 (setq res (car hl) hl nil)
4820 (setq hl (cdr hl))))
4821 res))) 'info-xref-visited 'info-xref)))
4822 (when (and not-fontified-p
4823 (memq Info-hide-note-references '(t hide))
4824 (not (Info-index-node)))
4825 (put-text-property (match-beginning 2) (1- (match-end 6))
4826 'invisible t)
4827 ;; Unhide the file name in parens
4828 (if (and (match-end 4) (not (eq (char-after (match-end 4)) ?.)))
4829 (remove-text-properties (match-beginning 4) (match-end 4)
4830 '(invisible t)))
4831 ;; We need a stretchable space like :align-to but with
4832 ;; a minimum value.
4833 (put-text-property (1- (match-end 6)) (match-end 6) 'display
4834 (if (>= 22 (- (match-end 1)
4835 (match-beginning 0)))
4836 '(space :align-to 24)
4837 '(space :width 2)))
4838 (setq cont (looking-at "."))
4839 (while (and (= (forward-line 1) 0)
4840 (looking-at "\\([ \t]+\\)[^*\n]"))
4841 (put-text-property (match-beginning 1) (1- (match-end 1))
4842 'invisible t)
4843 (put-text-property (1- (match-end 1)) (match-end 1)
4844 'display
4845 (if cont
4846 '(space :align-to 26)
4847 '(space :align-to 24)))
4848 (setq cont t)))))))
4850 ;; Fontify menu headers
4851 ;; Add the face `info-menu-header' to any header before a menu entry
4852 (goto-char (point-min))
4853 (when (and not-fontified-p (re-search-forward "^\\* Menu:" nil t))
4854 (put-text-property (match-beginning 0) (match-end 0)
4855 'font-lock-face 'info-menu-header)
4856 (while (re-search-forward "\n\n\\([^*\n ].*\\)\n\n?[*]" nil t)
4857 (put-text-property (match-beginning 1) (match-end 1)
4858 'font-lock-face 'info-menu-header)))
4860 ;; Hide index line numbers
4861 (goto-char (point-min))
4862 (when (and not-fontified-p (Info-index-node))
4863 (while (re-search-forward "[ \t\n]*(line +[0-9]+)" nil t)
4864 (put-text-property (match-beginning 0) (match-end 0)
4865 'invisible t)))
4867 ;; Fontify http and ftp references
4868 (goto-char (point-min))
4869 (when not-fontified-p
4870 (while (re-search-forward "\\(https?\\|ftp\\)://[^ \t\n\"`({<>})']+"
4871 nil t)
4872 (add-text-properties (match-beginning 0) (match-end 0)
4873 '(font-lock-face info-xref
4874 mouse-face highlight
4875 help-echo "mouse-2: go to this URL"))))
4877 ;; Hide empty lines at the end of the node.
4878 (goto-char (point-max))
4879 (skip-chars-backward "\n")
4880 (when (< (point) (1- (point-max)))
4881 (put-text-property (point) (1- (point-max)) 'invisible t))
4883 (set-buffer-modified-p nil))))
4885 ;;; Speedbar support:
4886 ;; These functions permit speedbar to display the "tags" in the
4887 ;; current Info node.
4888 (eval-when-compile (require 'speedbar))
4890 (declare-function speedbar-add-expansion-list "speedbar" (new-list))
4891 (declare-function speedbar-center-buffer-smartly "speedbar" ())
4892 (declare-function speedbar-change-expand-button-char "speedbar" (char))
4893 (declare-function speedbar-change-initial-expansion-list "speedbar" (new-default))
4894 (declare-function speedbar-delete-subblock "speedbar" (indent))
4895 (declare-function speedbar-make-specialized-keymap "speedbar" ())
4896 (declare-function speedbar-make-tag-line "speedbar"
4897 (exp-button-type exp-button-char exp-button-function
4898 exp-button-data tag-button tag-button-function
4899 tag-button-data tag-button-face depth))
4901 (defvar Info-speedbar-key-map nil
4902 "Keymap used when in the Info display mode.")
4904 (defun Info-install-speedbar-variables ()
4905 "Install those variables used by speedbar to enhance Info."
4906 (if Info-speedbar-key-map
4908 (setq Info-speedbar-key-map (speedbar-make-specialized-keymap))
4910 ;; Basic tree features
4911 (define-key Info-speedbar-key-map "e" 'speedbar-edit-line)
4912 (define-key Info-speedbar-key-map "\C-m" 'speedbar-edit-line)
4913 (define-key Info-speedbar-key-map "+" 'speedbar-expand-line)
4914 (define-key Info-speedbar-key-map "-" 'speedbar-contract-line)
4917 (speedbar-add-expansion-list '("Info" Info-speedbar-menu-items
4918 Info-speedbar-key-map
4919 Info-speedbar-hierarchy-buttons)))
4921 (defvar Info-speedbar-menu-items
4922 '(["Browse Node" speedbar-edit-line t]
4923 ["Expand Node" speedbar-expand-line
4924 (save-excursion (beginning-of-line)
4925 (looking-at "[0-9]+: *.\\+. "))]
4926 ["Contract Node" speedbar-contract-line
4927 (save-excursion (beginning-of-line)
4928 (looking-at "[0-9]+: *.-. "))]
4930 "Additional menu-items to add to speedbar frame.")
4932 ;; Make sure our special speedbar major mode is loaded
4933 (if (featurep 'speedbar)
4934 (Info-install-speedbar-variables)
4935 (add-hook 'speedbar-load-hook 'Info-install-speedbar-variables))
4937 ;;; Info hierarchy display method
4938 ;;;###autoload
4939 (defun Info-speedbar-browser ()
4940 "Initialize speedbar to display an Info node browser.
4941 This will add a speedbar major display mode."
4942 (interactive)
4943 (require 'speedbar)
4944 ;; Make sure that speedbar is active
4945 (speedbar-frame-mode 1)
4946 ;; Now, throw us into Info mode on speedbar.
4947 (speedbar-change-initial-expansion-list "Info")
4950 (defun Info-speedbar-hierarchy-buttons (_directory depth &optional node)
4951 "Display an Info directory hierarchy in speedbar.
4952 DIRECTORY is the current directory in the attached frame.
4953 DEPTH is the current indentation depth.
4954 NODE is an optional argument that is used to represent the
4955 specific node to expand."
4956 (if (and (not node)
4957 (save-excursion (goto-char (point-min))
4958 (let ((case-fold-search t))
4959 (looking-at "Info Nodes:"))))
4960 ;; Update our "current node" maybe?
4962 ;; We cannot use the generic list code, that depends on all leaves
4963 ;; being known at creation time.
4964 (if (not node)
4965 (speedbar-with-writable (insert "Info Nodes:\n")))
4966 (let ((completions nil))
4967 (speedbar-select-attached-frame)
4968 (save-window-excursion
4969 (setq completions
4970 (Info-speedbar-fetch-file-nodes (or node '"(dir)top"))))
4971 (select-frame (speedbar-current-frame))
4972 (if completions
4973 (speedbar-with-writable
4974 (dolist (completion completions)
4975 (speedbar-make-tag-line 'bracket ?+ 'Info-speedbar-expand-node
4976 (cdr completion)
4977 (car completion)
4978 'Info-speedbar-goto-node
4979 (cdr completion)
4980 'info-xref depth))
4982 nil))))
4984 (defun Info-speedbar-goto-node (_text node _indent)
4985 "When user clicks on TEXT, go to an info NODE.
4986 The INDENT level is ignored."
4987 (speedbar-select-attached-frame)
4988 (let* ((buff (or (get-buffer "*info*")
4989 (progn (info) (get-buffer "*info*"))))
4990 (bwin (get-buffer-window buff 0)))
4991 (if bwin
4992 (progn
4993 (select-window bwin)
4994 (raise-frame (window-frame bwin)))
4995 (if speedbar-power-click
4996 (switch-to-buffer-other-frame buff)
4997 (speedbar-select-attached-frame)
4998 (switch-to-buffer buff)))
4999 (if (not (string-match "^(\\([^)]+\\))\\([^.]+\\)$" node))
5000 (error "Invalid node %s" node)
5001 (Info-find-node (match-string 1 node) (match-string 2 node))
5002 ;; If we do a find-node, and we were in info mode, restore
5003 ;; the old default method. Once we are in info mode, it makes
5004 ;; sense to return to whatever method the user was using before.
5005 (if (string= speedbar-initial-expansion-list-name "Info")
5006 (speedbar-change-initial-expansion-list
5007 speedbar-previously-used-expansion-list-name)))))
5009 (defun Info-speedbar-expand-node (text token indent)
5010 "Expand the node the user clicked on.
5011 TEXT is the text of the button we clicked on, a + or - item.
5012 TOKEN is data related to this node (NAME . FILE).
5013 INDENT is the current indentation depth."
5014 (cond ((string-match "+" text) ;we have to expand this file
5015 (speedbar-change-expand-button-char ?-)
5016 (if (speedbar-with-writable
5017 (save-excursion
5018 (end-of-line) (forward-char 1)
5019 (Info-speedbar-hierarchy-buttons nil (1+ indent) token)))
5020 (speedbar-change-expand-button-char ?-)
5021 (speedbar-change-expand-button-char ??)))
5022 ((string-match "-" text) ;we have to contract this node
5023 (speedbar-change-expand-button-char ?+)
5024 (speedbar-delete-subblock indent))
5025 (t (error "Ooops... not sure what to do")))
5026 (speedbar-center-buffer-smartly))
5028 (defun Info-speedbar-fetch-file-nodes (nodespec)
5029 "Fetch the subnodes from the info NODESPEC.
5030 NODESPEC is a string of the form: (file)node."
5031 ;; Set up a buffer we can use to fake-out Info.
5032 (with-current-buffer (get-buffer-create " *info-browse-tmp*")
5033 (if (not (equal major-mode 'Info-mode))
5034 (Info-mode))
5035 ;; Get the node into this buffer
5036 (if (not (string-match "^(\\([^)]+\\))\\([^.]+\\)$" nodespec))
5037 (error "Invalid node specification %s" nodespec)
5038 (Info-find-node (match-string 1 nodespec) (match-string 2 nodespec)))
5039 ;; Scan the created buffer
5040 (goto-char (point-min))
5041 (let ((completions nil)
5042 (case-fold-search t)
5043 (thisfile (progn (string-match "^(\\([^)]+\\))" nodespec)
5044 (match-string 1 nodespec))))
5045 ;; Always skip the first one...
5046 (re-search-forward "\n\\* \\([^:\t\n]*\\):" nil t)
5047 (while (re-search-forward "\n\\* \\([^:\t\n]*\\):" nil t)
5048 (let ((name (match-string 1)))
5049 (push (cons name
5050 (if (looking-at " *\\(([^)]+)[^.\n]+\\)\\.")
5051 (match-string 1)
5052 (if (looking-at " *\\(([^)]+)\\)\\.")
5053 (concat (match-string 1) "Top")
5054 (concat "(" thisfile ")"
5055 (if (looking-at " \\([^.]+\\).")
5056 (match-string 1)
5057 name)))))
5058 completions)))
5059 (nreverse completions))))
5061 ;;; Info mode node listing
5062 ;; This is called by `speedbar-add-localized-speedbar-support'
5063 (defun Info-speedbar-buttons (_buffer)
5064 "Create a speedbar display to help navigation in an Info file.
5065 BUFFER is the buffer speedbar is requesting buttons for."
5066 (if (save-excursion (goto-char (point-min))
5067 (let ((case-fold-search t))
5068 (not (looking-at "Info Nodes:"))))
5069 (erase-buffer))
5070 (Info-speedbar-hierarchy-buttons nil 0))
5072 ;; FIXME: Really? Why here?
5073 (add-to-list 'debug-ignored-errors 'search-failed)
5075 ;;;; Desktop support
5077 (defun Info-desktop-buffer-misc-data (_desktop-dirname)
5078 "Auxiliary information to be saved in desktop file."
5079 (list Info-current-file
5080 Info-current-node
5081 ;; Additional data as an association list.
5082 (delq nil (list
5083 (and Info-history
5084 (cons 'history Info-history))
5085 (and (Info-virtual-fun
5086 'slow Info-current-file Info-current-node)
5087 (cons 'slow t))))))
5089 (defun Info-restore-desktop-buffer (_desktop-buffer-file-name
5090 desktop-buffer-name
5091 desktop-buffer-misc)
5092 "Restore an Info buffer specified in a desktop file."
5093 (let* ((file (nth 0 desktop-buffer-misc))
5094 (node (nth 1 desktop-buffer-misc))
5095 (data (nth 2 desktop-buffer-misc))
5096 (hist (assq 'history data))
5097 (slow (assq 'slow data)))
5098 ;; Don't restore nodes slow to regenerate.
5099 (unless slow
5100 (when (and file node)
5101 (when desktop-buffer-name
5102 (set-buffer (get-buffer-create desktop-buffer-name))
5103 (Info-mode))
5104 (Info-find-node file node)
5105 (when hist
5106 (setq Info-history (cdr hist)))
5107 (current-buffer)))))
5109 (add-to-list 'desktop-buffer-mode-handlers
5110 '(Info-mode . Info-restore-desktop-buffer))
5112 ;;;; Bookmark support
5113 (declare-function bookmark-make-record-default
5114 "bookmark" (&optional no-file no-context posn))
5115 (declare-function bookmark-prop-get "bookmark" (bookmark prop))
5116 (declare-function bookmark-default-handler "bookmark" (bmk))
5117 (declare-function bookmark-get-bookmark-record "bookmark" (bmk))
5119 (defun Info-bookmark-make-record ()
5120 "This implements the `bookmark-make-record-function' type (which see)
5121 for Info nodes."
5122 (let* ((file (and (stringp Info-current-file)
5123 (file-name-sans-extension
5124 (file-name-nondirectory Info-current-file))))
5125 (bookmark-name (if file
5126 (concat "(" file ") " Info-current-node)
5127 Info-current-node))
5128 (defaults (delq nil (list bookmark-name file Info-current-node))))
5129 `(,bookmark-name
5130 ,@(bookmark-make-record-default 'no-file)
5131 (filename . ,Info-current-file)
5132 (info-node . ,Info-current-node)
5133 (handler . Info-bookmark-jump)
5134 (defaults . ,defaults))))
5136 ;;;###autoload
5137 (defun Info-bookmark-jump (bmk)
5138 "This implements the `handler' function interface for the record
5139 type returned by `Info-bookmark-make-record', which see."
5140 (let* ((file (bookmark-prop-get bmk 'filename))
5141 (info-node (bookmark-prop-get bmk 'info-node))
5142 (buf (save-window-excursion ;FIXME: doesn't work with frames!
5143 (Info-find-node file info-node) (current-buffer))))
5144 ;; Use bookmark-default-handler to move to the appropriate location
5145 ;; within the node.
5146 (bookmark-default-handler
5147 `("" (buffer . ,buf) . ,(bookmark-get-bookmark-record bmk)))))
5150 ;;;###autoload
5151 (defun info-display-manual (manual)
5152 "Display an Info buffer displaying MANUAL.
5153 If there is an existing Info buffer for MANUAL, display it.
5154 Otherwise, visit the manual in a new Info buffer."
5155 (interactive
5156 (list
5157 (progn
5158 (info-initialize)
5159 (completing-read "Manual name: "
5160 (info--manual-names)
5161 nil t))))
5162 (let ((blist (buffer-list))
5163 (manual-re (concat "\\(/\\|\\`\\)" manual "\\(\\.\\|\\'\\)"))
5164 (case-fold-search t)
5165 found)
5166 (dolist (buffer blist)
5167 (with-current-buffer buffer
5168 (when (and (eq major-mode 'Info-mode)
5169 (stringp Info-current-file)
5170 (string-match manual-re Info-current-file))
5171 (setq found buffer
5172 blist nil))))
5173 (if found
5174 (switch-to-buffer found)
5175 (info-initialize)
5176 (info (Info-find-file manual)
5177 (generate-new-buffer-name "*info*")))))
5179 (defun info--manual-names ()
5180 (let (names)
5181 (dolist (buffer (buffer-list))
5182 (with-current-buffer buffer
5183 (and (eq major-mode 'Info-mode)
5184 (stringp Info-current-file)
5185 (not (string= (substring (buffer-name) 0 1) " "))
5186 (push (file-name-sans-extension
5187 (file-name-nondirectory Info-current-file))
5188 names))))
5189 (delete-dups (append (nreverse names)
5190 (all-completions
5192 (apply-partially 'Info-read-node-name-2
5193 Info-directory-list
5194 (mapcar 'car Info-suffix-list)))))))
5196 (provide 'info)
5198 ;;; info.el ends here