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