annotate lisp/info.el @ 12927:d3cda9e7c55f

(Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor, and don't include .info as suffix. (info-insert-file-contents-1): New function. (info-insert-file-contents): Use info-insert-file-contents-1.
author Richard M. Stallman <rms@gnu.org>
date Tue, 22 Aug 1995 18:51:46 +0000
parents 8b902b24d749
children c465c82e09ff
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
754
b096f4af925c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 732
diff changeset
1 ;;; info.el --- info package for Emacs.
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 754
diff changeset
2
7298
4fd40bd394fe Update copyright.
Karl Heuer <kwzh@gnu.org>
parents: 7007
diff changeset
3 ;; Copyright (C) 1985, 1986, 1992, 1993, 1994 Free Software Foundation, Inc.
846
20674ae6bf52 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 811
diff changeset
4
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 754
diff changeset
5 ;; Maintainer: FSF
811
e694e0879463 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 807
diff changeset
6 ;; Keywords: help
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 754
diff changeset
7
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
8 ;; This file is part of GNU Emacs.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
9
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
11 ;; it under the terms of the GNU General Public License as published by
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 754
diff changeset
12 ;; the Free Software Foundation; either version 2, or (at your option)
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
13 ;; any later version.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
14
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
15 ;; GNU Emacs is distributed in the hope that it will be useful,
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
18 ;; GNU General Public License for more details.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
19
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
20 ;; You should have received a copy of the GNU General Public License
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
21 ;; along with GNU Emacs; see the file COPYING. If not, write to
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
23
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 754
diff changeset
24 ;;; Commentary:
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 754
diff changeset
25
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 754
diff changeset
26 ;;; Note that nowadays we expect info files to be made using makeinfo.
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 754
diff changeset
27
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 754
diff changeset
28 ;;; Code:
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 754
diff changeset
29
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
30 (defvar Info-history nil
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
31 "List of info nodes user has visited.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
32 Each element of list is a list (FILENAME NODENAME BUFFERPOS).")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
33
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
34 (defvar Info-enable-edit nil
3084
a4341d92948a (Info-edit, Info-last-search, Info-enable-edit):
Richard M. Stallman <rms@gnu.org>
parents: 3047
diff changeset
35 "*Non-nil means the \\<Info-mode-map>\\[Info-edit] command in Info can edit the current node.
680
f99c8512cd41 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 660
diff changeset
36 This is convenient if you want to write info files by hand.
f99c8512cd41 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 660
diff changeset
37 However, we recommend that you not do this.
f99c8512cd41 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 660
diff changeset
38 It is better to write a Texinfo file and generate the Info file from that,
f99c8512cd41 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 660
diff changeset
39 because that gives you a printed manual as well.")
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
40
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
41 (defvar Info-enable-active-nodes t
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
42 "Non-nil allows Info to execute Lisp code associated with nodes.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
43 The Lisp code is executed when the node is selected.")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
44
540
0840eff2ecd5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 359
diff changeset
45 (defvar Info-default-directory-list nil
0840eff2ecd5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 359
diff changeset
46 "List of default directories to search for Info documentation files.
0840eff2ecd5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 359
diff changeset
47 This value is used as the default for `Info-directory-list'. It is set
0840eff2ecd5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 359
diff changeset
48 in paths.el.")
0840eff2ecd5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 359
diff changeset
49
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
50 (defvar Info-fontify t
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
51 "*Non-nil enables highlighting and fonts in Info nodes.")
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
52
8193
0be48d0d16fd (Info-fontify-maximum-menu-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8071
diff changeset
53 (defvar Info-fontify-maximum-menu-size 30000
0be48d0d16fd (Info-fontify-maximum-menu-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8071
diff changeset
54 "*Maximum size of menu to fontify if `Info-fontify' is non-nil.")
8480
7f28030d9529 (Info-additional-directory-list): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8461
diff changeset
55
3330
4fd13e6109e3 (Info-mode-map): Correct Info-top to Info-top-node.
Richard M. Stallman <rms@gnu.org>
parents: 3313
diff changeset
56 (defvar Info-directory-list
5482
27603dcb6260 (Info-directory-list): Change last elt to ../info (expanded).
Richard M. Stallman <rms@gnu.org>
parents: 5271
diff changeset
57 (let ((path (getenv "INFOPATH"))
12294
3631443c706e (Info-directory-list): If path-separator isn't available, bind it here.
Richard M. Stallman <rms@gnu.org>
parents: 12156
diff changeset
58 ;; This is for older Emacs versions
3631443c706e (Info-directory-list): If path-separator isn't available, bind it here.
Richard M. Stallman <rms@gnu.org>
parents: 12156
diff changeset
59 ;; which might get this info.el from the Texinfo distribution.
3631443c706e (Info-directory-list): If path-separator isn't available, bind it here.
Richard M. Stallman <rms@gnu.org>
parents: 12156
diff changeset
60 (path-separator (if (boundp 'path-separator) path-separator
3631443c706e (Info-directory-list): If path-separator isn't available, bind it here.
Richard M. Stallman <rms@gnu.org>
parents: 12156
diff changeset
61 (if (eq system-type 'ms-dos) ";" ":")))
11781
fe6619d546fd (Info-directory-list): Use installation-directory,
Richard M. Stallman <rms@gnu.org>
parents: 11759
diff changeset
62 (sibling (if installation-directory
fe6619d546fd (Info-directory-list): Use installation-directory,
Richard M. Stallman <rms@gnu.org>
parents: 11759
diff changeset
63 (expand-file-name "info/" installation-directory))))
3330
4fd13e6109e3 (Info-mode-map): Correct Info-top to Info-top-node.
Richard M. Stallman <rms@gnu.org>
parents: 3313
diff changeset
64 (if path
4fd13e6109e3 (Info-mode-map): Correct Info-top to Info-top-node.
Richard M. Stallman <rms@gnu.org>
parents: 3313
diff changeset
65 (let ((list nil)
4fd13e6109e3 (Info-mode-map): Correct Info-top to Info-top-node.
Richard M. Stallman <rms@gnu.org>
parents: 3313
diff changeset
66 idx)
4fd13e6109e3 (Info-mode-map): Correct Info-top to Info-top-node.
Richard M. Stallman <rms@gnu.org>
parents: 3313
diff changeset
67 (while (> (length path) 0)
11959
0b8b8be6a3fd (Info-directory-list): Use path-separator.
Karl Heuer <kwzh@gnu.org>
parents: 11781
diff changeset
68 (setq idx (or (string-match path-separator path) (length path))
3330
4fd13e6109e3 (Info-mode-map): Correct Info-top to Info-top-node.
Richard M. Stallman <rms@gnu.org>
parents: 3313
diff changeset
69 list (cons (substring path 0 idx) list)
4fd13e6109e3 (Info-mode-map): Correct Info-top to Info-top-node.
Richard M. Stallman <rms@gnu.org>
parents: 3313
diff changeset
70 path (substring path (min (1+ idx)
4fd13e6109e3 (Info-mode-map): Correct Info-top to Info-top-node.
Richard M. Stallman <rms@gnu.org>
parents: 3313
diff changeset
71 (length path)))))
4fd13e6109e3 (Info-mode-map): Correct Info-top to Info-top-node.
Richard M. Stallman <rms@gnu.org>
parents: 3313
diff changeset
72 (nreverse list))
11781
fe6619d546fd (Info-directory-list): Use installation-directory,
Richard M. Stallman <rms@gnu.org>
parents: 11759
diff changeset
73 (if (or (null sibling)
fe6619d546fd (Info-directory-list): Use installation-directory,
Richard M. Stallman <rms@gnu.org>
parents: 11759
diff changeset
74 (member sibling Info-default-directory-list)
7789
e974be06f4f7 (Info-directory-list): Don't use the invocation directory
Richard M. Stallman <rms@gnu.org>
parents: 7753
diff changeset
75 (not (file-exists-p sibling))
9782
7224fba93c27 (Info-directory-list): Treat windows-nt like ms-dos.
Richard M. Stallman <rms@gnu.org>
parents: 9588
diff changeset
76 ;; On DOS/NT, we use movable executables always,
7990
6be46752d57f (Info-directory-list): For msdos, don't check for
Richard M. Stallman <rms@gnu.org>
parents: 7928
diff changeset
77 ;; and we must always find the Info dir at run time.
9782
7224fba93c27 (Info-directory-list): Treat windows-nt like ms-dos.
Richard M. Stallman <rms@gnu.org>
parents: 9588
diff changeset
78 (if (or (eq system-type 'ms-dos) (eq system-type 'windows-nt))
7990
6be46752d57f (Info-directory-list): For msdos, don't check for
Richard M. Stallman <rms@gnu.org>
parents: 7928
diff changeset
79 nil
6be46752d57f (Info-directory-list): For msdos, don't check for
Richard M. Stallman <rms@gnu.org>
parents: 7928
diff changeset
80 ;; Use invocation-directory for Info only if we used it for
6be46752d57f (Info-directory-list): For msdos, don't check for
Richard M. Stallman <rms@gnu.org>
parents: 7928
diff changeset
81 ;; exec-directory also.
6be46752d57f (Info-directory-list): For msdos, don't check for
Richard M. Stallman <rms@gnu.org>
parents: 7928
diff changeset
82 (not (string= exec-directory
11781
fe6619d546fd (Info-directory-list): Use installation-directory,
Richard M. Stallman <rms@gnu.org>
parents: 11759
diff changeset
83 (expand-file-name "lib-src/"
fe6619d546fd (Info-directory-list): Use installation-directory,
Richard M. Stallman <rms@gnu.org>
parents: 11759
diff changeset
84 installation-directory)))))
5482
27603dcb6260 (Info-directory-list): Change last elt to ../info (expanded).
Richard M. Stallman <rms@gnu.org>
parents: 5271
diff changeset
85 Info-default-directory-list
27603dcb6260 (Info-directory-list): Change last elt to ../info (expanded).
Richard M. Stallman <rms@gnu.org>
parents: 5271
diff changeset
86 (reverse (cons sibling (cdr (reverse Info-default-directory-list)))))))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
87 "List of directories to search for Info documentation files.
540
0840eff2ecd5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 359
diff changeset
88 nil means not yet initialized. In this case, Info uses the environment
1979
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
89 variable INFOPATH to initialize it, or `Info-default-directory-list'
7739
f2747ec591fd (Info-directory-list): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 7572
diff changeset
90 if there is no INFOPATH variable in the environment.
f2747ec591fd (Info-directory-list): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 7572
diff changeset
91 The last element of `Info-default-directory-list' is the directory
7753
198dd616a588 (Info-directory-list): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 7739
diff changeset
92 where Emacs installs the Info files that come with it.
8461
c88361c3b940 (Info-directory-list): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 8369
diff changeset
93
c88361c3b940 (Info-directory-list): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 8369
diff changeset
94 If you run the Emacs executable from the `src' directory in the Emacs
c88361c3b940 (Info-directory-list): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 8369
diff changeset
95 source tree, the `info' directory in the source tree is used as the last
c88361c3b940 (Info-directory-list): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 8369
diff changeset
96 element, in place of the installation Info directory. This is useful
c88361c3b940 (Info-directory-list): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 8369
diff changeset
97 when you run a version of Emacs without installing it.")
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
98
8480
7f28030d9529 (Info-additional-directory-list): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8461
diff changeset
99 (defvar Info-additional-directory-list nil
7f28030d9529 (Info-additional-directory-list): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8461
diff changeset
100 "List of additional directories to search for Info documentation files.
7f28030d9529 (Info-additional-directory-list): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8461
diff changeset
101 These directories are not searched for merging the `dir' file.")
7f28030d9529 (Info-additional-directory-list): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8461
diff changeset
102
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
103 (defvar Info-current-file nil
12646
cd83cf47be08 (Info-current-file): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 12433
diff changeset
104 "Info file that Info is now looking at, or nil.
cd83cf47be08 (Info-current-file): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 12433
diff changeset
105 This is the name that was specified in Info, not the actual file name.
cd83cf47be08 (Info-current-file): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 12433
diff changeset
106 It doesn't contain directory names or file name extensions added by Info.")
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
107
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
108 (defvar Info-current-subfile nil
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
109 "Info subfile that is actually in the *info* buffer now,
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
110 or nil if current info file is not split into subfiles.")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
111
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
112 (defvar Info-current-node nil
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
113 "Name of node that Info is now looking at, or nil.")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
114
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
115 (defvar Info-tag-table-marker (make-marker)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
116 "Marker pointing at beginning of current Info file's tag table.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
117 Marker points nowhere if file has no tag table.")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
118
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
119 (defvar Info-current-file-completions nil
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
120 "Cached completion list for current Info file.")
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
121
2561
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
122 (defvar Info-index-alternatives nil
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
123 "List of possible matches for last Info-index command.")
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
124
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
125 (defvar Info-standalone nil
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
126 "Non-nil if Emacs was started solely as an Info browser.")
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
127
12927
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
128 (defvar Info-suffix-list
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
129 (if (eq system-type 'ms-dos)
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
130 '( (".gz" . "gunzip")
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
131 (".z" . "gunzip")
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
132 ("" . nil))
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
133 '( (".info.Z" . "uncompress")
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
134 (".info.Y" . "unyabba")
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
135 (".info.gz" . "gunzip")
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
136 (".info.z" . "gunzip")
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
137 (".info" . nil)
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
138 (".Z" . "uncompress")
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
139 (".Y" . "unyabba")
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
140 (".gz" . "gunzip")
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
141 (".z" . "gunzip")
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
142 ("" . nil)))
2561
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
143 "List of file name suffixes and associated decoding commands.
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
144 Each entry should be (SUFFIX . STRING); the file is given to
6566
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
145 the command as standard input. If STRING is nil, no decoding is done.
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
146 Because the SUFFIXes are tried in order, the empty string should
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
147 be last in the list.")
2561
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
148
12927
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
149 ;; Concatenate SUFFIX onto FILENAME.
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
150 ;; First, on ms-dos, delete some of the extension in FILENAME
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
151 ;; to make room.
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
152 (defun info-insert-file-contents-1 (filename suffix)
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
153 (if (not (eq system-type 'ms-dos))
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
154 (concat filename suffix)
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
155 (let* ((sans-exts (file-name-sans-extension filename))
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
156 ;; How long is the extension in FILENAME.
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
157 (ext-len (- (length filename) (length sans-exts) 1))
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
158 ;; How many chars of that extension should we keep?
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
159 (ext-left (max 0 (- 3 (length suffix)))))
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
160 ;; Get rid of the rest of the extension, and add SUFFIX.
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
161 (concat (substring filename 0 (- (length filename)
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
162 (- ext-len ext-left)))
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
163 suffix))))
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
164
2561
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
165 (defun info-insert-file-contents (filename &optional visit)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
166 "Insert the contents of an info file in the current buffer.
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
167 Do the right thing if the file has been compressed or zipped."
6566
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
168 (let ((tail Info-suffix-list)
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
169 fullname decoder)
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
170 (if (file-exists-p filename)
12927
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
171 ;; FILENAME exists--see if that name contains a suffix.
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
172 ;; If so, set DECODE accordingly.
6566
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
173 (progn
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
174 (while (and tail
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
175 (not (string-match
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
176 (concat (regexp-quote (car (car tail))) "$")
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
177 filename)))
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
178 (setq tail (cdr tail)))
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
179 (setq fullname filename
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
180 decoder (cdr (car tail))))
12927
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
181 ;; Try adding suffixes to FILENAME and see if we can find something.
6566
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
182 (while (and tail
12927
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
183 (not (file-exists-p (info-insert-file-contents-1
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
184 filename (car (car tail))))))
6566
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
185 (setq tail (cdr tail)))
12927
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
186 ;; If we found a file with a suffix, set DECODER according to the suffix
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
187 ;; and set FULLNAME to the file's actual name.
6566
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
188 (setq fullname (concat filename (car (car tail)))
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
189 decoder (cdr (car tail)))
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
190 (or tail
12927
d3cda9e7c55f (Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents: 12892
diff changeset
191 (error "Can't find %s or any compressed version of it" filename)))
9588
7d465ccfd45b (info-insert-file-contents): Always check for conflict with jka-compr.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
192 ;; check for conflict with jka-compr
7d465ccfd45b (info-insert-file-contents): Always check for conflict with jka-compr.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
193 (if (and (featurep 'jka-compr)
7d465ccfd45b (info-insert-file-contents): Always check for conflict with jka-compr.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
194 (jka-compr-installed-p)
7d465ccfd45b (info-insert-file-contents): Always check for conflict with jka-compr.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
195 (jka-compr-get-compression-info fullname))
7d465ccfd45b (info-insert-file-contents): Always check for conflict with jka-compr.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
196 (setq decoder nil))
6566
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
197 (insert-file-contents fullname visit)
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
198 (if decoder
11527
7956811d4d9a (info-insert-file-contents): Set default-directory
Richard M. Stallman <rms@gnu.org>
parents: 11064
diff changeset
199 (let ((buffer-read-only nil)
11759
51816af03215 (info-insert-file-contents): Don't use
Richard M. Stallman <rms@gnu.org>
parents: 11580
diff changeset
200 (default-directory (or (file-name-directory fullname)
51816af03215 (info-insert-file-contents): Don't use
Richard M. Stallman <rms@gnu.org>
parents: 11580
diff changeset
201 default-directory)))
6566
248eede22658 (Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents: 6537
diff changeset
202 (shell-command-on-region (point-min) (point-max) decoder t)))))
2561
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
203
10978
e3da01bbdc14 (same-window-buffer-names): Set this only in loaddefs.el,
Richard M. Stallman <rms@gnu.org>
parents: 10957
diff changeset
204 ;;;###autoload (add-hook 'same-window-buffer-names "*info*")
10957
6d3568e33019 (Info-menu): Bind beg with let.
Richard M. Stallman <rms@gnu.org>
parents: 10918
diff changeset
205
6d3568e33019 (Info-menu): Bind beg with let.
Richard M. Stallman <rms@gnu.org>
parents: 10918
diff changeset
206 ;;;###autoload
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
207 (defun info (&optional file)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
208 "Enter Info, the documentation browser.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
209 Optional argument FILE specifies the file to examine;
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
210 the default is the top-level directory of Info.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
211
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
212 In interactive use, a prefix argument directs this command
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
213 to read a file name from the minibuffer."
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
214 (interactive (if current-prefix-arg
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
215 (list (read-file-name "Info file name: " nil nil t))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
216 (if file
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
217 (Info-goto-node (concat "(" file ")"))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
218 (if (get-buffer "*info*")
10957
6d3568e33019 (Info-menu): Bind beg with let.
Richard M. Stallman <rms@gnu.org>
parents: 10918
diff changeset
219 (pop-to-buffer "*info*")
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
220 (Info-directory))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
221
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
222 ;;;###autoload
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
223 (defun info-standalone ()
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
224 "Run Emacs as a standalone Info reader.
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
225 Usage: emacs -f info-standalone [filename]
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
226 In standalone mode, \\<Info-mode-map>\\[Info-exit] exits Emacs itself."
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
227 (setq Info-standalone t)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
228 (if (and command-line-args-left
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
229 (not (string-match "^-" (car command-line-args-left))))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
230 (condition-case err
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
231 (progn
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
232 (info (car command-line-args-left))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
233 (setq command-line-args-left (cdr command-line-args-left)))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
234 (error (send-string-to-terminal
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
235 (format "%s\n" (if (eq (car-safe err) 'error)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
236 (nth 1 err) err)))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
237 (save-buffers-kill-emacs)))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
238 (info)))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
239
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
240 ;; Go to an info node specified as separate filename and nodename.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
241 ;; no-going-back is non-nil if recovering from an error in this function;
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
242 ;; it says do not attempt further (recursive) error recovery.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
243 (defun Info-find-node (filename nodename &optional no-going-back)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
244 ;; Convert filename to lower case if not found as specified.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
245 ;; Expand it.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
246 (if filename
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
247 (let (temp temp-downcase found)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
248 (setq filename (substitute-in-file-name filename))
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
249 (if (string= (downcase (file-name-nondirectory filename)) "dir")
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
250 (setq found t)
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
251 (let ((dirs (if (string-match "^\\./" filename)
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
252 ;; If specified name starts with `./'
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
253 ;; then just try current directory.
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
254 '("./")
9588
7d465ccfd45b (info-insert-file-contents): Always check for conflict with jka-compr.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
255 (if (file-name-absolute-p filename)
7d465ccfd45b (info-insert-file-contents): Always check for conflict with jka-compr.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
256 ;; No point in searching for an
7d465ccfd45b (info-insert-file-contents): Always check for conflict with jka-compr.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
257 ;; absolute file name
7d465ccfd45b (info-insert-file-contents): Always check for conflict with jka-compr.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
258 '(nil)
7d465ccfd45b (info-insert-file-contents): Always check for conflict with jka-compr.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
259 (if Info-additional-directory-list
7d465ccfd45b (info-insert-file-contents): Always check for conflict with jka-compr.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
260 (append Info-directory-list
7d465ccfd45b (info-insert-file-contents): Always check for conflict with jka-compr.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
261 Info-additional-directory-list)
7d465ccfd45b (info-insert-file-contents): Always check for conflict with jka-compr.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
262 Info-directory-list)))))
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
263 ;; Search the directory list for file FILENAME.
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
264 (while (and dirs (not found))
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
265 (setq temp (expand-file-name filename (car dirs)))
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
266 (setq temp-downcase
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
267 (expand-file-name (downcase filename) (car dirs)))
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
268 ;; Try several variants of specified name.
8369
c10b35194993 (Info-find-node): Use a loop instead of mapcar and catch.
Richard M. Stallman <rms@gnu.org>
parents: 8193
diff changeset
269 (let ((suffix-list Info-suffix-list))
c10b35194993 (Info-find-node): Use a loop instead of mapcar and catch.
Richard M. Stallman <rms@gnu.org>
parents: 8193
diff changeset
270 (while (and suffix-list (not found))
c10b35194993 (Info-find-node): Use a loop instead of mapcar and catch.
Richard M. Stallman <rms@gnu.org>
parents: 8193
diff changeset
271 (cond ((file-exists-p
c10b35194993 (Info-find-node): Use a loop instead of mapcar and catch.
Richard M. Stallman <rms@gnu.org>
parents: 8193
diff changeset
272 (concat temp (car (car suffix-list))))
c10b35194993 (Info-find-node): Use a loop instead of mapcar and catch.
Richard M. Stallman <rms@gnu.org>
parents: 8193
diff changeset
273 (setq found temp))
c10b35194993 (Info-find-node): Use a loop instead of mapcar and catch.
Richard M. Stallman <rms@gnu.org>
parents: 8193
diff changeset
274 ((file-exists-p
c10b35194993 (Info-find-node): Use a loop instead of mapcar and catch.
Richard M. Stallman <rms@gnu.org>
parents: 8193
diff changeset
275 (concat temp-downcase (car (car suffix-list))))
c10b35194993 (Info-find-node): Use a loop instead of mapcar and catch.
Richard M. Stallman <rms@gnu.org>
parents: 8193
diff changeset
276 (setq found temp-downcase)))
c10b35194993 (Info-find-node): Use a loop instead of mapcar and catch.
Richard M. Stallman <rms@gnu.org>
parents: 8193
diff changeset
277 (setq suffix-list (cdr suffix-list))))
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
278 (setq dirs (cdr dirs)))))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
279 (if found
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
280 (setq filename found)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
281 (error "Info file %s does not exist" filename))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
282 ;; Record the node we are leaving.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
283 (if (and Info-current-file (not no-going-back))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
284 (setq Info-history
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
285 (cons (list Info-current-file Info-current-node (point))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
286 Info-history)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
287 ;; Go into info buffer.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
288 (switch-to-buffer "*info*")
1484
6c2a714566d3 Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents: 1477
diff changeset
289 (buffer-disable-undo (current-buffer))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
290 (or (eq major-mode 'Info-mode)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
291 (Info-mode))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
292 (widen)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
293 (setq Info-current-node nil)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
294 (unwind-protect
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
295 (progn
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
296 ;; Switch files if necessary
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
297 (or (null filename)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
298 (equal Info-current-file filename)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
299 (let ((buffer-read-only nil))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
300 (setq Info-current-file nil
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
301 Info-current-subfile nil
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
302 Info-current-file-completions nil
2561
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
303 Info-index-alternatives nil
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
304 buffer-file-name nil)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
305 (erase-buffer)
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
306 (if (eq filename t)
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
307 (Info-insert-dir)
2561
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
308 (info-insert-file-contents filename t)
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
309 (setq default-directory (file-name-directory filename)))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
310 (set-buffer-modified-p nil)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
311 ;; See whether file has a tag table. Record the location if yes.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
312 (set-marker Info-tag-table-marker nil)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
313 (goto-char (point-max))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
314 (forward-line -8)
11527
7956811d4d9a (info-insert-file-contents): Set default-directory
Richard M. Stallman <rms@gnu.org>
parents: 11064
diff changeset
315 ;; Use string-equal, not equal, to ignore text props.
7956811d4d9a (info-insert-file-contents): Set default-directory
Richard M. Stallman <rms@gnu.org>
parents: 11064
diff changeset
316 (or (string-equal nodename "*")
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
317 (not (search-forward "\^_\nEnd tag table\n" nil t))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
318 (let (pos)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
319 ;; We have a tag table. Find its beginning.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
320 ;; Is this an indirect file?
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
321 (search-backward "\nTag table:\n")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
322 (setq pos (point))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
323 (if (save-excursion
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
324 (forward-line 2)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
325 (looking-at "(Indirect)\n"))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
326 ;; It is indirect. Copy it to another buffer
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
327 ;; and record that the tag table is in that buffer.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
328 (save-excursion
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
329 (let ((buf (current-buffer)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
330 (set-buffer (get-buffer-create " *info tag table*"))
1484
6c2a714566d3 Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents: 1477
diff changeset
331 (buffer-disable-undo (current-buffer))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
332 (setq case-fold-search t)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
333 (erase-buffer)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
334 (insert-buffer-substring buf)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
335 (set-marker Info-tag-table-marker
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
336 (match-end 0))))
998
61c6983219ff entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 990
diff changeset
337 (set-marker Info-tag-table-marker pos))))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
338 (setq Info-current-file
12646
cd83cf47be08 (Info-current-file): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 12433
diff changeset
339 (if (eq filename t) "dir" filename))))
11527
7956811d4d9a (info-insert-file-contents): Set default-directory
Richard M. Stallman <rms@gnu.org>
parents: 11064
diff changeset
340 ;; Use string-equal, not equal, to ignore text props.
7956811d4d9a (info-insert-file-contents): Set default-directory
Richard M. Stallman <rms@gnu.org>
parents: 11064
diff changeset
341 (if (string-equal nodename "*")
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
342 (progn (setq Info-current-node nodename)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
343 (Info-set-mode-line))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
344 ;; Search file for a suitable node.
990
d76731ebdff0 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 930
diff changeset
345 (let ((guesspos (point-min))
d76731ebdff0 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 930
diff changeset
346 (regexp (concat "Node: *" (regexp-quote nodename) " *[,\t\n\177]")))
d76731ebdff0 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 930
diff changeset
347 ;; First get advice from tag table if file has one.
d76731ebdff0 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 930
diff changeset
348 ;; Also, if this is an indirect info file,
d76731ebdff0 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 930
diff changeset
349 ;; read the proper subfile into this buffer.
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
350 (if (marker-position Info-tag-table-marker)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
351 (save-excursion
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
352 (set-buffer (marker-buffer Info-tag-table-marker))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
353 (goto-char Info-tag-table-marker)
990
d76731ebdff0 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 930
diff changeset
354 (if (re-search-forward regexp nil t)
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
355 (progn
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
356 (setq guesspos (read (current-buffer)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
357 ;; If this is an indirect file,
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
358 ;; determine which file really holds this node
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
359 ;; and read it in.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
360 (if (not (eq (current-buffer) (get-buffer "*info*")))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
361 (setq guesspos
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
362 (Info-read-subfile guesspos))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
363 (error "No such node: \"%s\"" nodename))))
990
d76731ebdff0 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 930
diff changeset
364 (goto-char (max (point-min) (- guesspos 1000)))
d76731ebdff0 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 930
diff changeset
365 ;; Now search from our advised position (or from beg of buffer)
d76731ebdff0 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 930
diff changeset
366 ;; to find the actual node.
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
367 (catch 'foo
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
368 (while (search-forward "\n\^_" nil t)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
369 (forward-line 1)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
370 (let ((beg (point)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
371 (forward-line 1)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
372 (if (re-search-backward regexp beg t)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
373 (throw 'foo t))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
374 (error "No such node: %s" nodename)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
375 (Info-select-node)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
376 ;; If we did not finish finding the specified node,
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
377 ;; go back to the previous one.
6716
9ce2d1a2c155 (Info-find-node): Don't try to backstep if no history.
Karl Heuer <kwzh@gnu.org>
parents: 6624
diff changeset
378 (or Info-current-node no-going-back (null Info-history)
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
379 (let ((hist (car Info-history)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
380 (setq Info-history (cdr Info-history))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
381 (Info-find-node (nth 0 hist) (nth 1 hist) t)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
382 (goto-char (nth 2 hist)))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
383 (goto-char (point-min)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
384
1979
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
385 ;; Cache the contents of the (virtual) dir file, once we have merged
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
386 ;; it for the first time, so we can save time subsequently.
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
387 (defvar Info-dir-contents nil)
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
388
1979
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
389 ;; Cache for the directory we decided to use for the default-directory
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
390 ;; of the merged dir text.
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
391 (defvar Info-dir-contents-directory nil)
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
392
3836
04f1cff889f4 (Info-insert-dir): Record file attributes of files used.
Richard M. Stallman <rms@gnu.org>
parents: 3565
diff changeset
393 ;; Record the file attributes of all the files from which we
04f1cff889f4 (Info-insert-dir): Record file attributes of files used.
Richard M. Stallman <rms@gnu.org>
parents: 3565
diff changeset
394 ;; constructed Info-dir-contents.
04f1cff889f4 (Info-insert-dir): Record file attributes of files used.
Richard M. Stallman <rms@gnu.org>
parents: 3565
diff changeset
395 (defvar Info-dir-file-attributes nil)
04f1cff889f4 (Info-insert-dir): Record file attributes of files used.
Richard M. Stallman <rms@gnu.org>
parents: 3565
diff changeset
396
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
397 ;; Construct the Info directory node by merging the files named `dir'
1979
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
398 ;; from various directories. Set the *info* buffer's
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
399 ;; default-directory to the first directory we actually get any text
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
400 ;; from.
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
401 (defun Info-insert-dir ()
3836
04f1cff889f4 (Info-insert-dir): Record file attributes of files used.
Richard M. Stallman <rms@gnu.org>
parents: 3565
diff changeset
402 (if (and Info-dir-contents Info-dir-file-attributes
04f1cff889f4 (Info-insert-dir): Record file attributes of files used.
Richard M. Stallman <rms@gnu.org>
parents: 3565
diff changeset
403 ;; Verify that none of the files we used has changed
04f1cff889f4 (Info-insert-dir): Record file attributes of files used.
Richard M. Stallman <rms@gnu.org>
parents: 3565
diff changeset
404 ;; since we used it.
04f1cff889f4 (Info-insert-dir): Record file attributes of files used.
Richard M. Stallman <rms@gnu.org>
parents: 3565
diff changeset
405 (eval (cons 'and
04f1cff889f4 (Info-insert-dir): Record file attributes of files used.
Richard M. Stallman <rms@gnu.org>
parents: 3565
diff changeset
406 (mapcar '(lambda (elt)
7911
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
407 (let ((curr (file-attributes (car elt))))
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
408 ;; Don't compare the access time.
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
409 (if curr (setcar (nthcdr 4 curr) 0))
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
410 (setcar (nthcdr 4 (cdr elt)) 0)
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
411 (equal (cdr elt) curr)))
3836
04f1cff889f4 (Info-insert-dir): Record file attributes of files used.
Richard M. Stallman <rms@gnu.org>
parents: 3565
diff changeset
412 Info-dir-file-attributes))))
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
413 (insert Info-dir-contents)
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
414 (let ((dirs Info-directory-list)
3212
cd8f8468a190 (Info-insert-dir): Ignore duplicate directories.
Richard M. Stallman <rms@gnu.org>
parents: 3127
diff changeset
415 buffers buffer others nodes dirs-done)
1979
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
416
7911
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
417 (setq Info-dir-file-attributes nil)
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
418
1979
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
419 ;; Search the directory list for the directory file.
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
420 (while dirs
5271
c415cc48a084 (Info-insert-dir): Compute truename just once for each dir.
Richard M. Stallman <rms@gnu.org>
parents: 5146
diff changeset
421 (let ((truename (file-truename (expand-file-name (car dirs)))))
c415cc48a084 (Info-insert-dir): Compute truename just once for each dir.
Richard M. Stallman <rms@gnu.org>
parents: 5146
diff changeset
422 (or (member truename dirs-done)
c415cc48a084 (Info-insert-dir): Compute truename just once for each dir.
Richard M. Stallman <rms@gnu.org>
parents: 5146
diff changeset
423 (member (directory-file-name truename) dirs-done)
c415cc48a084 (Info-insert-dir): Compute truename just once for each dir.
Richard M. Stallman <rms@gnu.org>
parents: 5146
diff changeset
424 ;; Try several variants of specified name.
c415cc48a084 (Info-insert-dir): Compute truename just once for each dir.
Richard M. Stallman <rms@gnu.org>
parents: 5146
diff changeset
425 ;; Try upcasing, appending `.info', or both.
7911
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
426 (let* (file
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
427 (attrs
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
428 (or
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
429 (progn (setq file (expand-file-name "dir" truename))
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
430 (file-attributes file))
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
431 (progn (setq file (expand-file-name "DIR" truename))
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
432 (file-attributes file))
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
433 (progn (setq file (expand-file-name "dir.info" truename))
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
434 (file-attributes file))
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
435 (progn (setq file (expand-file-name "DIR.INFO" truename))
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
436 (file-attributes file)))))
5271
c415cc48a084 (Info-insert-dir): Compute truename just once for each dir.
Richard M. Stallman <rms@gnu.org>
parents: 5146
diff changeset
437 (setq dirs-done
c415cc48a084 (Info-insert-dir): Compute truename just once for each dir.
Richard M. Stallman <rms@gnu.org>
parents: 5146
diff changeset
438 (cons truename
c415cc48a084 (Info-insert-dir): Compute truename just once for each dir.
Richard M. Stallman <rms@gnu.org>
parents: 5146
diff changeset
439 (cons (directory-file-name truename)
c415cc48a084 (Info-insert-dir): Compute truename just once for each dir.
Richard M. Stallman <rms@gnu.org>
parents: 5146
diff changeset
440 dirs-done)))
7911
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
441 (if attrs
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
442 (save-excursion
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
443 (or buffers
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
444 (message "Composing main Info directory..."))
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
445 (set-buffer (generate-new-buffer "info dir"))
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
446 (insert-file-contents file)
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
447 (setq buffers (cons (current-buffer) buffers)
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
448 Info-dir-file-attributes
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
449 (cons (cons file attrs)
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
450 Info-dir-file-attributes))))))
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
451 (setq dirs (cdr dirs))))
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
452
6716
9ce2d1a2c155 (Info-find-node): Don't try to backstep if no history.
Karl Heuer <kwzh@gnu.org>
parents: 6624
diff changeset
453 (or buffers
9ce2d1a2c155 (Info-find-node): Don't try to backstep if no history.
Karl Heuer <kwzh@gnu.org>
parents: 6624
diff changeset
454 (error "Can't find the info directory node"))
1979
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
455 ;; Distinguish the dir file that comes with Emacs from all the
3212
cd8f8468a190 (Info-insert-dir): Ignore duplicate directories.
Richard M. Stallman <rms@gnu.org>
parents: 3127
diff changeset
456 ;; others. Yes, that is really what this is supposed to do.
cd8f8468a190 (Info-insert-dir): Ignore duplicate directories.
Richard M. Stallman <rms@gnu.org>
parents: 3127
diff changeset
457 ;; If it doesn't work, fix it.
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
458 (setq buffer (car buffers)
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
459 others (cdr buffers))
1979
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
460
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
461 ;; Insert the entire original dir file as a start; use its
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
462 ;; default directory as the default directory for the whole
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
463 ;; concatenation.
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
464 (insert-buffer buffer)
1979
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
465 (setq Info-dir-contents-directory (save-excursion
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
466 (set-buffer buffer)
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
467 default-directory))
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
468
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
469 ;; Look at each of the other buffers one by one.
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
470 (while others
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
471 (let ((other (car others)))
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
472 ;; In each, find all the menus.
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
473 (save-excursion
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
474 (set-buffer other)
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
475 (goto-char (point-min))
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
476 ;; Find each menu, and add an elt to NODES for it.
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
477 (while (re-search-forward "^\\* Menu:" nil t)
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
478 (let (beg nodename end)
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
479 (forward-line 1)
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
480 (setq beg (point))
6339
f0f62abb621b (Info-insert-dir): Use printable escapes instead of embedding literal control
Karl Heuer <kwzh@gnu.org>
parents: 6121
diff changeset
481 (search-backward "\n\^_")
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
482 (search-forward "Node: ")
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
483 (setq nodename (Info-following-node-name))
6339
f0f62abb621b (Info-insert-dir): Use printable escapes instead of embedding literal control
Karl Heuer <kwzh@gnu.org>
parents: 6121
diff changeset
484 (search-forward "\n\^_" nil 'move)
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
485 (beginning-of-line)
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
486 (setq end (point))
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
487 (setq nodes (cons (list nodename other beg end) nodes))))))
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
488 (setq others (cdr others)))
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
489 ;; Add to the main menu a menu item for each other node.
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
490 (re-search-forward "^\\* Menu:")
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
491 (forward-line 1)
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
492 (let ((menu-items '("top"))
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
493 (nodes nodes)
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
494 (case-fold-search t)
6339
f0f62abb621b (Info-insert-dir): Use printable escapes instead of embedding literal control
Karl Heuer <kwzh@gnu.org>
parents: 6121
diff changeset
495 (end (save-excursion (search-forward "\^_" nil t) (point))))
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
496 (while nodes
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
497 (let ((nodename (car (car nodes))))
6537
f5ab0b6b9640 (Info-insert-dir): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents: 6339
diff changeset
498 (save-excursion
f5ab0b6b9640 (Info-insert-dir): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents: 6339
diff changeset
499 (or (member (downcase nodename) menu-items)
f5ab0b6b9640 (Info-insert-dir): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents: 6339
diff changeset
500 (re-search-forward (concat "^\\* "
f5ab0b6b9640 (Info-insert-dir): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents: 6339
diff changeset
501 (regexp-quote nodename)
f5ab0b6b9640 (Info-insert-dir): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents: 6339
diff changeset
502 "::")
f5ab0b6b9640 (Info-insert-dir): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents: 6339
diff changeset
503 end t)
f5ab0b6b9640 (Info-insert-dir): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents: 6339
diff changeset
504 (progn
f5ab0b6b9640 (Info-insert-dir): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents: 6339
diff changeset
505 (insert "* " nodename "::" "\n")
f5ab0b6b9640 (Info-insert-dir): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents: 6339
diff changeset
506 (setq menu-items (cons nodename menu-items))))))
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
507 (setq nodes (cdr nodes))))
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
508 ;; Now take each node of each of the other buffers
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
509 ;; and merge it into the main buffer.
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
510 (while nodes
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
511 (let ((nodename (car (car nodes))))
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
512 (goto-char (point-min))
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
513 ;; Find the like-named node in the main buffer.
6339
f0f62abb621b (Info-insert-dir): Use printable escapes instead of embedding literal control
Karl Heuer <kwzh@gnu.org>
parents: 6121
diff changeset
514 (if (re-search-forward (concat "\n\^_.*\n.*Node: "
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
515 (regexp-quote nodename)
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
516 "[,\n\t]")
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
517 nil t)
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
518 (progn
6339
f0f62abb621b (Info-insert-dir): Use printable escapes instead of embedding literal control
Karl Heuer <kwzh@gnu.org>
parents: 6121
diff changeset
519 (search-forward "\n\^_" nil 'move)
8913
65a8b9c507dc (Info-insert-dir): Insert newlines before rather than
Richard M. Stallman <rms@gnu.org>
parents: 8805
diff changeset
520 (beginning-of-line)
65a8b9c507dc (Info-insert-dir): Insert newlines before rather than
Richard M. Stallman <rms@gnu.org>
parents: 8805
diff changeset
521 (insert "\n"))
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
522 ;; If none exists, add one.
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
523 (goto-char (point-max))
8069
dfef58fcda75 (Info-insert-dir): Capitalize `node' when inserting it.
Richard M. Stallman <rms@gnu.org>
parents: 8018
diff changeset
524 (insert "\^_\nFile: dir\tNode: " nodename "\n\n* Menu:\n\n"))
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
525 ;; Merge the text from the other buffer's menu
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
526 ;; into the menu in the like-named node in the main buffer.
8913
65a8b9c507dc (Info-insert-dir): Insert newlines before rather than
Richard M. Stallman <rms@gnu.org>
parents: 8805
diff changeset
527 (apply 'insert-buffer-substring (cdr (car nodes))))
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
528 (setq nodes (cdr nodes)))
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
529 ;; Kill all the buffers we just made.
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
530 (while buffers
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
531 (kill-buffer (car buffers))
7911
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
532 (setq buffers (cdr buffers)))
185c1f12db67 (Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents: 7859
diff changeset
533 (message "Composing main Info directory...done"))
1979
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
534 (setq Info-dir-contents (buffer-string)))
0582c70595f1 * info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents: 1971
diff changeset
535 (setq default-directory Info-dir-contents-directory))
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
536
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
537 (defun Info-read-subfile (nodepos)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
538 (set-buffer (marker-buffer Info-tag-table-marker))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
539 (goto-char (point-min))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
540 (search-forward "\n\^_")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
541 (let (lastfilepos
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
542 lastfilename)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
543 (forward-line 2)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
544 (catch 'foo
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
545 (while (not (looking-at "\^_"))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
546 (if (not (eolp))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
547 (let ((beg (point))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
548 thisfilepos thisfilename)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
549 (search-forward ": ")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
550 (setq thisfilename (buffer-substring beg (- (point) 2)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
551 (setq thisfilepos (read (current-buffer)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
552 ;; read in version 19 stops at the end of number.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
553 ;; Advance to the next line.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
554 (forward-line 1)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
555 (if (> thisfilepos nodepos)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
556 (throw 'foo t))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
557 (setq lastfilename thisfilename)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
558 (setq lastfilepos thisfilepos))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
559 (forward-line 1))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
560 (set-buffer (get-buffer "*info*"))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
561 (or (equal Info-current-subfile lastfilename)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
562 (let ((buffer-read-only nil))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
563 (setq buffer-file-name nil)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
564 (widen)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
565 (erase-buffer)
2561
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
566 (info-insert-file-contents lastfilename)
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
567 (set-buffer-modified-p nil)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
568 (setq Info-current-subfile lastfilename)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
569 (goto-char (point-min))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
570 (search-forward "\n\^_")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
571 (+ (- nodepos lastfilepos) (point))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
572
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
573 ;; Select the info node that point is in.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
574 (defun Info-select-node ()
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
575 (save-excursion
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
576 ;; Find beginning of node.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
577 (search-backward "\n\^_")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
578 (forward-line 2)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
579 ;; Get nodename spelled as it is in the node.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
580 (re-search-forward "Node:[ \t]*")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
581 (setq Info-current-node
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
582 (buffer-substring (point)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
583 (progn
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
584 (skip-chars-forward "^,\t\n")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
585 (point))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
586 (Info-set-mode-line)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
587 ;; Find the end of it, and narrow.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
588 (beginning-of-line)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
589 (let (active-expression)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
590 (narrow-to-region (point)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
591 (if (re-search-forward "\n[\^_\f]" nil t)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
592 (prog1
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
593 (1- (point))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
594 (if (looking-at "[\n\^_\f]*execute: ")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
595 (progn
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
596 (goto-char (match-end 0))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
597 (setq active-expression
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
598 (read (current-buffer))))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
599 (point-max)))
4261
f9599125f7f0 (Info-select-node): Run Info-selection-hook.
Richard M. Stallman <rms@gnu.org>
parents: 3844
diff changeset
600 (if Info-enable-active-nodes (eval active-expression))
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
601 (if Info-fontify (Info-fontify-node))
4261
f9599125f7f0 (Info-select-node): Run Info-selection-hook.
Richard M. Stallman <rms@gnu.org>
parents: 3844
diff changeset
602 (run-hooks 'Info-selection-hook))))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
603
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
604 (defun Info-set-mode-line ()
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
605 (setq mode-line-buffer-identification
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
606 (concat
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
607 "Info: ("
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
608 (if Info-current-file
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
609 (file-name-nondirectory Info-current-file)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
610 "")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
611 ")"
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
612 (or Info-current-node ""))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
613
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
614 ;; Go to an info node specified with a filename-and-nodename string
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
615 ;; of the sort that is found in pointers in nodes.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
616
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
617 (defun Info-goto-node (nodename)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
618 "Go to info node named NAME. Give just NODENAME or (FILENAME)NODENAME."
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
619 (interactive (list (Info-read-node-name "Goto node: ")))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
620 (let (filename)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
621 (string-match "\\s *\\((\\s *\\([^\t)]*\\)\\s *)\\s *\\|\\)\\(.*\\)"
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
622 nodename)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
623 (setq filename (if (= (match-beginning 1) (match-end 1))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
624 ""
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
625 (substring nodename (match-beginning 2) (match-end 2)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
626 nodename (substring nodename (match-beginning 3) (match-end 3)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
627 (let ((trim (string-match "\\s *\\'" filename)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
628 (if trim (setq filename (substring filename 0 trim))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
629 (let ((trim (string-match "\\s *\\'" nodename)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
630 (if trim (setq nodename (substring nodename 0 trim))))
12433
17387b7fe5b8 (Info-goto-node, Info-search):
Richard M. Stallman <rms@gnu.org>
parents: 12294
diff changeset
631 (if transient-mark-mode (deactivate-mark))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
632 (Info-find-node (if (equal filename "") nil filename)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
633 (if (equal nodename "") "Top" nodename))))
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
634
12779
5b3d83e51b91 (Info-read-node-name-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12646
diff changeset
635 ;; This function is used as the "completion table" while reading a node name.
5b3d83e51b91 (Info-read-node-name-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12646
diff changeset
636 ;; It does completion using the alist in completion-table
5b3d83e51b91 (Info-read-node-name-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12646
diff changeset
637 ;; unless STRING starts with an open-paren.
5b3d83e51b91 (Info-read-node-name-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12646
diff changeset
638 (defun Info-read-node-name-1 (string predicate code)
5b3d83e51b91 (Info-read-node-name-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12646
diff changeset
639 (let ((no-completion (and (> (length string) 0) (eq (aref string 0) ?\())))
5b3d83e51b91 (Info-read-node-name-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12646
diff changeset
640 (cond ((eq code nil)
5b3d83e51b91 (Info-read-node-name-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12646
diff changeset
641 (if no-completion
5b3d83e51b91 (Info-read-node-name-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12646
diff changeset
642 string
5b3d83e51b91 (Info-read-node-name-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12646
diff changeset
643 (try-completion string completion-table predicate)))
5b3d83e51b91 (Info-read-node-name-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12646
diff changeset
644 ((eq code t)
5b3d83e51b91 (Info-read-node-name-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12646
diff changeset
645 (if no-completion
5b3d83e51b91 (Info-read-node-name-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12646
diff changeset
646 nil
5b3d83e51b91 (Info-read-node-name-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12646
diff changeset
647 (all-completions string completion-table predicate)))
5b3d83e51b91 (Info-read-node-name-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12646
diff changeset
648 ((eq code 'lambda)
5b3d83e51b91 (Info-read-node-name-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12646
diff changeset
649 (if no-completion
5b3d83e51b91 (Info-read-node-name-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12646
diff changeset
650 t
5b3d83e51b91 (Info-read-node-name-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12646
diff changeset
651 (assoc string completion-table))))))
5b3d83e51b91 (Info-read-node-name-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12646
diff changeset
652
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
653 (defun Info-read-node-name (prompt &optional default)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
654 (let* ((completion-ignore-case t)
12779
5b3d83e51b91 (Info-read-node-name-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12646
diff changeset
655 (completion-table (Info-build-node-completions))
5b3d83e51b91 (Info-read-node-name-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12646
diff changeset
656 (nodename (completing-read prompt 'Info-read-node-name-1)))
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
657 (if (equal nodename "")
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
658 (or default
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
659 (Info-read-node-name prompt))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
660 nodename)))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
661
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
662 (defun Info-build-node-completions ()
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
663 (or Info-current-file-completions
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
664 (let ((compl nil))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
665 (save-excursion
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
666 (save-restriction
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
667 (if (marker-buffer Info-tag-table-marker)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
668 (progn
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
669 (set-buffer (marker-buffer Info-tag-table-marker))
6049
32df2b4d67cf (Info-build-node-completions): Add a call to widen.
Richard M. Stallman <rms@gnu.org>
parents: 5555
diff changeset
670 (widen)
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
671 (goto-char Info-tag-table-marker)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
672 (while (re-search-forward "\nNode: \\(.*\\)\177" nil t)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
673 (setq compl
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
674 (cons (list (buffer-substring (match-beginning 1)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
675 (match-end 1)))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
676 compl))))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
677 (widen)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
678 (goto-char (point-min))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
679 (while (search-forward "\n\^_" nil t)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
680 (forward-line 1)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
681 (let ((beg (point)))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
682 (forward-line 1)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
683 (if (re-search-backward "Node: *\\([^,\n]*\\) *[,\n\t]"
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
684 beg t)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
685 (setq compl
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
686 (cons (list (buffer-substring (match-beginning 1)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
687 (match-end 1)))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
688 compl))))))))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
689 (setq Info-current-file-completions compl))))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
690
540
0840eff2ecd5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 359
diff changeset
691 (defun Info-restore-point (hl)
0840eff2ecd5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 359
diff changeset
692 "If this node has been visited, restore the point value when we left."
6049
32df2b4d67cf (Info-build-node-completions): Add a call to widen.
Richard M. Stallman <rms@gnu.org>
parents: 5555
diff changeset
693 (while hl
32df2b4d67cf (Info-build-node-completions): Add a call to widen.
Richard M. Stallman <rms@gnu.org>
parents: 5555
diff changeset
694 (if (and (equal (nth 0 (car hl)) Info-current-file)
11527
7956811d4d9a (info-insert-file-contents): Set default-directory
Richard M. Stallman <rms@gnu.org>
parents: 11064
diff changeset
695 ;; Use string-equal, not equal, to ignore text props.
7956811d4d9a (info-insert-file-contents): Set default-directory
Richard M. Stallman <rms@gnu.org>
parents: 11064
diff changeset
696 (string-equal (nth 1 (car hl)) Info-current-node))
6049
32df2b4d67cf (Info-build-node-completions): Add a call to widen.
Richard M. Stallman <rms@gnu.org>
parents: 5555
diff changeset
697 (progn
6121
a9caf92da1d3 (Info-restore-point): Don't wipe out hl before using it.
Karl Heuer <kwzh@gnu.org>
parents: 6049
diff changeset
698 (goto-char (nth 2 (car hl)))
a9caf92da1d3 (Info-restore-point): Don't wipe out hl before using it.
Karl Heuer <kwzh@gnu.org>
parents: 6049
diff changeset
699 (setq hl nil)) ;terminate the while at next iter
6049
32df2b4d67cf (Info-build-node-completions): Add a call to widen.
Richard M. Stallman <rms@gnu.org>
parents: 5555
diff changeset
700 (setq hl (cdr hl)))))
540
0840eff2ecd5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 359
diff changeset
701
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
702 (defvar Info-last-search nil
3084
a4341d92948a (Info-edit, Info-last-search, Info-enable-edit):
Richard M. Stallman <rms@gnu.org>
parents: 3047
diff changeset
703 "Default regexp for \\<Info-mode-map>\\[Info-search] command to search for.")
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
704
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
705 (defun Info-search (regexp)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
706 "Search for REGEXP, starting from point, and select node it's found in."
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
707 (interactive "sSearch (regexp): ")
12433
17387b7fe5b8 (Info-goto-node, Info-search):
Richard M. Stallman <rms@gnu.org>
parents: 12294
diff changeset
708 (if transient-mark-mode (deactivate-mark))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
709 (if (equal regexp "")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
710 (setq regexp Info-last-search)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
711 (setq Info-last-search regexp))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
712 (let ((found ()) current
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
713 (onode Info-current-node)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
714 (ofile Info-current-file)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
715 (opoint (point))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
716 (osubfile Info-current-subfile))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
717 (save-excursion
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
718 (save-restriction
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
719 (widen)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
720 (if (null Info-current-subfile)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
721 (progn (re-search-forward regexp) (setq found (point)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
722 (condition-case err
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
723 (progn (re-search-forward regexp) (setq found (point)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
724 (search-failed nil)))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
725 (if (not found) ;can only happen in subfile case -- else would have erred
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
726 (unwind-protect
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
727 (let ((list ()))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
728 (set-buffer (marker-buffer Info-tag-table-marker))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
729 (goto-char (point-min))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
730 (search-forward "\n\^_\nIndirect:")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
731 (save-restriction
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
732 (narrow-to-region (point)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
733 (progn (search-forward "\n\^_")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
734 (1- (point))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
735 (goto-char (point-min))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
736 (search-forward (concat "\n" osubfile ": "))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
737 (beginning-of-line)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
738 (while (not (eobp))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
739 (re-search-forward "\\(^.*\\): [0-9]+$")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
740 (goto-char (+ (match-end 1) 2))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
741 (setq list (cons (cons (read (current-buffer))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
742 (buffer-substring (match-beginning 1)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
743 (match-end 1)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
744 list))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
745 (goto-char (1+ (match-end 0))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
746 (setq list (nreverse list)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
747 current (car (car list))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
748 list (cdr list)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
749 (while list
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
750 (message "Searching subfile %s..." (cdr (car list)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
751 (Info-read-subfile (car (car list)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
752 (setq list (cdr list))
8069
dfef58fcda75 (Info-insert-dir): Capitalize `node' when inserting it.
Richard M. Stallman <rms@gnu.org>
parents: 8018
diff changeset
753 ;; (goto-char (point-min))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
754 (if (re-search-forward regexp nil t)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
755 (setq found (point) list ())))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
756 (if found
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
757 (message "")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
758 (signal 'search-failed (list regexp))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
759 (if (not found)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
760 (progn (Info-read-subfile opoint)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
761 (goto-char opoint)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
762 (Info-select-node)))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
763 (widen)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
764 (goto-char found)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
765 (Info-select-node)
11527
7956811d4d9a (info-insert-file-contents): Set default-directory
Richard M. Stallman <rms@gnu.org>
parents: 11064
diff changeset
766 ;; Use string-equal, not equal, to ignore text props.
7956811d4d9a (info-insert-file-contents): Set default-directory
Richard M. Stallman <rms@gnu.org>
parents: 11064
diff changeset
767 (or (and (string-equal onode Info-current-node)
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
768 (equal ofile Info-current-file))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
769 (setq Info-history (cons (list ofile onode opoint)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
770 Info-history)))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
771
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
772 ;; Extract the value of the node-pointer named NAME.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
773 ;; If there is none, use ERRORNAME in the error message;
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
774 ;; if ERRORNAME is nil, just return nil.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
775 (defun Info-extract-pointer (name &optional errorname)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
776 (save-excursion
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
777 (goto-char (point-min))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
778 (forward-line 1)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
779 (if (re-search-backward (concat name ":") nil t)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
780 (progn
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
781 (goto-char (match-end 0))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
782 (Info-following-node-name))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
783 (if (eq errorname t)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
784 nil
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
785 (error (concat "Node has no " (capitalize (or errorname name))))))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
786
1971
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
787 ;; Return the node name in the buffer following point.
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
788 ;; ALLOWEDCHARS, if non-nil, goes within [...] to make a regexp
b540866e8a79 (Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
789 ;; saying which chas may appear in the node name.
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
790 (defun Info-following-node-name (&optional allowedchars)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
791 (skip-chars-forward " \t")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
792 (buffer-substring
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
793 (point)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
794 (progn
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
795 (while (looking-at (concat "[" (or allowedchars "^,\t\n") "]"))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
796 (skip-chars-forward (concat (or allowedchars "^,\t\n") "("))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
797 (if (looking-at "(")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
798 (skip-chars-forward "^)")))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
799 (skip-chars-backward " ")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
800 (point))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
801
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
802 (defun Info-next ()
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
803 "Go to the next node of this node."
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
804 (interactive)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
805 (Info-goto-node (Info-extract-pointer "next")))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
806
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
807 (defun Info-prev ()
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
808 "Go to the previous node of this node."
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
809 (interactive)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
810 (Info-goto-node (Info-extract-pointer "prev[ious]*" "previous")))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
811
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
812 (defun Info-up ()
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
813 "Go to the superior node of this node."
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
814 (interactive)
540
0840eff2ecd5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 359
diff changeset
815 (Info-goto-node (Info-extract-pointer "up"))
0840eff2ecd5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 359
diff changeset
816 (Info-restore-point Info-history))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
817
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
818 (defun Info-last ()
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
819 "Go back to the last node visited."
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
820 (interactive)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
821 (or Info-history
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
822 (error "This is the first Info node you looked at"))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
823 (let (filename nodename opoint)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
824 (setq filename (car (car Info-history)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
825 (setq nodename (car (cdr (car Info-history))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
826 (setq opoint (car (cdr (cdr (car Info-history)))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
827 (setq Info-history (cdr Info-history))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
828 (Info-find-node filename nodename)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
829 (setq Info-history (cdr Info-history))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
830 (goto-char opoint)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
831
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
832 (defun Info-directory ()
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
833 "Go to the Info directory node."
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
834 (interactive)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
835 (Info-find-node "dir" "top"))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
836
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
837 (defun Info-follow-reference (footnotename)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
838 "Follow cross reference named NAME to the node it refers to.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
839 NAME may be an abbreviation of the reference name."
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
840 (interactive
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
841 (let ((completion-ignore-case t)
5555
38f8bfd91cca (Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents: 5482
diff changeset
842 completions default alt-default (start-point (point)) str i bol eol)
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
843 (save-excursion
5555
38f8bfd91cca (Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents: 5482
diff changeset
844 ;; Store end and beginning of line.
38f8bfd91cca (Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents: 5482
diff changeset
845 (end-of-line)
38f8bfd91cca (Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents: 5482
diff changeset
846 (setq eol (point))
38f8bfd91cca (Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents: 5482
diff changeset
847 (beginning-of-line)
38f8bfd91cca (Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents: 5482
diff changeset
848 (setq bol (point))
38f8bfd91cca (Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents: 5482
diff changeset
849
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
850 (goto-char (point-min))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
851 (while (re-search-forward "\\*note[ \n\t]*\\([^:]*\\):" nil t)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
852 (setq str (buffer-substring
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
853 (match-beginning 1)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
854 (1- (point))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
855 ;; See if this one should be the default.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
856 (and (null default)
5146
aa2236a14893 (Info-follow-reference): Correct one-off error in comparing start-point.
Richard M. Stallman <rms@gnu.org>
parents: 5091
diff changeset
857 (<= (match-beginning 0) start-point)
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
858 (<= start-point (point))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
859 (setq default t))
5555
38f8bfd91cca (Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents: 5482
diff changeset
860 ;; See if this one should be the alternate default.
38f8bfd91cca (Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents: 5482
diff changeset
861 (and (null alt-default)
38f8bfd91cca (Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents: 5482
diff changeset
862 (and (<= bol (match-beginning 0))
38f8bfd91cca (Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents: 5482
diff changeset
863 (<= (point) eol))
38f8bfd91cca (Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents: 5482
diff changeset
864 (setq alt-default t))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
865 (setq i 0)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
866 (while (setq i (string-match "[ \n\t]+" str i))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
867 (setq str (concat (substring str 0 i) " "
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
868 (substring str (match-end 0))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
869 (setq i (1+ i)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
870 ;; Record as a completion and perhaps as default.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
871 (if (eq default t) (setq default str))
5555
38f8bfd91cca (Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents: 5482
diff changeset
872 (if (eq alt-default t) (setq alt-default str))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
873 (setq completions
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
874 (cons (cons str nil)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
875 completions))))
5555
38f8bfd91cca (Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents: 5482
diff changeset
876 ;; If no good default was found, try an alternate.
38f8bfd91cca (Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents: 5482
diff changeset
877 (or default
38f8bfd91cca (Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents: 5482
diff changeset
878 (setq default alt-default))
38f8bfd91cca (Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents: 5482
diff changeset
879 ;; If only one cross-reference found, then make it default.
38f8bfd91cca (Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents: 5482
diff changeset
880 (if (eq (length completions) 1)
38f8bfd91cca (Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents: 5482
diff changeset
881 (setq default (car (car completions))))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
882 (if completions
3565
bd87ecca04f6 (Info-follow-reference): Fix completion defaulting.
Richard M. Stallman <rms@gnu.org>
parents: 3451
diff changeset
883 (let ((input (completing-read (if default
bd87ecca04f6 (Info-follow-reference): Fix completion defaulting.
Richard M. Stallman <rms@gnu.org>
parents: 3451
diff changeset
884 (concat "Follow reference named: ("
bd87ecca04f6 (Info-follow-reference): Fix completion defaulting.
Richard M. Stallman <rms@gnu.org>
parents: 3451
diff changeset
885 default ") ")
bd87ecca04f6 (Info-follow-reference): Fix completion defaulting.
Richard M. Stallman <rms@gnu.org>
parents: 3451
diff changeset
886 "Follow reference named: ")
bd87ecca04f6 (Info-follow-reference): Fix completion defaulting.
Richard M. Stallman <rms@gnu.org>
parents: 3451
diff changeset
887 completions nil t)))
bd87ecca04f6 (Info-follow-reference): Fix completion defaulting.
Richard M. Stallman <rms@gnu.org>
parents: 3451
diff changeset
888 (list (if (equal input "")
bd87ecca04f6 (Info-follow-reference): Fix completion defaulting.
Richard M. Stallman <rms@gnu.org>
parents: 3451
diff changeset
889 default input)))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
890 (error "No cross-references in this node"))))
10061
41a9afd33e98 (Info-follow-reference): Use regexp-quote.
Richard M. Stallman <rms@gnu.org>
parents: 9852
diff changeset
891 (let (target beg i (str (concat "\\*note " (regexp-quote footnotename))))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
892 (while (setq i (string-match " " str i))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
893 (setq str (concat (substring str 0 i) "[ \t\n]+" (substring str (1+ i))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
894 (setq i (+ i 6)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
895 (save-excursion
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
896 (goto-char (point-min))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
897 (or (re-search-forward str nil t)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
898 (error "No cross-reference named %s" footnotename))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
899 (goto-char (+ (match-beginning 0) 5))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
900 (setq target
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
901 (Info-extract-menu-node-name "Bad format cross reference" t)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
902 (while (setq i (string-match "[ \t\n]+" target i))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
903 (setq target (concat (substring target 0 i) " "
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
904 (substring target (match-end 0))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
905 (setq i (+ i 1)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
906 (Info-goto-node target)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
907
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
908 (defun Info-extract-menu-node-name (&optional errmessage multi-line)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
909 (skip-chars-forward " \t\n")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
910 (let ((beg (point))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
911 str i)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
912 (skip-chars-forward "^:")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
913 (forward-char 1)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
914 (setq str
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
915 (if (looking-at ":")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
916 (buffer-substring beg (1- (point)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
917 (skip-chars-forward " \t\n")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
918 (Info-following-node-name (if multi-line "^.,\t" "^.,\t\n"))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
919 (while (setq i (string-match "\n" str i))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
920 (aset str i ?\ ))
10918
a78b47b38c46 (Info-extract-menu-node-name): Collapse multiple spaces.
Richard M. Stallman <rms@gnu.org>
parents: 10758
diff changeset
921 ;; Collapse multiple spaces.
a78b47b38c46 (Info-extract-menu-node-name): Collapse multiple spaces.
Richard M. Stallman <rms@gnu.org>
parents: 10758
diff changeset
922 (while (string-match " +" str)
a78b47b38c46 (Info-extract-menu-node-name): Collapse multiple spaces.
Richard M. Stallman <rms@gnu.org>
parents: 10758
diff changeset
923 (setq str (replace-match " " t t str)))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
924 str))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
925
7837
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
926 ;; No one calls this.
1484
6c2a714566d3 Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents: 1477
diff changeset
927 ;;(defun Info-menu-item-sequence (list)
6c2a714566d3 Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents: 1477
diff changeset
928 ;; (while list
7837
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
929 ;; (Info-menu (car list))
1484
6c2a714566d3 Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents: 1477
diff changeset
930 ;; (setq list (cdr list))))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
931
7837
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
932 (defun Info-complete-menu-item (string predicate action)
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
933 (let ((case-fold-search t))
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
934 (cond ((eq action nil)
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
935 (let (completions
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
936 (pattern (concat "\n\\* \\("
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
937 (regexp-quote string)
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
938 "[^:\t\n]*\\):")))
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
939 (save-excursion
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
940 (set-buffer Info-complete-menu-buffer)
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
941 (goto-char (point-min))
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
942 (while (re-search-forward pattern nil t)
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
943 (setq completions (cons (cons (format "%s"
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
944 (buffer-substring
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
945 (match-beginning 1)
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
946 (match-end 1)))
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
947 (match-beginning 1))
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
948 completions))))
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
949 (try-completion string completions predicate)))
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
950 ((eq action t)
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
951 (let (completions
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
952 (pattern (concat "\n\\* \\("
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
953 (regexp-quote string)
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
954 "[^:\t\n]*\\):")))
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
955 (save-excursion
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
956 (set-buffer Info-complete-menu-buffer)
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
957 (goto-char (point-min))
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
958 (while (re-search-forward pattern nil t)
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
959 (setq completions (cons (cons (format "%s"
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
960 (buffer-substring
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
961 (match-beginning 1)
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
962 (match-end 1)))
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
963 (match-beginning 1))
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
964 completions))))
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
965 (all-completions string completions predicate)))
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
966 (t
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
967 (save-excursion
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
968 (set-buffer Info-complete-menu-buffer)
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
969 (goto-char (point-min))
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
970 (re-search-forward (concat "\n\\* "
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
971 (regexp-quote string)
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
972 ":")
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
973 nil t))))))
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
974
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
975
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
976 (defun Info-menu (menu-item)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
977 "Go to node for menu item named (or abbreviated) NAME.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
978 Completion is allowed, and the menu item point is on is the default."
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
979 (interactive
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
980 (let ((completions '())
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
981 ;; If point is within a menu item, use that item as the default
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
982 (default nil)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
983 (p (point))
10957
6d3568e33019 (Info-menu): Bind beg with let.
Richard M. Stallman <rms@gnu.org>
parents: 10918
diff changeset
984 beg
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
985 (last nil))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
986 (save-excursion
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
987 (goto-char (point-min))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
988 (if (not (search-forward "\n* menu:" nil t))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
989 (error "No menu in this node"))
7837
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
990 (setq beg (point))
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
991 (and (< (point) p)
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
992 (save-excursion
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
993 (goto-char p)
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
994 (end-of-line)
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
995 (re-search-backward "\n\\* \\([^:\t\n]*\\):" beg t)
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
996 (setq default (format "%s" (buffer-substring
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
997 (match-beginning 1)
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
998 (match-end 1)))))))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
999 (let ((item nil))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1000 (while (null item)
7837
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
1001 (setq item (let ((completion-ignore-case t)
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
1002 (Info-complete-menu-buffer (current-buffer)))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1003 (completing-read (if default
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1004 (format "Menu item (default %s): "
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1005 default)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1006 "Menu item: ")
7837
bad6366d4f16 (Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7789
diff changeset
1007 'Info-complete-menu-item nil t)))
540
0840eff2ecd5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 359
diff changeset
1008 ;; we rely on the fact that completing-read accepts an input
0840eff2ecd5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 359
diff changeset
1009 ;; of "" even when the require-match argument is true and ""
0840eff2ecd5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 359
diff changeset
1010 ;; is not a valid possibility
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1011 (if (string= item "")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1012 (if default
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1013 (setq item default)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1014 ;; ask again
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1015 (setq item nil))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1016 (list item))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1017 ;; there is a problem here in that if several menu items have the same
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1018 ;; name you can only go to the node of the first with this command.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1019 (Info-goto-node (Info-extract-menu-item menu-item)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1020
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1021 (defun Info-extract-menu-item (menu-item)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1022 (setq menu-item (regexp-quote menu-item))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1023 (save-excursion
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1024 (goto-char (point-min))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1025 (or (search-forward "\n* menu:" nil t)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1026 (error "No menu in this node"))
4967
67810bbdfc9d (Info-extract-menu-item): Quote `*' in the menu-item
Richard M. Stallman <rms@gnu.org>
parents: 4468
diff changeset
1027 (or (re-search-forward (concat "\n\\* " menu-item ":") nil t)
67810bbdfc9d (Info-extract-menu-item): Quote `*' in the menu-item
Richard M. Stallman <rms@gnu.org>
parents: 4468
diff changeset
1028 (re-search-forward (concat "\n\\* " menu-item) nil t)
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1029 (error "No such item in menu"))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1030 (beginning-of-line)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1031 (forward-char 2)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1032 (Info-extract-menu-node-name)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1033
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1034 ;; If COUNT is nil, use the last item in the menu.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1035 (defun Info-extract-menu-counting (count)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1036 (save-excursion
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1037 (goto-char (point-min))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1038 (or (search-forward "\n* menu:" nil t)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1039 (error "No menu in this node"))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1040 (if count
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1041 (or (search-forward "\n* " nil t count)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1042 (error "Too few items in menu"))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1043 (while (search-forward "\n* " nil t)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1044 nil))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1045 (Info-extract-menu-node-name)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1046
1666
c12fbca81b63 (Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents: 1613
diff changeset
1047 (defun Info-nth-menu-item ()
c12fbca81b63 (Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents: 1613
diff changeset
1048 "Go to the node of the Nth menu item.
c12fbca81b63 (Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents: 1613
diff changeset
1049 N is the digit argument used to invoke this command."
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1050 (interactive)
1666
c12fbca81b63 (Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents: 1613
diff changeset
1051 (Info-goto-node
c12fbca81b63 (Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents: 1613
diff changeset
1052 (Info-extract-menu-counting
c12fbca81b63 (Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents: 1613
diff changeset
1053 (- (aref (this-command-keys) (1- (length (this-command-keys)))) ?0))))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1054
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1055 (defun Info-top-node ()
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1056 "Go to the Top node of this file."
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1057 (interactive)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1058 (Info-goto-node "Top"))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1059
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1060 (defun Info-final-node ()
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1061 "Go to the final node in this file."
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1062 (interactive)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1063 (Info-goto-node "Top")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1064 (let (Info-history)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1065 ;; Go to the last node in the menu of Top.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1066 (Info-goto-node (Info-extract-menu-counting nil))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1067 ;; If the last node in the menu is not last in pointer structure,
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1068 ;; move forward until we can't go any farther.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1069 (while (Info-forward-node t t) nil)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1070 ;; Then keep moving down to last subnode, unless we reach an index.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1071 (while (and (not (string-match "\\<index\\>" Info-current-node))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1072 (save-excursion (search-forward "\n* Menu:" nil t)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1073 (Info-goto-node (Info-extract-menu-counting nil)))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1074
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1075 (defun Info-forward-node (&optional not-down no-error)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1076 "Go forward one node, considering all nodes as forming one sequence."
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1077 (interactive)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1078 (goto-char (point-min))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1079 (forward-line 1)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1080 ;; three possibilities, in order of priority:
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1081 ;; 1. next node is in a menu in this node (but not in an index)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1082 ;; 2. next node is next at same level
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1083 ;; 3. next node is up and next
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1084 (cond ((and (not not-down)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1085 (save-excursion (search-forward "\n* menu:" nil t))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1086 (not (string-match "\\<index\\>" Info-current-node)))
2036
a71101e5abff (Info-forward-node): Properly go to first menu item.
Richard M. Stallman <rms@gnu.org>
parents: 2032
diff changeset
1087 (Info-goto-node (Info-extract-menu-counting 1))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1088 t)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1089 ((save-excursion (search-backward "next:" nil t))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1090 (Info-next)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1091 t)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1092 ((and (save-excursion (search-backward "up:" nil t))
11527
7956811d4d9a (info-insert-file-contents): Set default-directory
Richard M. Stallman <rms@gnu.org>
parents: 11064
diff changeset
1093 ;; Use string-equal, not equal, to ignore text props.
7956811d4d9a (info-insert-file-contents): Set default-directory
Richard M. Stallman <rms@gnu.org>
parents: 11064
diff changeset
1094 (not (string-equal (downcase (Info-extract-pointer "up"))
7956811d4d9a (info-insert-file-contents): Set default-directory
Richard M. Stallman <rms@gnu.org>
parents: 11064
diff changeset
1095 "top")))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1096 (let ((old-node Info-current-node))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1097 (Info-up)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1098 (let (Info-history success)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1099 (unwind-protect
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1100 (setq success (Info-forward-node t no-error))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1101 (or success (Info-goto-node old-node))))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1102 (no-error nil)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1103 (t (error "No pointer forward from this node"))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1104
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1105 (defun Info-backward-node ()
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1106 "Go backward one node, considering all nodes as forming one sequence."
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1107 (interactive)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1108 (let ((prevnode (Info-extract-pointer "prev[ious]*" t))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1109 (upnode (Info-extract-pointer "up" t)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1110 (cond ((and upnode (string-match "(" upnode))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1111 (error "First node in file"))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1112 ((and upnode (or (null prevnode)
11527
7956811d4d9a (info-insert-file-contents): Set default-directory
Richard M. Stallman <rms@gnu.org>
parents: 11064
diff changeset
1113 ;; Use string-equal, not equal,
7956811d4d9a (info-insert-file-contents): Set default-directory
Richard M. Stallman <rms@gnu.org>
parents: 11064
diff changeset
1114 ;; to ignore text properties.
7956811d4d9a (info-insert-file-contents): Set default-directory
Richard M. Stallman <rms@gnu.org>
parents: 11064
diff changeset
1115 (string-equal (downcase prevnode)
7956811d4d9a (info-insert-file-contents): Set default-directory
Richard M. Stallman <rms@gnu.org>
parents: 11064
diff changeset
1116 (downcase upnode))))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1117 (Info-up))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1118 (prevnode
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1119 ;; If we move back at the same level,
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1120 ;; go down to find the last subnode*.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1121 (Info-prev)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1122 (let (Info-history)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1123 (while (and (not (string-match "\\<index\\>" Info-current-node))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1124 (save-excursion (search-forward "\n* Menu:" nil t)))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1125 (Info-goto-node (Info-extract-menu-counting nil)))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1126 (t
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1127 (error "No pointer backward from this node")))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1128
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1129 (defun Info-exit ()
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1130 "Exit Info by selecting some other buffer."
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1131 (interactive)
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1132 (if Info-standalone
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1133 (save-buffers-kill-emacs)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1134 (switch-to-buffer (prog1 (other-buffer (current-buffer))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1135 (bury-buffer (current-buffer))))))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1136
929
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1137 (defun Info-next-menu-item ()
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1138 (interactive)
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1139 (save-excursion
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1140 (forward-line -1)
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1141 (search-forward "\n* menu:" nil t)
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1142 (or (search-forward "\n* " nil t)
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1143 (error "No more items in menu"))
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1144 (Info-goto-node (Info-extract-menu-node-name))))
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1145
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1146 (defun Info-last-menu-item ()
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1147 (interactive)
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1148 (save-excursion
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1149 (forward-line 1)
8489
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1150 (let ((beg (save-excursion
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1151 (and (search-backward "\n* menu:" nil t)
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1152 (point)))))
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1153 (or (and beg (search-backward "\n* " beg t))
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1154 (error "No previous items in menu")))
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1155 (Info-goto-node (save-excursion
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1156 (goto-char (match-end 0))
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1157 (Info-extract-menu-node-name)))))
929
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1158
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1159 (defmacro Info-no-error (&rest body)
929
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1160 (list 'condition-case nil (cons 'progn (append body '(t))) '(error nil)))
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1161
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1162 (defun Info-next-preorder ()
8018
518971c497f5 (Info-next-preorder-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7990
diff changeset
1163 "Go to the next subnode or the next node, or go up a level."
518971c497f5 (Info-next-preorder-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7990
diff changeset
1164 (interactive)
518971c497f5 (Info-next-preorder-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7990
diff changeset
1165 (cond ((Info-no-error (Info-next-menu-item)))
518971c497f5 (Info-next-preorder-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7990
diff changeset
1166 ((Info-no-error (Info-next)))
518971c497f5 (Info-next-preorder-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7990
diff changeset
1167 ((Info-no-error (Info-up))
12156
1620a60ab7ca (Info-mode): Doco fix.
Karl Heuer <kwzh@gnu.org>
parents: 11959
diff changeset
1168 ;; Since we have already gone thru all the items in this menu,
1620a60ab7ca (Info-mode): Doco fix.
Karl Heuer <kwzh@gnu.org>
parents: 11959
diff changeset
1169 ;; go up to the end of this node.
1620a60ab7ca (Info-mode): Doco fix.
Karl Heuer <kwzh@gnu.org>
parents: 11959
diff changeset
1170 (goto-char (point-max)))
8018
518971c497f5 (Info-next-preorder-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7990
diff changeset
1171 (t
518971c497f5 (Info-next-preorder-1): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7990
diff changeset
1172 (error "No more nodes"))))
929
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1173
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1174 (defun Info-last-preorder ()
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1175 "Go to the last node, popping up a level if there is none."
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1176 (interactive)
8489
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1177 (cond ((Info-no-error
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1178 (Info-last-menu-item)
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1179 ;; If we go down a menu item, go to the end of the node
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1180 ;; so we can scroll back through it.
12156
1620a60ab7ca (Info-mode): Doco fix.
Karl Heuer <kwzh@gnu.org>
parents: 11959
diff changeset
1181 (goto-char (point-max)))
1620a60ab7ca (Info-mode): Doco fix.
Karl Heuer <kwzh@gnu.org>
parents: 11959
diff changeset
1182 (recenter -1))
1620a60ab7ca (Info-mode): Doco fix.
Karl Heuer <kwzh@gnu.org>
parents: 11959
diff changeset
1183 ((Info-no-error (Info-prev))
1620a60ab7ca (Info-mode): Doco fix.
Karl Heuer <kwzh@gnu.org>
parents: 11959
diff changeset
1184 (goto-char (point-max))
1620a60ab7ca (Info-mode): Doco fix.
Karl Heuer <kwzh@gnu.org>
parents: 11959
diff changeset
1185 (recenter -1))
1620a60ab7ca (Info-mode): Doco fix.
Karl Heuer <kwzh@gnu.org>
parents: 11959
diff changeset
1186 ((Info-no-error (Info-up))
1620a60ab7ca (Info-mode): Doco fix.
Karl Heuer <kwzh@gnu.org>
parents: 11959
diff changeset
1187 (goto-char (point-min))
1620a60ab7ca (Info-mode): Doco fix.
Karl Heuer <kwzh@gnu.org>
parents: 11959
diff changeset
1188 (or (search-forward "\n* Menu:" nil t)
1620a60ab7ca (Info-mode): Doco fix.
Karl Heuer <kwzh@gnu.org>
parents: 11959
diff changeset
1189 (goto-char (point-max))))
1620a60ab7ca (Info-mode): Doco fix.
Karl Heuer <kwzh@gnu.org>
parents: 11959
diff changeset
1190 (t (error "No previous nodes"))))
929
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1191
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1192 (defun Info-scroll-up ()
9222
b18f51df31b3 (Info-scroll-down, Info-scroll-up): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 8913
diff changeset
1193 "Scroll one screenful forward in Info, considering all nodes as one sequence.
b18f51df31b3 (Info-scroll-down, Info-scroll-up): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 8913
diff changeset
1194 Once you scroll far enough in a node that its menu appears on the screen,
b18f51df31b3 (Info-scroll-down, Info-scroll-up): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 8913
diff changeset
1195 the next scroll moves into its first subnode. When you scroll past
12156
1620a60ab7ca (Info-mode): Doco fix.
Karl Heuer <kwzh@gnu.org>
parents: 11959
diff changeset
1196 the end of a node, that goes to the next node or back up to the parent node."
929
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1197 (interactive)
8489
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1198 (if (or (< (window-start) (point-min))
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1199 (> (window-start) (point-max)))
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1200 (set-window-start (selected-window) (point)))
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1201 (let ((virtual-end (save-excursion
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1202 (goto-char (point-min))
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1203 (if (search-forward "\n* Menu:" nil t)
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1204 (point)
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1205 (point-max)))))
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1206 (if (or (< virtual-end (window-start))
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1207 (pos-visible-in-window-p virtual-end))
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1208 (Info-next-preorder)
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1209 (scroll-up))))
929
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1210
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1211 (defun Info-scroll-down ()
9222
b18f51df31b3 (Info-scroll-down, Info-scroll-up): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 8913
diff changeset
1212 "Scroll one screenful back in Info, considering all nodes as one sequence.
12156
1620a60ab7ca (Info-mode): Doco fix.
Karl Heuer <kwzh@gnu.org>
parents: 11959
diff changeset
1213 Within the menu of a node, this goes to its last subnode.
1620a60ab7ca (Info-mode): Doco fix.
Karl Heuer <kwzh@gnu.org>
parents: 11959
diff changeset
1214 When you scroll past the beginning of a node, that goes to the
1620a60ab7ca (Info-mode): Doco fix.
Karl Heuer <kwzh@gnu.org>
parents: 11959
diff changeset
1215 previous node or back up to the parent node."
929
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1216 (interactive)
8489
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1217 (if (or (< (window-start) (point-min))
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1218 (> (window-start) (point-max)))
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1219 (set-window-start (selected-window) (point)))
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1220 (let ((virtual-end (save-excursion
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1221 (goto-char (point-min))
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1222 (search-forward "\n* Menu:" nil t))))
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1223 (if (or virtual-end (pos-visible-in-window-p (point-min)))
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1224 (Info-last-preorder)
c6088e3005cf (Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents: 8480
diff changeset
1225 (scroll-down))))
929
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1226
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1227 (defun Info-next-reference ()
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1228 "Move cursor to the next cross-reference or menu item in the node."
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1229 (interactive)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1230 (let ((pat "\\*note[ \n\t]*\\([^:]*\\):\\|^\\* .*:")
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1231 (old-pt (point)))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1232 (or (eobp) (forward-char 1))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1233 (or (re-search-forward pat nil t)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1234 (progn
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1235 (goto-char (point-min))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1236 (or (re-search-forward pat nil t)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1237 (progn
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1238 (goto-char old-pt)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1239 (error "No cross references in this node")))))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1240 (goto-char (match-beginning 0))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1241 (if (looking-at "\\* Menu:")
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1242 (Info-next-reference))))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1243
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1244 (defun Info-prev-reference ()
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1245 "Move cursor to the previous cross-reference or menu item in the node."
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1246 (interactive)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1247 (let ((pat "\\*note[ \n\t]*\\([^:]*\\):\\|^\\* .*:")
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1248 (old-pt (point)))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1249 (or (re-search-backward pat nil t)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1250 (progn
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1251 (goto-char (point-max))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1252 (or (re-search-backward pat nil t)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1253 (progn
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1254 (goto-char old-pt)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1255 (error "No cross references in this node")))))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1256 (goto-char (match-beginning 0))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1257 (if (looking-at "\\* Menu:")
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1258 (Info-prev-reference))))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1259
2561
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1260 (defun Info-index (topic)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1261 "Look up a string in the index for this file.
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1262 The index is defined as the first node in the top-level menu whose
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1263 name contains the word \"Index\", plus any immediately following
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1264 nodes whose names also contain the word \"Index\".
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1265 If there are no exact matches to the specified topic, this chooses
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1266 the first match which is a case-insensitive substring of a topic.
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1267 Use the `,' command to see the other matches.
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1268 Give a blank topic name to go to the Index node itself."
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1269 (interactive "sIndex topic: ")
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1270 (let ((orignode Info-current-node)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1271 (rnode nil)
8071
184f2c23ff45 (Info-index): Fix typo: t => \t.
Richard M. Stallman <rms@gnu.org>
parents: 8069
diff changeset
1272 (pattern (format "\n\\* \\([^\n:]*%s[^\n:]*\\):[ \t]*\\([^.\n]*\\)\\.[ \t]*\\([0-9]*\\)"
2561
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1273 (regexp-quote topic)))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1274 node)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1275 (Info-goto-node "Top")
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1276 (or (search-forward "\n* menu:" nil t)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1277 (error "No index"))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1278 (or (re-search-forward "\n\\* \\(.*\\<Index\\>\\)" nil t)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1279 (error "No index"))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1280 (goto-char (match-beginning 1))
10758
a66a29e6efc9 (Info-index): Bind Info-history, not Info-keep-history.
Richard M. Stallman <rms@gnu.org>
parents: 10061
diff changeset
1281 ;; Here, and subsequently in this function,
a66a29e6efc9 (Info-index): Bind Info-history, not Info-keep-history.
Richard M. Stallman <rms@gnu.org>
parents: 10061
diff changeset
1282 ;; we bind Info-history to nil for internal node-switches
a66a29e6efc9 (Info-index): Bind Info-history, not Info-keep-history.
Richard M. Stallman <rms@gnu.org>
parents: 10061
diff changeset
1283 ;; so that we don't put junk in the history.
a66a29e6efc9 (Info-index): Bind Info-history, not Info-keep-history.
Richard M. Stallman <rms@gnu.org>
parents: 10061
diff changeset
1284 ;; In the first Info-goto-node call, above, we do update the history
a66a29e6efc9 (Info-index): Bind Info-history, not Info-keep-history.
Richard M. Stallman <rms@gnu.org>
parents: 10061
diff changeset
1285 ;; because that is what the user's previous node choice into it.
a66a29e6efc9 (Info-index): Bind Info-history, not Info-keep-history.
Richard M. Stallman <rms@gnu.org>
parents: 10061
diff changeset
1286 (let ((Info-history nil))
2561
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1287 (Info-goto-node (Info-extract-menu-node-name)))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1288 (or (equal topic "")
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1289 (let ((matches nil)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1290 (exact nil)
10758
a66a29e6efc9 (Info-index): Bind Info-history, not Info-keep-history.
Richard M. Stallman <rms@gnu.org>
parents: 10061
diff changeset
1291 (Info-history nil)
2561
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1292 found)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1293 (while
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1294 (progn
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1295 (goto-char (point-min))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1296 (while (re-search-forward pattern nil t)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1297 (setq matches
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1298 (cons (list (buffer-substring (match-beginning 1)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1299 (match-end 1))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1300 (buffer-substring (match-beginning 2)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1301 (match-end 2))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1302 Info-current-node
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1303 (string-to-int (concat "0"
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1304 (buffer-substring
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1305 (match-beginning 3)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1306 (match-end 3)))))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1307 matches)))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1308 (and (setq node (Info-extract-pointer "next" t))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1309 (string-match "\\<Index\\>" node)))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1310 (Info-goto-node node))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1311 (or matches
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1312 (progn
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1313 (Info-last)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1314 (error "No \"%s\" in index" topic)))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1315 ;; Here it is a feature that assoc is case-sensitive.
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1316 (while (setq found (assoc topic matches))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1317 (setq exact (cons found exact)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1318 matches (delq found matches)))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1319 (setq Info-index-alternatives (nconc exact (nreverse matches)))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1320 (Info-index-next 0)))))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1321
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1322 (defun Info-index-next (num)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1323 "Go to the next matching index item from the last `i' command."
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1324 (interactive "p")
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1325 (or Info-index-alternatives
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1326 (error "No previous `i' command in this file"))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1327 (while (< num 0)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1328 (setq num (+ num (length Info-index-alternatives))))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1329 (while (> num 0)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1330 (setq Info-index-alternatives
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1331 (nconc (cdr Info-index-alternatives)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1332 (list (car Info-index-alternatives)))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1333 num (1- num)))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1334 (Info-goto-node (nth 1 (car Info-index-alternatives)))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1335 (if (> (nth 3 (car Info-index-alternatives)) 0)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1336 (forward-line (nth 3 (car Info-index-alternatives)))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1337 (forward-line 3) ; don't search in headers
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1338 (let ((name (car (car Info-index-alternatives))))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1339 (if (or (re-search-forward (format
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1340 "\\(Function\\|Command\\): %s\\( \\|$\\)"
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1341 (regexp-quote name)) nil t)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1342 (search-forward (format "`%s'" name) nil t)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1343 (and (string-match "\\`.*\\( (.*)\\)\\'" name)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1344 (search-forward
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1345 (format "`%s'" (substring name 0 (match-beginning 1)))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1346 nil t))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1347 (search-forward name nil t))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1348 (beginning-of-line)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1349 (goto-char (point-min)))))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1350 (message "Found \"%s\" in %s. %s"
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1351 (car (car Info-index-alternatives))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1352 (nth 2 (car Info-index-alternatives))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1353 (if (cdr Info-index-alternatives)
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1354 "(Press `,' for more)"
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1355 "(Only match)")))
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1356
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1357 (defun Info-undefined ()
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1358 "Make command be undefined in Info."
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1359 (interactive)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1360 (ding))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1361
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1362 (defun Info-help ()
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1363 "Enter the Info tutorial."
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1364 (interactive)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1365 (delete-other-windows)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1366 (Info-find-node "info"
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1367 (if (< (window-height) 23)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1368 "Help-Small-Screen"
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1369 "Help")))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1370
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1371 (defun Info-summary ()
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1372 "Display a brief summary of all Info commands."
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1373 (interactive)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1374 (save-window-excursion
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1375 (switch-to-buffer "*Help*")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1376 (erase-buffer)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1377 (insert (documentation 'Info-mode))
9852
b3a6fdcd63df (Info-summary): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents: 9782
diff changeset
1378 (help-mode)
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1379 (goto-char (point-min))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1380 (let (ch flag)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1381 (while (progn (setq flag (not (pos-visible-in-window-p (point-max))))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1382 (message (if flag "Type Space to see more"
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1383 "Type Space to return to Info"))
2032
20cc6c34421c (Info-summary): Handle any event when flushing the display.
Richard M. Stallman <rms@gnu.org>
parents: 1979
diff changeset
1384 (if (not (eq ?\ (setq ch (read-event))))
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1667
diff changeset
1385 (progn (setq unread-command-events (list ch)) nil)
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1386 flag))
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1387 (scroll-up)))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1388 (bury-buffer "*Help*")))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1389
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1390 (defun Info-get-token (pos start all &optional errorstring)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1391 "Return the token around POS,
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1392 POS must be somewhere inside the token
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1393 START is a regular expression which will match the
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1394 beginning of the tokens delimited string
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1395 ALL is a regular expression with a single
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1396 parenthized subpattern which is the token to be
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1397 returned. E.g. '{\(.*\)}' would return any string
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1398 enclosed in braces around POS.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1399 SIG optional fourth argument, controls action on no match
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1400 nil: return nil
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1401 t: beep
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1402 a string: signal an error, using that string."
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1403 (save-excursion
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1404 (goto-char pos)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1405 (re-search-backward start (max (point-min) (- pos 200)) 'yes)
3351
1795290d0fc8 (Info-get-token): Check that thesecond search succeeded.
Richard M. Stallman <rms@gnu.org>
parents: 3330
diff changeset
1406 (let (found)
1795290d0fc8 (Info-get-token): Check that thesecond search succeeded.
Richard M. Stallman <rms@gnu.org>
parents: 3330
diff changeset
1407 (while (and (re-search-forward all (min (point-max) (+ pos 200)) 'yes)
1795290d0fc8 (Info-get-token): Check that thesecond search succeeded.
Richard M. Stallman <rms@gnu.org>
parents: 3330
diff changeset
1408 (not (setq found (and (<= (match-beginning 0) pos)
1795290d0fc8 (Info-get-token): Check that thesecond search succeeded.
Richard M. Stallman <rms@gnu.org>
parents: 3330
diff changeset
1409 (> (match-end 0) pos))))))
1795290d0fc8 (Info-get-token): Check that thesecond search succeeded.
Richard M. Stallman <rms@gnu.org>
parents: 3330
diff changeset
1410 (if (and found (<= (match-beginning 0) pos)
1795290d0fc8 (Info-get-token): Check that thesecond search succeeded.
Richard M. Stallman <rms@gnu.org>
parents: 3330
diff changeset
1411 (> (match-end 0) pos))
1795290d0fc8 (Info-get-token): Check that thesecond search succeeded.
Richard M. Stallman <rms@gnu.org>
parents: 3330
diff changeset
1412 (buffer-substring (match-beginning 1) (match-end 1))
1795290d0fc8 (Info-get-token): Check that thesecond search succeeded.
Richard M. Stallman <rms@gnu.org>
parents: 3330
diff changeset
1413 (cond ((null errorstring)
1795290d0fc8 (Info-get-token): Check that thesecond search succeeded.
Richard M. Stallman <rms@gnu.org>
parents: 3330
diff changeset
1414 nil)
1795290d0fc8 (Info-get-token): Check that thesecond search succeeded.
Richard M. Stallman <rms@gnu.org>
parents: 3330
diff changeset
1415 ((eq errorstring t)
1795290d0fc8 (Info-get-token): Check that thesecond search succeeded.
Richard M. Stallman <rms@gnu.org>
parents: 3330
diff changeset
1416 (beep)
1795290d0fc8 (Info-get-token): Check that thesecond search succeeded.
Richard M. Stallman <rms@gnu.org>
parents: 3330
diff changeset
1417 nil)
1795290d0fc8 (Info-get-token): Check that thesecond search succeeded.
Richard M. Stallman <rms@gnu.org>
parents: 3330
diff changeset
1418 (t
1795290d0fc8 (Info-get-token): Check that thesecond search succeeded.
Richard M. Stallman <rms@gnu.org>
parents: 3330
diff changeset
1419 (error "No %s around position %d" errorstring pos)))))))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1420
7007
52b0ebfd3191 (Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents: 6716
diff changeset
1421 (defun Info-mouse-follow-nearest-node (click)
1309
aa286e6e7bec (Info-follow-nearest-node): Handle line breaks after *note.
Richard M. Stallman <rms@gnu.org>
parents: 998
diff changeset
1422 "\\<Info-mode-map>Follow a node reference near point.
aa286e6e7bec (Info-follow-nearest-node): Handle line breaks after *note.
Richard M. Stallman <rms@gnu.org>
parents: 998
diff changeset
1423 Like \\[Info-menu], \\[Info-follow-reference], \\[Info-next], \\[Info-prev] or \\[Info-up] command, depending on where you click.
7007
52b0ebfd3191 (Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents: 6716
diff changeset
1424 At end of the node's text, moves to the next node, or up if none."
1309
aa286e6e7bec (Info-follow-nearest-node): Handle line breaks after *note.
Richard M. Stallman <rms@gnu.org>
parents: 998
diff changeset
1425 (interactive "e")
1484
6c2a714566d3 Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents: 1477
diff changeset
1426 (let* ((start (event-start click))
6c2a714566d3 Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents: 1477
diff changeset
1427 (window (car start))
6c2a714566d3 Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents: 1477
diff changeset
1428 (pos (car (cdr start))))
6c2a714566d3 Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents: 1477
diff changeset
1429 (select-window window)
6c2a714566d3 Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents: 1477
diff changeset
1430 (goto-char pos))
7007
52b0ebfd3191 (Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents: 6716
diff changeset
1431 (and (not (Info-try-follow-nearest-node))
52b0ebfd3191 (Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents: 6716
diff changeset
1432 (save-excursion (forward-line 1) (eobp))
12156
1620a60ab7ca (Info-mode): Doco fix.
Karl Heuer <kwzh@gnu.org>
parents: 11959
diff changeset
1433 (Info-next-preorder)))
7007
52b0ebfd3191 (Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents: 6716
diff changeset
1434
52b0ebfd3191 (Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents: 6716
diff changeset
1435 (defun Info-follow-nearest-node ()
52b0ebfd3191 (Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents: 6716
diff changeset
1436 "\\<Info-mode-map>Follow a node reference near point.
52b0ebfd3191 (Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents: 6716
diff changeset
1437 Like \\[Info-menu], \\[Info-follow-reference], \\[Info-next], \\[Info-prev] or \\[Info-up] command, depending on where point is.
52b0ebfd3191 (Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents: 6716
diff changeset
1438 If no reference to follow, moves to the next node, or up if none."
52b0ebfd3191 (Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents: 6716
diff changeset
1439 (interactive)
52b0ebfd3191 (Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents: 6716
diff changeset
1440 (or (Info-try-follow-nearest-node)
12156
1620a60ab7ca (Info-mode): Doco fix.
Karl Heuer <kwzh@gnu.org>
parents: 11959
diff changeset
1441 (Info-next-preorder)))
7007
52b0ebfd3191 (Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents: 6716
diff changeset
1442
52b0ebfd3191 (Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents: 6716
diff changeset
1443 ;; Common subroutine.
52b0ebfd3191 (Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents: 6716
diff changeset
1444 (defun Info-try-follow-nearest-node ()
52b0ebfd3191 (Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents: 6716
diff changeset
1445 "Follow a node reference near point. Return non-nil if successful."
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1446 (let (node)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1447 (cond
7007
52b0ebfd3191 (Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents: 6716
diff changeset
1448 ((setq node (Info-get-token (point) "\\*note[ \n]"
52b0ebfd3191 (Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents: 6716
diff changeset
1449 "\\*note[ \n]\\([^:]*\\):"))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1450 (Info-follow-reference node))
3127
dfbada800489 (Info-follow-nearest-node): Omit 4th arg to Info-get-token.
Richard M. Stallman <rms@gnu.org>
parents: 3084
diff changeset
1451 ((setq node (Info-get-token (point) "\\* " "\\* \\([^:]*\\)::"))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1452 (Info-goto-node node))
3127
dfbada800489 (Info-follow-nearest-node): Omit 4th arg to Info-get-token.
Richard M. Stallman <rms@gnu.org>
parents: 3084
diff changeset
1453 ((setq node (Info-get-token (point) "\\* " "\\* \\([^:]*\\):"))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1454 (Info-menu node))
3127
dfbada800489 (Info-follow-nearest-node): Omit 4th arg to Info-get-token.
Richard M. Stallman <rms@gnu.org>
parents: 3084
diff changeset
1455 ((setq node (Info-get-token (point) "Up: " "Up: \\([^,\n\t]*\\)"))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1456 (Info-goto-node node))
3127
dfbada800489 (Info-follow-nearest-node): Omit 4th arg to Info-get-token.
Richard M. Stallman <rms@gnu.org>
parents: 3084
diff changeset
1457 ((setq node (Info-get-token (point) "Next: " "Next: \\([^,\n\t]*\\)"))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1458 (Info-goto-node node))
3127
dfbada800489 (Info-follow-nearest-node): Omit 4th arg to Info-get-token.
Richard M. Stallman <rms@gnu.org>
parents: 3084
diff changeset
1459 ((setq node (Info-get-token (point) "File: " "File: \\([^,\n\t]*\\)"))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1460 (Info-goto-node "Top"))
3127
dfbada800489 (Info-follow-nearest-node): Omit 4th arg to Info-get-token.
Richard M. Stallman <rms@gnu.org>
parents: 3084
diff changeset
1461 ((setq node (Info-get-token (point) "Prev: " "Prev: \\([^,\n\t]*\\)"))
7007
52b0ebfd3191 (Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents: 6716
diff changeset
1462 (Info-goto-node node)))
52b0ebfd3191 (Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents: 6716
diff changeset
1463 node))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1464
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1465 (defvar Info-mode-map nil
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1466 "Keymap containing Info commands.")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1467 (if Info-mode-map
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1468 nil
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1469 (setq Info-mode-map (make-keymap))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1470 (suppress-keymap Info-mode-map)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1471 (define-key Info-mode-map "." 'beginning-of-buffer)
929
27262a6c632a *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 846
diff changeset
1472 (define-key Info-mode-map " " 'Info-scroll-up)
7007
52b0ebfd3191 (Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents: 6716
diff changeset
1473 (define-key Info-mode-map "\C-m" 'Info-follow-nearest-node)
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1474 (define-key Info-mode-map "\t" 'Info-next-reference)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1475 (define-key Info-mode-map "\e\t" 'Info-prev-reference)
1666
c12fbca81b63 (Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents: 1613
diff changeset
1476 (define-key Info-mode-map "1" 'Info-nth-menu-item)
c12fbca81b63 (Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents: 1613
diff changeset
1477 (define-key Info-mode-map "2" 'Info-nth-menu-item)
c12fbca81b63 (Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents: 1613
diff changeset
1478 (define-key Info-mode-map "3" 'Info-nth-menu-item)
c12fbca81b63 (Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents: 1613
diff changeset
1479 (define-key Info-mode-map "4" 'Info-nth-menu-item)
c12fbca81b63 (Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents: 1613
diff changeset
1480 (define-key Info-mode-map "5" 'Info-nth-menu-item)
c12fbca81b63 (Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents: 1613
diff changeset
1481 (define-key Info-mode-map "6" 'Info-nth-menu-item)
c12fbca81b63 (Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents: 1613
diff changeset
1482 (define-key Info-mode-map "7" 'Info-nth-menu-item)
c12fbca81b63 (Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents: 1613
diff changeset
1483 (define-key Info-mode-map "8" 'Info-nth-menu-item)
c12fbca81b63 (Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents: 1613
diff changeset
1484 (define-key Info-mode-map "9" 'Info-nth-menu-item)
1667
9c0e14881b8f (Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents: 1666
diff changeset
1485 (define-key Info-mode-map "0" 'undefined)
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1486 (define-key Info-mode-map "?" 'Info-summary)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1487 (define-key Info-mode-map "]" 'Info-forward-node)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1488 (define-key Info-mode-map "[" 'Info-backward-node)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1489 (define-key Info-mode-map "<" 'Info-top-node)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1490 (define-key Info-mode-map ">" 'Info-final-node)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1491 (define-key Info-mode-map "b" 'beginning-of-buffer)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1492 (define-key Info-mode-map "d" 'Info-directory)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1493 (define-key Info-mode-map "e" 'Info-edit)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1494 (define-key Info-mode-map "f" 'Info-follow-reference)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1495 (define-key Info-mode-map "g" 'Info-goto-node)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1496 (define-key Info-mode-map "h" 'Info-help)
2561
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1497 (define-key Info-mode-map "i" 'Info-index)
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1498 (define-key Info-mode-map "l" 'Info-last)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1499 (define-key Info-mode-map "m" 'Info-menu)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1500 (define-key Info-mode-map "n" 'Info-next)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1501 (define-key Info-mode-map "p" 'Info-prev)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1502 (define-key Info-mode-map "q" 'Info-exit)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1503 (define-key Info-mode-map "s" 'Info-search)
8739
f89682e90658 (Info-mode-map): Bind M-s like s.
Richard M. Stallman <rms@gnu.org>
parents: 8692
diff changeset
1504 ;; For consistency with Rmail.
f89682e90658 (Info-mode-map): Bind M-s like s.
Richard M. Stallman <rms@gnu.org>
parents: 8692
diff changeset
1505 (define-key Info-mode-map "\M-s" 'Info-search)
3313
34f2db3916fe (Info-mode-map): Correct Info-top to Info-top-node.
Richard M. Stallman <rms@gnu.org>
parents: 3225
diff changeset
1506 (define-key Info-mode-map "t" 'Info-top-node)
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1507 (define-key Info-mode-map "u" 'Info-up)
2561
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1508 (define-key Info-mode-map "," 'Info-index-next)
930
1dac458b5117 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 929
diff changeset
1509 (define-key Info-mode-map "\177" 'Info-scroll-down)
7007
52b0ebfd3191 (Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents: 6716
diff changeset
1510 (define-key Info-mode-map [mouse-2] 'Info-mouse-follow-nearest-node)
540
0840eff2ecd5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 359
diff changeset
1511 )
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1512
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1513 ;; Info mode is suitable only for specially formatted data.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1514 (put 'info-mode 'mode-class 'special)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1515
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1516 (defun Info-mode ()
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1517 "\\<Info-mode-map>
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1518 Info mode provides commands for browsing through the Info documentation tree.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1519 Documentation in Info is divided into \"nodes\", each of which discusses
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1520 one topic and contains references to other nodes which discuss related
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1521 topics. Info has commands to follow the references and show you other nodes.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1522
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1523 \\[Info-help] Invoke the Info tutorial.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1524
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1525 Selecting other nodes:
8564
ca09c53c16a6 (Info-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 8489
diff changeset
1526 \\[Info-mouse-follow-nearest-node]
ca09c53c16a6 (Info-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 8489
diff changeset
1527 Follow a node reference you click on.
ca09c53c16a6 (Info-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 8489
diff changeset
1528 This works with menu items, cross references, and
ca09c53c16a6 (Info-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 8489
diff changeset
1529 the \"next\", \"previous\" and \"up\", depending on where you click.
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1530 \\[Info-next] Move to the \"next\" node of this node.
3127
dfbada800489 (Info-follow-nearest-node): Omit 4th arg to Info-get-token.
Richard M. Stallman <rms@gnu.org>
parents: 3084
diff changeset
1531 \\[Info-prev] Move to the \"previous\" node of this node.
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1532 \\[Info-up] Move \"up\" from this node.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1533 \\[Info-menu] Pick menu item specified by name (or abbreviation).
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1534 Picking a menu item causes another node to be selected.
540
0840eff2ecd5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 359
diff changeset
1535 \\[Info-directory] Go to the Info directory node.
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1536 \\[Info-follow-reference] Follow a cross reference. Reads name of reference.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1537 \\[Info-last] Move to the last node you were at.
2561
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1538 \\[Info-index] Look up a topic in this file's Index and move to that node.
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1539 \\[Info-index-next] (comma) Move to the next match from a previous `i' command.
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1540
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1541 Moving within a node:
5041
261b0de9eae1 (Info-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 4967
diff changeset
1542 \\[Info-scroll-up] Normally, scroll forward a full screen. If the end of the buffer is
930
1dac458b5117 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 929
diff changeset
1543 already visible, try to go to the next menu entry, or up if there is none.
5041
261b0de9eae1 (Info-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 4967
diff changeset
1544 \\[Info-scroll-down] Normally, scroll backward. If the beginning of the buffer is
930
1dac458b5117 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 929
diff changeset
1545 already visible, try to go to the previous menu entry, or up if there is none.
1dac458b5117 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 929
diff changeset
1546 \\[beginning-of-buffer] Go to beginning of node.
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1547
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1548 Advanced commands:
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1549 \\[Info-exit] Quit Info: reselect previously selected buffer.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1550 \\[Info-edit] Edit contents of selected node.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1551 1 Pick first item in node's menu.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1552 2, 3, 4, 5 Pick second ... fifth item in node's menu.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1553 \\[Info-goto-node] Move to node specified by name.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1554 You may include a filename as well, as (FILENAME)NODENAME.
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1555 \\[universal-argument] \\[info] Move to new Info file with completion.
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1556 \\[Info-search] Search through this Info file for specified regexp,
930
1dac458b5117 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 929
diff changeset
1557 and select the node in which the next occurrence is found.
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1558 \\[Info-next-reference] Move cursor to next cross-reference or menu item.
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1559 \\[Info-prev-reference] Move cursor to previous cross-reference or menu item."
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1560 (kill-all-local-variables)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1561 (setq major-mode 'Info-mode)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1562 (setq mode-name "Info")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1563 (use-local-map Info-mode-map)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1564 (set-syntax-table text-mode-syntax-table)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1565 (setq local-abbrev-table text-mode-abbrev-table)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1566 (setq case-fold-search t)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1567 (setq buffer-read-only t)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1568 (make-local-variable 'Info-current-file)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1569 (make-local-variable 'Info-current-subfile)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1570 (make-local-variable 'Info-current-node)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1571 (make-local-variable 'Info-tag-table-marker)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1572 (make-local-variable 'Info-history)
2561
1bd4cf98df68 (Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2038
diff changeset
1573 (make-local-variable 'Info-index-alternatives)
9572
b36d5e88cccc *** empty log message ***
Morten Welinder <terra@diku.dk>
parents: 9222
diff changeset
1574 (if (memq (framep (selected-frame)) '(x pc))
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1575 (progn
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1576 (make-face 'info-node)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1577 (make-face 'info-menu-5)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1578 (make-face 'info-xref)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1579 (or (face-differs-from-default-p 'info-node)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1580 (if (face-differs-from-default-p 'bold-italic)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1581 (copy-face 'bold-italic 'info-node)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1582 (copy-face 'bold 'info-node)))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1583 (or (face-differs-from-default-p 'info-menu-5)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1584 (set-face-underline-p 'info-menu-5 t))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1585 (or (face-differs-from-default-p 'info-xref)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1586 (copy-face 'bold 'info-xref)))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1587 (setq Info-fontify nil))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1588 (Info-set-mode-line)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1589 (run-hooks 'Info-mode-hook))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1590
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1591 (defvar Info-edit-map nil
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1592 "Local keymap used within `e' command of Info.")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1593 (if Info-edit-map
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1594 nil
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1595 (setq Info-edit-map (nconc (make-sparse-keymap) text-mode-map))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1596 (define-key Info-edit-map "\C-c\C-c" 'Info-cease-edit))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1597
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1598 ;; Info-edit mode is suitable only for specially formatted data.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1599 (put 'info-edit-mode 'mode-class 'special)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1600
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1601 (defun Info-edit-mode ()
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1602 "Major mode for editing the contents of an Info node.
1477
e31496f6289d Dox fix.
Christopher Zaborsky <rogue@erratum.com>
parents: 1340
diff changeset
1603 Like text mode with the addition of `Info-cease-edit'
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1604 which returns to Info mode for browsing.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1605 \\{Info-edit-map}"
8805
6d8297d65d78 (Info-edit): Move the customary mode-initialization calls out of here.
Karl Heuer <kwzh@gnu.org>
parents: 8739
diff changeset
1606 (use-local-map Info-edit-map)
6d8297d65d78 (Info-edit): Move the customary mode-initialization calls out of here.
Karl Heuer <kwzh@gnu.org>
parents: 8739
diff changeset
1607 (setq major-mode 'Info-edit-mode)
6d8297d65d78 (Info-edit): Move the customary mode-initialization calls out of here.
Karl Heuer <kwzh@gnu.org>
parents: 8739
diff changeset
1608 (setq mode-name "Info Edit")
6d8297d65d78 (Info-edit): Move the customary mode-initialization calls out of here.
Karl Heuer <kwzh@gnu.org>
parents: 8739
diff changeset
1609 (kill-local-variable 'mode-line-buffer-identification)
6d8297d65d78 (Info-edit): Move the customary mode-initialization calls out of here.
Karl Heuer <kwzh@gnu.org>
parents: 8739
diff changeset
1610 (setq buffer-read-only nil)
11580
7f357fe2cda5 (Info-edit-mode, Info-cease-edit): Use force-mode-line-update.
Karl Heuer <kwzh@gnu.org>
parents: 11527
diff changeset
1611 (force-mode-line-update)
8805
6d8297d65d78 (Info-edit): Move the customary mode-initialization calls out of here.
Karl Heuer <kwzh@gnu.org>
parents: 8739
diff changeset
1612 (buffer-enable-undo (current-buffer))
6d8297d65d78 (Info-edit): Move the customary mode-initialization calls out of here.
Karl Heuer <kwzh@gnu.org>
parents: 8739
diff changeset
1613 (run-hooks 'Info-edit-mode-hook))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1614
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1615 (defun Info-edit ()
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1616 "Edit the contents of this Info node.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1617 Allowed only if variable `Info-enable-edit' is non-nil."
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1618 (interactive)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1619 (or Info-enable-edit
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1620 (error "Editing info nodes is not enabled"))
8805
6d8297d65d78 (Info-edit): Move the customary mode-initialization calls out of here.
Karl Heuer <kwzh@gnu.org>
parents: 8739
diff changeset
1621 (Info-edit-mode)
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1622 (message (substitute-command-keys
8805
6d8297d65d78 (Info-edit): Move the customary mode-initialization calls out of here.
Karl Heuer <kwzh@gnu.org>
parents: 8739
diff changeset
1623 "Editing: Type \\<Info-edit-map>\\[Info-cease-edit] to return to info")))
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1624
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1625 (defun Info-cease-edit ()
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1626 "Finish editing Info node; switch back to Info proper."
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1627 (interactive)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1628 ;; Do this first, so nothing has changed if user C-g's at query.
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1629 (and (buffer-modified-p)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1630 (y-or-n-p "Save the file? ")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1631 (save-buffer))
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1632 (use-local-map Info-mode-map)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1633 (setq major-mode 'Info-mode)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1634 (setq mode-name "Info")
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1635 (Info-set-mode-line)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1636 (setq buffer-read-only t)
11580
7f357fe2cda5 (Info-edit-mode, Info-cease-edit): Use force-mode-line-update.
Karl Heuer <kwzh@gnu.org>
parents: 11527
diff changeset
1637 (force-mode-line-update)
325
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1638 (and (marker-position Info-tag-table-marker)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1639 (buffer-modified-p)
3f3710052f22 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1640 (message "Tags may have changed. Use Info-tagify if necessary")))
359
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1641
12889
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1642 (defvar Info-file-list-for-emacs
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1643 '("ediff" "forms" "gnus" "info" ("mh" . "mh-e") "sc")
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1644 "List of Info files that describe Emacs commands.
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1645 An element can be a file name, or a list of the form (PREFIX . FILE)
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1646 where PREFIX is a name prefix and FILE is the file to look in.
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1647 If the element is just a file name, the file name also serves as the prefix.")
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1648
359
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1649 (defun Info-find-emacs-command-nodes (command)
12889
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1650 "Return a list of locations documenting COMMAND.
12892
8b902b24d749 (Info-find-emacs-command-nodes): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12889
diff changeset
1651 The `info-file' property of COMMAND says which Info manual to search.
8b902b24d749 (Info-find-emacs-command-nodes): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12889
diff changeset
1652 If COMMAND has no property, the variable `Info-file-list-for-emacs'
8b902b24d749 (Info-find-emacs-command-nodes): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12889
diff changeset
1653 defines heuristics for which Info manual to try.
359
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1654 The locations are of the format used in Info-history, i.e.
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1655 \(FILENAME NODENAME BUFFERPOS\)."
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1656 (let ((where '())
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1657 (cmd-desc (concat "^\\* " (regexp-quote (symbol-name command))
12889
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1658 ":\\s *\\(.*\\)\\.$"))
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1659 (info-file "emacs")) ;default
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1660 ;; Determine which info file this command is documented in.
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1661 (if (get command 'info-file)
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1662 (setq info-file (get command 'info-file))
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1663 ;; If it doesn't say explicitly, test its name against
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1664 ;; various prefixes that we know.
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1665 (let ((file-list Info-file-list-for-emacs))
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1666 (while file-list
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1667 (let* ((elt (car file-list))
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1668 (name (if (consp elt)
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1669 (car elt)
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1670 elt))
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1671 (file (if (consp elt) (cdr elt) elt))
12892
8b902b24d749 (Info-find-emacs-command-nodes): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12889
diff changeset
1672 (regexp (concat "\\`" (regexp-quote name)
12889
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1673 "\\(\\'\\|-\\)")))
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1674 (if (string-match regexp (symbol-name command))
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1675 (setq info-file file file-list nil))
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1676 (setq file-list (cdr file-list))))))
359
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1677 (save-excursion
12889
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1678 (condition-case nil
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1679 (Info-find-node info-file "Command Index")
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1680 ;; Some manuals may not have a separate Command Index node,
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1681 ;; so try just Index instead.
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1682 (error
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1683 (Info-find-node info-file "Index")))
359
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1684 ;; Take the index node off the Info history.
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1685 (setq Info-history (cdr Info-history))
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1686 (goto-char (point-max))
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1687 (while (re-search-backward cmd-desc nil t)
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1688 (setq where (cons (list Info-current-file
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1689 (buffer-substring
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1690 (match-beginning 1)
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1691 (match-end 1))
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1692 0)
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1693 where)))
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1694 where)))
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1695
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1696 ;;;###autoload
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1697 (defun Info-goto-emacs-command-node (command)
4468
5e9224dac452 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 4410
diff changeset
1698 "Go to the Info node in the Emacs manual for command COMMAND.
12889
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1699 The command is found by looking up in Emacs manual's Command Index
12892
8b902b24d749 (Info-find-emacs-command-nodes): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12889
diff changeset
1700 or in another manual found via COMMAND's `info-file' property or
8b902b24d749 (Info-find-emacs-command-nodes): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12889
diff changeset
1701 the variable `Info-file-list-for-emacs'."
359
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1702 (interactive "CFind documentation for command: ")
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1703 (or (commandp command)
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1704 (signal 'wrong-type-argument (list 'commandp command)))
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1705 (let ((where (Info-find-emacs-command-nodes command)))
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1706 (if where
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1707 (let ((num-matches (length where)))
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1708 ;; Get Info running, and pop to it in another window.
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1709 (save-window-excursion
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1710 (info))
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1711 (pop-to-buffer "*info*")
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1712 (Info-find-node (car (car where))
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1713 (car (cdr (car where))))
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1714 (if (> num-matches 1)
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1715 (progn
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1716 ;; Info-find-node already pushed (car where) onto
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1717 ;; Info-history. Put the other nodes that were found on
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1718 ;; the history.
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1719 (setq Info-history (nconc (cdr where) Info-history))
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1720 (message (substitute-command-keys
6049
32df2b4d67cf (Info-build-node-completions): Add a call to widen.
Richard M. Stallman <rms@gnu.org>
parents: 5555
diff changeset
1721 "Found %d other entr%s. Use \\[Info-last] to see %s.")
32df2b4d67cf (Info-build-node-completions): Add a call to widen.
Richard M. Stallman <rms@gnu.org>
parents: 5555
diff changeset
1722 (1- num-matches)
32df2b4d67cf (Info-build-node-completions): Add a call to widen.
Richard M. Stallman <rms@gnu.org>
parents: 5555
diff changeset
1723 (if (> num-matches 2) "ies" "y")
32df2b4d67cf (Info-build-node-completions): Add a call to widen.
Richard M. Stallman <rms@gnu.org>
parents: 5555
diff changeset
1724 (if (> num-matches 2) "them" "it")))))
359
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1725 (error "Couldn't find documentation for %s." command))))
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1726
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1727 ;;;###autoload
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1728 (defun Info-goto-emacs-key-command-node (key)
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1729 "Go to the Info node in the Emacs manual the command bound to KEY, a string.
4468
5e9224dac452 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 4410
diff changeset
1730 Interactively, if the binding is execute-extended-command, a command is read.
12889
d912ac1e1f00 (Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12779
diff changeset
1731 The command is found by looking up in Emacs manual's Command Index
12892
8b902b24d749 (Info-find-emacs-command-nodes): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12889
diff changeset
1732 or in another manual found via COMMAND's `info-file' property or
8b902b24d749 (Info-find-emacs-command-nodes): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12889
diff changeset
1733 the variable `Info-file-list-for-emacs'."
359
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1734 (interactive "kFind documentation for key:")
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1735 (let ((command (key-binding key)))
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1736 (cond ((null command)
1484
6c2a714566d3 Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents: 1477
diff changeset
1737 (message "%s is undefined" (key-description key)))
359
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1738 ((and (interactive-p)
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1739 (eq command 'execute-extended-command))
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1740 (Info-goto-emacs-command-node
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1741 (read-command "Find documentation for command: ")))
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1742 (t
da45fa7bc8d1 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 325
diff changeset
1743 (Info-goto-emacs-command-node command)))))
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1744
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1745 (defun Info-fontify-node ()
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1746 (save-excursion
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1747 (let ((buffer-read-only nil))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1748 (goto-char (point-min))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1749 (if (looking-at "^File: [^,: \t]+,?[ \t]+")
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1750 (progn
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1751 (goto-char (match-end 0))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1752 (while
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1753 (looking-at "[ \t]*[^:, \t\n]+:[ \t]+\\([^:,\t\n]+\\),?")
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1754 (goto-char (match-end 0))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1755 (put-text-property (match-beginning 1) (match-end 1)
6624
ca39bae3744d (Info-fontify-node): Add mouse-face properties.
Richard M. Stallman <rms@gnu.org>
parents: 6566
diff changeset
1756 'face 'info-xref)
ca39bae3744d (Info-fontify-node): Add mouse-face properties.
Richard M. Stallman <rms@gnu.org>
parents: 6566
diff changeset
1757 (put-text-property (match-beginning 1) (match-end 1)
ca39bae3744d (Info-fontify-node): Add mouse-face properties.
Richard M. Stallman <rms@gnu.org>
parents: 6566
diff changeset
1758 'mouse-face 'highlight))))
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1759 (goto-char (point-min))
7859
1d1693211560 (Info-fontify-node): Require some whitespace after *Note.
Richard M. Stallman <rms@gnu.org>
parents: 7837
diff changeset
1760 (while (re-search-forward "\\*Note[ \n\t]+\\([^:]*\\):" nil t)
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1761 (if (= (char-after (1- (match-beginning 0))) ?\") ; hack
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1762 nil
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1763 (put-text-property (match-beginning 1) (match-end 1)
6624
ca39bae3744d (Info-fontify-node): Add mouse-face properties.
Richard M. Stallman <rms@gnu.org>
parents: 6566
diff changeset
1764 'face 'info-xref)
ca39bae3744d (Info-fontify-node): Add mouse-face properties.
Richard M. Stallman <rms@gnu.org>
parents: 6566
diff changeset
1765 (put-text-property (match-beginning 1) (match-end 1)
ca39bae3744d (Info-fontify-node): Add mouse-face properties.
Richard M. Stallman <rms@gnu.org>
parents: 6566
diff changeset
1766 'mouse-face 'highlight)))
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1767 (goto-char (point-min))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1768 (if (and (search-forward "\n* Menu:" nil t)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1769 (not (string-match "\\<Index\\>" Info-current-node))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1770 ;; Don't take time to annotate huge menus
8193
0be48d0d16fd (Info-fontify-maximum-menu-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8071
diff changeset
1771 (< (- (point-max) (point)) Info-fontify-maximum-menu-size))
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1772 (let ((n 0))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1773 (while (re-search-forward "^\\* \\([^:\t\n]*\\):" nil t)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1774 (setq n (1+ n))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1775 (if (memq n '(5 9)) ; visual aids to help with 1-9 keys
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1776 (put-text-property (match-beginning 0)
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1777 (1+ (match-beginning 0))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1778 'face 'info-menu-5))
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1779 (put-text-property (match-beginning 1) (match-end 1)
6624
ca39bae3744d (Info-fontify-node): Add mouse-face properties.
Richard M. Stallman <rms@gnu.org>
parents: 6566
diff changeset
1780 'face 'info-node)
ca39bae3744d (Info-fontify-node): Add mouse-face properties.
Richard M. Stallman <rms@gnu.org>
parents: 6566
diff changeset
1781 (put-text-property (match-beginning 1) (match-end 1)
ca39bae3744d (Info-fontify-node): Add mouse-face properties.
Richard M. Stallman <rms@gnu.org>
parents: 6566
diff changeset
1782 'mouse-face 'highlight))))
4410
25fb71fc2643 (Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4261
diff changeset
1783 (set-buffer-modified-p nil))))
584
4cd7543be581 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 540
diff changeset
1784
4cd7543be581 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 540
diff changeset
1785 (provide 'info)
4cd7543be581 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 540
diff changeset
1786
660
08eb386dd0f3 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 584
diff changeset
1787 ;;; info.el ends here