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