annotate lisp/info.el @ 51623:48bd8b78e37b

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