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