annotate lisp/info.el @ 45784:95b7f625cdf5

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