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