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