Mercurial > emacs
annotate lisp/info.el @ 66675:7e453939b0f8
*** empty log message ***
author | Nick Roberts <nickrob@snap.net.nz> |
---|---|
date | Thu, 03 Nov 2005 22:04:36 +0000 |
parents | d5afffbc0c96 |
children | ff5bc4e6c882 |
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 |
62822
7f11f471aa34
(Info-goto-node): Revert autoload addition (2004-06-12).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62733
diff
changeset
|
3 ;; Copyright (C) 1985, 1986, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, |
64762
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64501
diff
changeset
|
4 ;; 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
5 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
6 ;; Maintainer: FSF |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
7 ;; Keywords: help |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
8 |
325 | 9 ;; This file is part of GNU Emacs. |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
13 ;; the Free Software Foundation; either version 2, or (at your option) |
325 | 14 ;; any later version. |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64091 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
325 | 25 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
26 ;;; Commentary: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
27 |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
28 ;; 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
|
29 ;; 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
|
30 ;; - 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
|
31 ;; - 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
|
32 ;; - 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
|
33 ;; 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
|
34 ;; language terms that may contain ":" but not ": ". |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
35 |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
36 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
37 |
25869 | 38 (eval-when-compile (require 'jka-compr)) |
39 | |
17430
de68258fef5f
Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
17154
diff
changeset
|
40 (defgroup info nil |
64013
9ee64186bcf1
(info): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63935
diff
changeset
|
41 "Info subsystem." |
17430
de68258fef5f
Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
17154
diff
changeset
|
42 :group 'help |
de68258fef5f
Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
17154
diff
changeset
|
43 :group 'docs) |
de68258fef5f
Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
17154
diff
changeset
|
44 |
de68258fef5f
Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
17154
diff
changeset
|
45 |
325 | 46 (defvar Info-history nil |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
47 "Stack of Info nodes user has visited. |
64071
5a1b36dec43a
(Info-history, Info-history-forward, Info-history-list,
Juanma Barranquero <lekktu@gmail.com>
parents:
64013
diff
changeset
|
48 Each element of the stack is a list (FILENAME NODENAME BUFFERPOS).") |
325 | 49 |
59472
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
50 (defvar Info-history-forward nil |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
51 "Stack of Info nodes user has visited with `Info-history-back' command. |
64071
5a1b36dec43a
(Info-history, Info-history-forward, Info-history-list,
Juanma Barranquero <lekktu@gmail.com>
parents:
64013
diff
changeset
|
52 Each element of the stack is a list (FILENAME NODENAME BUFFERPOS).") |
59472
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
53 |
54754 | 54 (defvar Info-history-list nil |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
55 "List of all Info nodes user has visited. |
64071
5a1b36dec43a
(Info-history, Info-history-forward, Info-history-list,
Juanma Barranquero <lekktu@gmail.com>
parents:
64013
diff
changeset
|
56 Each element of the list is a list (FILENAME NODENAME).") |
54754 | 57 |
17430
de68258fef5f
Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
17154
diff
changeset
|
58 (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
|
59 "*Non-nil means the \\<Info-mode-map>\\[Info-edit] command in Info can edit the current node. |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
60 This is convenient if you want to write Info files by hand. |
680
f99c8512cd41
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
660
diff
changeset
|
61 However, we recommend that you not do this. |
f99c8512cd41
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
660
diff
changeset
|
62 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
|
63 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
|
64 :type 'boolean |
de68258fef5f
Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
17154
diff
changeset
|
65 :group 'info) |
325 | 66 |
15177
4935ada40f67
(Info-enable-active-nodes): Default to nil. Mark it risky.
Richard M. Stallman <rms@gnu.org>
parents:
15126
diff
changeset
|
67 (defvar Info-enable-active-nodes nil |
325 | 68 "Non-nil allows Info to execute Lisp code associated with nodes. |
69 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
|
70 (put 'Info-enable-active-nodes 'risky-local-variable t) |
325 | 71 |
19043
a2853a75ce57
(info-node, info-xref, info-menu-5):
Richard M. Stallman <rms@gnu.org>
parents:
17968
diff
changeset
|
72 (defface info-node |
55061
966081800217
(info-node, info-menu-5, info-xref, info-header-node)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55057
diff
changeset
|
73 '((((class color) (background light)) :foreground "brown" :weight bold :slant italic) |
966081800217
(info-node, info-menu-5, info-xref, info-header-node)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55057
diff
changeset
|
74 (((class color) (background dark)) :foreground "white" :weight bold :slant italic) |
966081800217
(info-node, info-menu-5, info-xref, info-header-node)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55057
diff
changeset
|
75 (t :weight bold :slant italic)) |
19043
a2853a75ce57
(info-node, info-xref, info-menu-5):
Richard M. Stallman <rms@gnu.org>
parents:
17968
diff
changeset
|
76 "Face for Info node names." |
a2853a75ce57
(info-node, info-xref, info-menu-5):
Richard M. Stallman <rms@gnu.org>
parents:
17968
diff
changeset
|
77 :group 'info) |
a2853a75ce57
(info-node, info-xref, info-menu-5):
Richard M. Stallman <rms@gnu.org>
parents:
17968
diff
changeset
|
78 |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
79 (defface info-title-1 |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
80 '((((type tty pc) (class color) (background light)) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
81 :foreground "green" :weight bold) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
82 (((type tty pc) (class color) (background dark)) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
83 :foreground "yellow" :weight bold) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
84 (t :height 1.2 :inherit info-title-2)) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
85 "Face for info titles at level 1." |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
86 :group 'info) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
87 ;; backward-compatibility alias |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
88 (put 'Info-title-1-face 'face-alias 'info-title-1) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
89 |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
90 (defface info-title-2 |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
91 '((((type tty pc) (class color)) :foreground "lightblue" :weight bold) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
92 (t :height 1.2 :inherit info-title-3)) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
93 "Face for info titles at level 2." |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
94 :group 'info) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
95 ;; backward-compatibility alias |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
96 (put 'Info-title-2-face 'face-alias 'info-title-2) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
97 |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
98 (defface info-title-3 |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
99 '((((type tty pc) (class color)) :weight bold) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
100 (t :height 1.2 :inherit info-title-4)) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
101 "Face for info titles at level 3." |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
102 :group 'info) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
103 ;; backward-compatibility alias |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
104 (put 'Info-title-3-face 'face-alias 'info-title-3) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
105 |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
106 (defface info-title-4 |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
107 '((((type tty pc) (class color)) :weight bold) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
108 (t :weight bold :inherit variable-pitch)) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
109 "Face for info titles at level 4." |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
110 :group 'info) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
111 ;; backward-compatibility alias |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
112 (put 'Info-title-4-face 'face-alias 'info-title-4) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
113 |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
114 (defface info-menu-header |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
115 '((((type tty pc)) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
116 :underline t |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
117 :weight bold) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
118 (t |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
119 :inherit variable-pitch |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
120 :weight bold)) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
121 "Face for headers in Info menus." |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
122 :group 'info) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
123 |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
124 (defface info-menu-star |
55061
966081800217
(info-node, info-menu-5, info-xref, info-header-node)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55057
diff
changeset
|
125 '((((class color)) :foreground "red1") |
966081800217
(info-node, info-menu-5, info-xref, info-header-node)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55057
diff
changeset
|
126 (t :underline t)) |
46029
65fc39bc254a
(info-menu-5): Fix documentation.
Juanma Barranquero <lekktu@gmail.com>
parents:
45784
diff
changeset
|
127 "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
|
128 :group 'info) |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
129 (put 'info-menu-5 'face-alias 'info-menu-star) |
19043
a2853a75ce57
(info-node, info-xref, info-menu-5):
Richard M. Stallman <rms@gnu.org>
parents:
17968
diff
changeset
|
130 |
a2853a75ce57
(info-node, info-xref, info-menu-5):
Richard M. Stallman <rms@gnu.org>
parents:
17968
diff
changeset
|
131 (defface info-xref |
63503
512a76e42d3f
(Info-hide-cookies-node): Fix spelling in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
63208
diff
changeset
|
132 '((((min-colors 88) |
61394
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
61363
diff
changeset
|
133 (class color) (background light)) :foreground "blue1" :underline t) |
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
61363
diff
changeset
|
134 (((class color) (background light)) :foreground "blue" :underline t) |
63503
512a76e42d3f
(Info-hide-cookies-node): Fix spelling in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
63208
diff
changeset
|
135 (((min-colors 88) |
61394
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
61363
diff
changeset
|
136 (class color) (background dark)) :foreground "cyan1" :underline t) |
57468
478f1e91eac3
(info-xref): Add underlining.
Richard M. Stallman <rms@gnu.org>
parents:
57329
diff
changeset
|
137 (((class color) (background dark)) :foreground "cyan" :underline t) |
55061
966081800217
(info-node, info-menu-5, info-xref, info-header-node)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55057
diff
changeset
|
138 (t :underline t)) |
19043
a2853a75ce57
(info-node, info-xref, info-menu-5):
Richard M. Stallman <rms@gnu.org>
parents:
17968
diff
changeset
|
139 "Face for Info cross-references." |
a2853a75ce57
(info-node, info-xref, info-menu-5):
Richard M. Stallman <rms@gnu.org>
parents:
17968
diff
changeset
|
140 :group 'info) |
a2853a75ce57
(info-node, info-xref, info-menu-5):
Richard M. Stallman <rms@gnu.org>
parents:
17968
diff
changeset
|
141 |
54754 | 142 (defface info-xref-visited |
58936
92b24762a33f
(info-xref-visited): Use `default' instead of t.
Richard M. Stallman <rms@gnu.org>
parents:
58604
diff
changeset
|
143 '((default :inherit info-xref) |
55061
966081800217
(info-node, info-menu-5, info-xref, info-header-node)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55057
diff
changeset
|
144 (((class color) (background light)) :foreground "magenta4") |
64501
eba73e4b7ea6
(info-xref-visited): Use light foreground color `violet'
Juri Linkov <juri@jurta.org>
parents:
64091
diff
changeset
|
145 (((class color) (background dark)) :foreground "violet")) |
54754 | 146 "Face for visited Info cross-references." |
147 :group 'info) | |
148 | |
149 (defcustom Info-fontify-visited-nodes t | |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
150 "*Non-nil to fontify references to visited nodes in `info-xref-visited' face." |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59472
diff
changeset
|
151 :version "22.1" |
54754 | 152 :type 'boolean |
153 :group 'info) | |
154 | |
28168
e1acd68998c8
(Info-fontify-maximum-menu-size): Increase to 100000.
Gerd Moellmann <gerd@gnu.org>
parents:
27536
diff
changeset
|
155 (defcustom Info-fontify-maximum-menu-size 100000 |
46029
65fc39bc254a
(info-menu-5): Fix documentation.
Juanma Barranquero <lekktu@gmail.com>
parents:
45784
diff
changeset
|
156 "*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
|
157 :type 'integer |
de68258fef5f
Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
17154
diff
changeset
|
158 :group 'info) |
8480
7f28030d9529
(Info-additional-directory-list): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8461
diff
changeset
|
159 |
31660 | 160 (defcustom Info-use-header-line t |
46326
6953d46b05f5
(info-emacs-manual): New function.
Richard M. Stallman <rms@gnu.org>
parents:
46252
diff
changeset
|
161 "*Non-nil means to put the beginning-of-node links in an Emacs header-line. |
31660 | 162 A header-line does not scroll with the rest of the buffer." |
163 :type 'boolean | |
164 :group 'info) | |
165 | |
166 (defface info-header-xref | |
55061
966081800217
(info-node, info-menu-5, info-xref, info-header-node)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55057
diff
changeset
|
167 '((t :inherit info-xref)) |
31660 | 168 "Face for Info cross-references in a node header." |
169 :group 'info) | |
170 | |
171 (defface info-header-node | |
55061
966081800217
(info-node, info-menu-5, info-xref, info-header-node)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55057
diff
changeset
|
172 '((t :inherit info-node)) |
31660 | 173 "Face for Info nodes in a node header." |
174 :group 'info) | |
175 | |
25145
784d7bc2a991
(info-initialize): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24963
diff
changeset
|
176 (defvar Info-directory-list nil |
325 | 177 "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
|
178 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
|
179 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
|
180 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
|
181 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
|
182 |
928516355e95
(Info-directory-list): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
30763
diff
changeset
|
183 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
|
184 `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
|
185 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
|
186 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
|
187 |
9283cc675c49
(Info-directory-list): Change doc string to reflect the
Eli Zaretskii <eliz@gnu.org>
parents:
34503
diff
changeset
|
188 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
|
189 `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
|
190 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
|
191 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
|
192 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
|
193 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
|
194 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
|
195 removing the standard installation. |
9283cc675c49
(Info-directory-list): Change doc string to reflect the
Eli Zaretskii <eliz@gnu.org>
parents:
34503
diff
changeset
|
196 |
9283cc675c49
(Info-directory-list): Change doc string to reflect the
Eli Zaretskii <eliz@gnu.org>
parents:
34503
diff
changeset
|
197 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
|
198 `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
|
199 |
c88361c3b940
(Info-directory-list): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
8369
diff
changeset
|
200 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
|
201 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
|
202 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
|
203 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
|
204 a version of Emacs without installing it.") |
325 | 205 |
17430
de68258fef5f
Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
17154
diff
changeset
|
206 (defcustom Info-additional-directory-list nil |
8480
7f28030d9529
(Info-additional-directory-list): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8461
diff
changeset
|
207 "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
|
208 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
|
209 :type '(repeat directory) |
de68258fef5f
Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
17154
diff
changeset
|
210 :group 'info) |
8480
7f28030d9529
(Info-additional-directory-list): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8461
diff
changeset
|
211 |
51709
02d430615dd4
(Info-fontify-menu-headers): Only fontify `* Menu:' at the beginning
Luc Teirlinck <teirllm@auburn.edu>
parents:
51623
diff
changeset
|
212 (defcustom Info-scroll-prefer-subnodes nil |
34182
3f2ee9f3d8bf
(Info-scroll-prefer-subnodes): New defcustom.
Eli Zaretskii <eliz@gnu.org>
parents:
33621
diff
changeset
|
213 "*If non-nil, \\<Info-mode-map>\\[Info-scroll-up] in a menu visits subnodes. |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
214 |
34182
3f2ee9f3d8bf
(Info-scroll-prefer-subnodes): New defcustom.
Eli Zaretskii <eliz@gnu.org>
parents:
33621
diff
changeset
|
215 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
|
216 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
|
217 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
|
218 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
|
219 |
3f2ee9f3d8bf
(Info-scroll-prefer-subnodes): New defcustom.
Eli Zaretskii <eliz@gnu.org>
parents:
33621
diff
changeset
|
220 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
|
221 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
|
222 when you hit the end of the current node." |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59472
diff
changeset
|
223 :version "22.1" |
34182
3f2ee9f3d8bf
(Info-scroll-prefer-subnodes): New defcustom.
Eli Zaretskii <eliz@gnu.org>
parents:
33621
diff
changeset
|
224 :type 'boolean |
3f2ee9f3d8bf
(Info-scroll-prefer-subnodes): New defcustom.
Eli Zaretskii <eliz@gnu.org>
parents:
33621
diff
changeset
|
225 :group 'info) |
3f2ee9f3d8bf
(Info-scroll-prefer-subnodes): New defcustom.
Eli Zaretskii <eliz@gnu.org>
parents:
33621
diff
changeset
|
226 |
48107
c0a7fff00ce5
(Info-hide-note-references): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
48103
diff
changeset
|
227 (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
|
228 "*If non-nil, hide the tag and section reference in *note and * menu items. |
54754 | 229 If value is non-nil but not `hide', also replaces the \"*note\" with \"see\". |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
230 If value is non-nil but not t or `hide', the reference section is still shown. |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
231 `nil' completely disables this feature." |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59472
diff
changeset
|
232 :version "22.1" |
54754 | 233 :type '(choice (const :tag "No hiding" nil) |
50004
14d6d1ad4a06
(Info-fontify-node): Don't hide indentation before the
Andreas Schwab <schwab@suse.de>
parents:
49879
diff
changeset
|
234 (const :tag "Replace tag and hide reference" t) |
54754 | 235 (const :tag "Hide tag and reference" hide) |
236 (other :tag "Only replace tag" tag)) | |
48107
c0a7fff00ce5
(Info-hide-note-references): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
48103
diff
changeset
|
237 :group 'info) |
c0a7fff00ce5
(Info-hide-note-references): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
48103
diff
changeset
|
238 |
51731 | 239 (defcustom Info-refill-paragraphs nil |
240 "*If non-nil, attempt to refill paragraphs with hidden references. | |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
241 This refilling may accidentally remove explicit line breaks in the Info |
51731 | 242 file, so be prepared for a few surprises if you enable this feature." |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59472
diff
changeset
|
243 :version "22.1" |
51731 | 244 :type 'boolean |
245 :group 'info) | |
246 | |
58604
a227196e4498
(Info-search-whitespace-regexp): Remove shy group.
Juri Linkov <juri@jurta.org>
parents:
58350
diff
changeset
|
247 (defcustom Info-search-whitespace-regexp "\\s-+" |
54754 | 248 "*If non-nil, regular expression to match a sequence of whitespace chars. |
249 This applies to Info search for regular expressions. | |
250 You might want to use something like \"[ \\t\\r\\n]+\" instead. | |
251 In the Customization buffer, that is `[' followed by a space, | |
252 a tab, a carriage return (control-M), a newline, and `]+'." | |
253 :type 'regexp | |
254 :group 'info) | |
255 | |
60222
56061feffaa0
(Info-isearch-search): New defcustom.
Juri Linkov <juri@jurta.org>
parents:
59996
diff
changeset
|
256 (defcustom Info-isearch-search t |
60626
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
257 "*If non-nil, isearch in Info searches through multiple nodes. |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
258 Before leaving the initial Info node, where isearch was started, |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
259 it fails once with the error message [initial node], and with |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
260 subsequent C-s/C-r continues through other nodes without failing |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
261 with this error message in other nodes. When isearch fails for |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
262 the rest of the manual, it wraps aroung the whole manual and |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
263 restarts the search from the top/final node depending on |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
264 search direction. |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
265 |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
266 Setting this option to nil restores the default isearch behavior |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
267 with wrapping around the current Info node." |
60222
56061feffaa0
(Info-isearch-search): New defcustom.
Juri Linkov <juri@jurta.org>
parents:
59996
diff
changeset
|
268 :version "22.1" |
56061feffaa0
(Info-isearch-search): New defcustom.
Juri Linkov <juri@jurta.org>
parents:
59996
diff
changeset
|
269 :type 'boolean |
56061feffaa0
(Info-isearch-search): New defcustom.
Juri Linkov <juri@jurta.org>
parents:
59996
diff
changeset
|
270 :group 'info) |
56061feffaa0
(Info-isearch-search): New defcustom.
Juri Linkov <juri@jurta.org>
parents:
59996
diff
changeset
|
271 |
60615
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
272 (defvar Info-isearch-initial-node nil) |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
273 |
51434
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
274 (defcustom Info-mode-hook |
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
275 ;; 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
|
276 (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
|
277 '(turn-on-font-lock)) |
54754 | 278 "Hooks run when `Info-mode' is called." |
45458 | 279 :type 'hook |
280 :group 'info) | |
281 | |
54754 | 282 (defcustom Info-selection-hook nil |
283 "Hooks run when `Info-select-node' is called." | |
284 :type 'hook | |
285 :group 'info) | |
286 | |
287 (defvar Info-edit-mode-hook nil | |
288 "Hooks run when `Info-edit-mode' is called.") | |
289 | |
325 | 290 (defvar Info-current-file nil |
12646
cd83cf47be08
(Info-current-file): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
12433
diff
changeset
|
291 "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
|
292 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
|
293 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
|
294 Can also be t when using `Info-on-current-buffer'.") |
325 | 295 |
296 (defvar Info-current-subfile nil | |
29621 | 297 "Info subfile that is actually in the *info* buffer now. |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
298 nil if current Info file is not split into subfiles.") |
325 | 299 |
300 (defvar Info-current-node nil | |
301 "Name of node that Info is now looking at, or nil.") | |
302 | |
16981
643e0f90e153
Handle multiple Info buffers.
Richard M. Stallman <rms@gnu.org>
parents:
16790
diff
changeset
|
303 (defvar Info-tag-table-marker nil |
325 | 304 "Marker pointing at beginning of current Info file's tag table. |
305 Marker points nowhere if file has no tag table.") | |
306 | |
16981
643e0f90e153
Handle multiple Info buffers.
Richard M. Stallman <rms@gnu.org>
parents:
16790
diff
changeset
|
307 (defvar Info-tag-table-buffer nil |
643e0f90e153
Handle multiple Info buffers.
Richard M. Stallman <rms@gnu.org>
parents:
16790
diff
changeset
|
308 "Buffer used for indirect tag tables.") |
643e0f90e153
Handle multiple Info buffers.
Richard M. Stallman <rms@gnu.org>
parents:
16790
diff
changeset
|
309 |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
310 (defvar Info-current-file-completions nil |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
311 "Cached completion list for current Info file.") |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
312 |
66602
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
313 (defvar Info-file-supports-index-cookies nil |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
314 "Non-nil if current Info file supports index cookies.") |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
315 |
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
|
316 (defvar Info-index-alternatives nil |
29621 | 317 "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
|
318 |
55174
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
319 (defvar Info-point-loc nil |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
320 "Point location within a selected node. |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
321 If string, the point is moved to the proper occurrence of the |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
322 name of the followed cross reference within a selected node. |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
323 If number, the point is moved to the corresponding line.") |
54754 | 324 |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
325 (defvar Info-standalone nil |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
326 "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
|
327 |
12927
d3cda9e7c55f
(Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents:
12892
diff
changeset
|
328 (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
|
329 ;; 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
|
330 ;; 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
|
331 (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
|
332 '( (".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
|
333 (".z" . "gunzip") |
34503
00d3d092888c
(Info-suffix-list): Change format for a command that
Kenichi Handa <handa@m17n.org>
parents:
34468
diff
changeset
|
334 (".bz2" . ("bzip2" "-dc")) |
19937
f497e74a29aa
(Info-suffix-list): Add suffixes for MS-DOS version
Richard M. Stallman <rms@gnu.org>
parents:
19821
diff
changeset
|
335 (".inz" . "gunzip") |
f497e74a29aa
(Info-suffix-list): Add suffixes for MS-DOS version
Richard M. Stallman <rms@gnu.org>
parents:
19821
diff
changeset
|
336 (".igz" . "gunzip") |
f497e74a29aa
(Info-suffix-list): Add suffixes for MS-DOS version
Richard M. Stallman <rms@gnu.org>
parents:
19821
diff
changeset
|
337 (".info.Z" . "gunzip") |
f497e74a29aa
(Info-suffix-list): Add suffixes for MS-DOS version
Richard M. Stallman <rms@gnu.org>
parents:
19821
diff
changeset
|
338 (".info.gz" . "gunzip") |
f497e74a29aa
(Info-suffix-list): Add suffixes for MS-DOS version
Richard M. Stallman <rms@gnu.org>
parents:
19821
diff
changeset
|
339 ("-info.Z" . "gunzip") |
f497e74a29aa
(Info-suffix-list): Add suffixes for MS-DOS version
Richard M. Stallman <rms@gnu.org>
parents:
19821
diff
changeset
|
340 ("-info.gz" . "gunzip") |
f497e74a29aa
(Info-suffix-list): Add suffixes for MS-DOS version
Richard M. Stallman <rms@gnu.org>
parents:
19821
diff
changeset
|
341 ("/index.gz". "gunzip") |
f497e74a29aa
(Info-suffix-list): Add suffixes for MS-DOS version
Richard M. Stallman <rms@gnu.org>
parents:
19821
diff
changeset
|
342 ("/index.z" . "gunzip") |
13004
0ed37da6f0f3
(Info-suffix-list): Add .inf to MSDOS list.
Richard M. Stallman <rms@gnu.org>
parents:
12947
diff
changeset
|
343 (".inf" . nil) |
19937
f497e74a29aa
(Info-suffix-list): Add suffixes for MS-DOS version
Richard M. Stallman <rms@gnu.org>
parents:
19821
diff
changeset
|
344 (".info" . nil) |
f497e74a29aa
(Info-suffix-list): Add suffixes for MS-DOS version
Richard M. Stallman <rms@gnu.org>
parents:
19821
diff
changeset
|
345 ("-info" . nil) |
f497e74a29aa
(Info-suffix-list): Add suffixes for MS-DOS version
Richard M. Stallman <rms@gnu.org>
parents:
19821
diff
changeset
|
346 ("/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
|
347 ("" . nil)) |
17941
2465a6a42a60
(Info-suffix-list): Accept -info as suffix;
Richard M. Stallman <rms@gnu.org>
parents:
17859
diff
changeset
|
348 '( (".info.Z". "uncompress") |
2465a6a42a60
(Info-suffix-list): Accept -info as suffix;
Richard M. Stallman <rms@gnu.org>
parents:
17859
diff
changeset
|
349 (".info.Y". "unyabba") |
2465a6a42a60
(Info-suffix-list): Accept -info as suffix;
Richard M. Stallman <rms@gnu.org>
parents:
17859
diff
changeset
|
350 (".info.gz". "gunzip") |
2465a6a42a60
(Info-suffix-list): Accept -info as suffix;
Richard M. Stallman <rms@gnu.org>
parents:
17859
diff
changeset
|
351 (".info.z". "gunzip") |
34503
00d3d092888c
(Info-suffix-list): Change format for a command that
Kenichi Handa <handa@m17n.org>
parents:
34468
diff
changeset
|
352 (".info.bz2" . ("bzip2" "-dc")) |
17941
2465a6a42a60
(Info-suffix-list): Accept -info as suffix;
Richard M. Stallman <rms@gnu.org>
parents:
17859
diff
changeset
|
353 (".info". nil) |
2465a6a42a60
(Info-suffix-list): Accept -info as suffix;
Richard M. Stallman <rms@gnu.org>
parents:
17859
diff
changeset
|
354 ("-info.Z". "uncompress") |
2465a6a42a60
(Info-suffix-list): Accept -info as suffix;
Richard M. Stallman <rms@gnu.org>
parents:
17859
diff
changeset
|
355 ("-info.Y". "unyabba") |
2465a6a42a60
(Info-suffix-list): Accept -info as suffix;
Richard M. Stallman <rms@gnu.org>
parents:
17859
diff
changeset
|
356 ("-info.gz". "gunzip") |
34503
00d3d092888c
(Info-suffix-list): Change format for a command that
Kenichi Handa <handa@m17n.org>
parents:
34468
diff
changeset
|
357 ("-info.bz2" . ("bzip2" "-dc")) |
17941
2465a6a42a60
(Info-suffix-list): Accept -info as suffix;
Richard M. Stallman <rms@gnu.org>
parents:
17859
diff
changeset
|
358 ("-info.z". "gunzip") |
2465a6a42a60
(Info-suffix-list): Accept -info as suffix;
Richard M. Stallman <rms@gnu.org>
parents:
17859
diff
changeset
|
359 ("-info". nil) |
2465a6a42a60
(Info-suffix-list): Accept -info as suffix;
Richard M. Stallman <rms@gnu.org>
parents:
17859
diff
changeset
|
360 ("/index.Z". "uncompress") |
2465a6a42a60
(Info-suffix-list): Accept -info as suffix;
Richard M. Stallman <rms@gnu.org>
parents:
17859
diff
changeset
|
361 ("/index.Y". "unyabba") |
2465a6a42a60
(Info-suffix-list): Accept -info as suffix;
Richard M. Stallman <rms@gnu.org>
parents:
17859
diff
changeset
|
362 ("/index.gz". "gunzip") |
2465a6a42a60
(Info-suffix-list): Accept -info as suffix;
Richard M. Stallman <rms@gnu.org>
parents:
17859
diff
changeset
|
363 ("/index.z". "gunzip") |
34503
00d3d092888c
(Info-suffix-list): Change format for a command that
Kenichi Handa <handa@m17n.org>
parents:
34468
diff
changeset
|
364 ("/index.bz2". ("bzip2" "-dc")) |
17941
2465a6a42a60
(Info-suffix-list): Accept -info as suffix;
Richard M. Stallman <rms@gnu.org>
parents:
17859
diff
changeset
|
365 ("/index". nil) |
2465a6a42a60
(Info-suffix-list): Accept -info as suffix;
Richard M. Stallman <rms@gnu.org>
parents:
17859
diff
changeset
|
366 (".Z". "uncompress") |
2465a6a42a60
(Info-suffix-list): Accept -info as suffix;
Richard M. Stallman <rms@gnu.org>
parents:
17859
diff
changeset
|
367 (".Y". "unyabba") |
2465a6a42a60
(Info-suffix-list): Accept -info as suffix;
Richard M. Stallman <rms@gnu.org>
parents:
17859
diff
changeset
|
368 (".gz". "gunzip") |
2465a6a42a60
(Info-suffix-list): Accept -info as suffix;
Richard M. Stallman <rms@gnu.org>
parents:
17859
diff
changeset
|
369 (".z". "gunzip") |
34503
00d3d092888c
(Info-suffix-list): Change format for a command that
Kenichi Handa <handa@m17n.org>
parents:
34468
diff
changeset
|
370 (".bz2" . ("bzip2" "-dc")) |
17941
2465a6a42a60
(Info-suffix-list): Accept -info as suffix;
Richard M. Stallman <rms@gnu.org>
parents:
17859
diff
changeset
|
371 ("". 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
|
372 "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
|
373 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
|
374 the command as standard input. |
00d3d092888c
(Info-suffix-list): Change format for a command that
Kenichi Handa <handa@m17n.org>
parents:
34468
diff
changeset
|
375 |
00d3d092888c
(Info-suffix-list): Change format for a command that
Kenichi Handa <handa@m17n.org>
parents:
34468
diff
changeset
|
376 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
|
377 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
|
378 |
00d3d092888c
(Info-suffix-list): Change format for a command that
Kenichi Handa <handa@m17n.org>
parents:
34468
diff
changeset
|
379 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
|
380 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
|
381 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
|
382 |
13562
80870ef96f18
(info-insert-file-contents-1): Various rewrites.
Richard M. Stallman <rms@gnu.org>
parents:
13287
diff
changeset
|
383 ;; 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
|
384 ;; 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
|
385 ;; 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
|
386 (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
|
387 (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
|
388 (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
|
389 (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
|
390 ;; 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
|
391 (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
|
392 ext-left) |
13004
0ed37da6f0f3
(Info-suffix-list): Add .inf to MSDOS list.
Richard M. Stallman <rms@gnu.org>
parents:
12947
diff
changeset
|
393 ;; 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
|
394 ;; 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
|
395 (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
|
396 (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
|
397 (= (length suffix) 0) |
13004
0ed37da6f0f3
(Info-suffix-list): Add .inf to MSDOS list.
Richard M. Stallman <rms@gnu.org>
parents:
12947
diff
changeset
|
398 (setq suffix (substring suffix 1))) |
13562
80870ef96f18
(info-insert-file-contents-1): Various rewrites.
Richard M. Stallman <rms@gnu.org>
parents:
13287
diff
changeset
|
399 ;; 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
|
400 (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
|
401 ;; 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
|
402 (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
|
403 (- 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
|
404 suffix)))) |
d3cda9e7c55f
(Info-suffix-list): For MS-DOS, use gunzip as the only uncompressor,
Richard M. Stallman <rms@gnu.org>
parents:
12892
diff
changeset
|
405 |
22067
5665490a6f9e
(Info-find-node): Use info-file-exists-p
Richard M. Stallman <rms@gnu.org>
parents:
21910
diff
changeset
|
406 (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
|
407 (and (file-exists-p filename) |
5665490a6f9e
(Info-find-node): Use info-file-exists-p
Richard M. Stallman <rms@gnu.org>
parents:
21910
diff
changeset
|
408 (not (file-directory-p filename)))) |
5665490a6f9e
(Info-find-node): Use info-file-exists-p
Richard M. Stallman <rms@gnu.org>
parents:
21910
diff
changeset
|
409 |
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
|
410 (defun info-insert-file-contents (filename &optional visit) |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
411 "Insert the contents of an Info file in the current 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
|
412 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
|
413 (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
|
414 (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
|
415 (msdos-long-file-names) |
c057b532bd92
(info-insert-file-contents) [!MSDOS]: Avoid byte-compiler warning.
Kim F. Storm <storm@cua.dk>
parents:
49465
diff
changeset
|
416 t)) |
36452
b42d9cfd5c8f
(info-insert-file-contents-1): Accept an additional
Eli Zaretskii <eliz@gnu.org>
parents:
36092
diff
changeset
|
417 (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
|
418 lfn)) |
b42d9cfd5c8f
(info-insert-file-contents-1): Accept an additional
Eli Zaretskii <eliz@gnu.org>
parents:
36092
diff
changeset
|
419 fullname decoder done) |
38679
341786a2d705
(info-insert-file-contents): Use info-file-exists-p
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
420 (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
|
421 ;; 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
|
422 ;; If so, set DECODE accordingly. |
6566
248eede22658
(Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents:
6537
diff
changeset
|
423 (progn |
248eede22658
(Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents:
6537
diff
changeset
|
424 (while (and tail |
248eede22658
(Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents:
6537
diff
changeset
|
425 (not (string-match |
248eede22658
(Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents:
6537
diff
changeset
|
426 (concat (regexp-quote (car (car tail))) "$") |
248eede22658
(Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents:
6537
diff
changeset
|
427 filename))) |
248eede22658
(Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents:
6537
diff
changeset
|
428 (setq tail (cdr tail))) |
248eede22658
(Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents:
6537
diff
changeset
|
429 (setq fullname filename |
248eede22658
(Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents:
6537
diff
changeset
|
430 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
|
431 ;; 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
|
432 (while (and tail (not done)) |
b42d9cfd5c8f
(info-insert-file-contents-1): Accept an additional
Eli Zaretskii <eliz@gnu.org>
parents:
36092
diff
changeset
|
433 (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
|
434 (car (car tail)) lfn)) |
b42d9cfd5c8f
(info-insert-file-contents-1): Accept an additional
Eli Zaretskii <eliz@gnu.org>
parents:
36092
diff
changeset
|
435 (if (info-file-exists-p fullname) |
b42d9cfd5c8f
(info-insert-file-contents-1): Accept an additional
Eli Zaretskii <eliz@gnu.org>
parents:
36092
diff
changeset
|
436 (setq done t |
b42d9cfd5c8f
(info-insert-file-contents-1): Accept an additional
Eli Zaretskii <eliz@gnu.org>
parents:
36092
diff
changeset
|
437 ;; 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
|
438 ;; according to the suffix. |
b42d9cfd5c8f
(info-insert-file-contents-1): Accept an additional
Eli Zaretskii <eliz@gnu.org>
parents:
36092
diff
changeset
|
439 decoder (cdr (car tail))) |
b42d9cfd5c8f
(info-insert-file-contents-1): Accept an additional
Eli Zaretskii <eliz@gnu.org>
parents:
36092
diff
changeset
|
440 ;; 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
|
441 ;; 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
|
442 (when check-short |
b42d9cfd5c8f
(info-insert-file-contents-1): Accept an additional
Eli Zaretskii <eliz@gnu.org>
parents:
36092
diff
changeset
|
443 (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
|
444 (car (car tail)) nil)) |
b42d9cfd5c8f
(info-insert-file-contents-1): Accept an additional
Eli Zaretskii <eliz@gnu.org>
parents:
36092
diff
changeset
|
445 (if (info-file-exists-p fullname) |
b42d9cfd5c8f
(info-insert-file-contents-1): Accept an additional
Eli Zaretskii <eliz@gnu.org>
parents:
36092
diff
changeset
|
446 (setq done t |
b42d9cfd5c8f
(info-insert-file-contents-1): Accept an additional
Eli Zaretskii <eliz@gnu.org>
parents:
36092
diff
changeset
|
447 decoder (cdr (car tail)))))) |
6566
248eede22658
(Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents:
6537
diff
changeset
|
448 (setq tail (cdr tail))) |
248eede22658
(Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents:
6537
diff
changeset
|
449 (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
|
450 (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
|
451 ;; 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
|
452 (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
|
453 (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
|
454 (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
|
455 (setq decoder nil)) |
6566
248eede22658
(Info-suffix-list): Put empty string last.
Karl Heuer <kwzh@gnu.org>
parents:
6537
diff
changeset
|
456 (if decoder |
19937
f497e74a29aa
(Info-suffix-list): Add suffixes for MS-DOS version
Richard M. Stallman <rms@gnu.org>
parents:
19821
diff
changeset
|
457 (progn |
f497e74a29aa
(Info-suffix-list): Add suffixes for MS-DOS version
Richard M. Stallman <rms@gnu.org>
parents:
19821
diff
changeset
|
458 (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
|
459 (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
|
460 (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
|
461 (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
|
462 default-directory))) |
34503
00d3d092888c
(Info-suffix-list): Change format for a command that
Kenichi Handa <handa@m17n.org>
parents:
34468
diff
changeset
|
463 (or (consp decoder) |
00d3d092888c
(Info-suffix-list): Change format for a command that
Kenichi Handa <handa@m17n.org>
parents:
34468
diff
changeset
|
464 (setq decoder (list decoder))) |
00d3d092888c
(Info-suffix-list): Change format for a command that
Kenichi Handa <handa@m17n.org>
parents:
34468
diff
changeset
|
465 (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
|
466 (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
|
467 (insert-file-contents fullname visit)))) |
25145
784d7bc2a991
(info-initialize): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24963
diff
changeset
|
468 |
50660
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
469 (defun Info-default-dirs () |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
470 (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
|
471 (sibling (if installation-directory |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
472 (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
|
473 (if invocation-directory |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
474 (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
|
475 "../info/" |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
476 invocation-directory))) |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
477 (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
|
478 infodir |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
479 (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
|
480 "../../../info/" |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
481 invocation-directory)) |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
482 (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
|
483 infodir)))))) |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
484 alternative) |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
485 (setq alternative |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
486 (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
|
487 ;; Uninstalled, Emacs builddir != srcdir. |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
488 sibling |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
489 ;; Uninstalled, builddir == srcdir |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
490 source)) |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
491 (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
|
492 ;; 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
|
493 ;; 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
|
494 (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
|
495 nil |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
496 ;; 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
|
497 ;; 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
|
498 (not (string= exec-directory |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
499 (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
|
500 installation-directory)))) |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
501 (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
|
502 Info-default-directory-list |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
503 ;; `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
|
504 ;; 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
|
505 ;; 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
|
506 (cons alternative |
54435
bcc27a58f6ac
(Info-default-dirs): Don't ignore last part of I-d-d-l.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53409
diff
changeset
|
507 ;; Don't drop the last part, it might contain non-Emacs stuff. |
bcc27a58f6ac
(Info-default-dirs): Don't ignore last part of I-d-d-l.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53409
diff
changeset
|
508 ;; (reverse (cdr (reverse |
bcc27a58f6ac
(Info-default-dirs): Don't ignore last part of I-d-d-l.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53409
diff
changeset
|
509 Info-default-directory-list)))) ;; ))) |
50660
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
510 |
25145
784d7bc2a991
(info-initialize): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24963
diff
changeset
|
511 (defun info-initialize () |
29621 | 512 "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
|
513 (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
|
514 (let ((path (getenv "INFOPATH"))) |
25145
784d7bc2a991
(info-initialize): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24963
diff
changeset
|
515 (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
|
516 (prune-directory-list |
fd781aee7a03
(info-initialize): Use prune-directory-list to remove non-existant
Miles Bader <miles@gnu.org>
parents:
29684
diff
changeset
|
517 (if path |
50660
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
518 (if (string-match ":\\'" path) |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
519 (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
|
520 (regexp-quote path-separator)) |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
521 (Info-default-dirs)) |
4d6ac18fff69
(Info-default-dirs): New fun extracted from Info-initialize.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50454
diff
changeset
|
522 (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
|
523 (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
|
524 |
22471
39efe6bebb46
(info-other-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22331
diff
changeset
|
525 ;;;###autoload |
39efe6bebb46
(info-other-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22331
diff
changeset
|
526 (defun info-other-window (&optional file) |
39efe6bebb46
(info-other-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22331
diff
changeset
|
527 "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
|
528 (interactive (if current-prefix-arg |
39efe6bebb46
(info-other-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22331
diff
changeset
|
529 (list (read-file-name "Info file name: " nil nil t)))) |
55174
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
530 (let (same-window-buffer-names same-window-regexps) |
22471
39efe6bebb46
(info-other-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22331
diff
changeset
|
531 (info file))) |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28559
diff
changeset
|
532 |
55174
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
533 ;;;###autoload (add-hook 'same-window-regexps "\\*info\\*\\(\\|<[0-9]+>\\)") |
10957
6d3568e33019
(Info-menu): Bind beg with let.
Richard M. Stallman <rms@gnu.org>
parents:
10918
diff
changeset
|
534 |
57468
478f1e91eac3
(info-xref): Add underlining.
Richard M. Stallman <rms@gnu.org>
parents:
57329
diff
changeset
|
535 ;;;###autoload (put 'info 'info-file "emacs") |
10957
6d3568e33019
(Info-menu): Bind beg with let.
Richard M. Stallman <rms@gnu.org>
parents:
10918
diff
changeset
|
536 ;;;###autoload |
55174
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
537 (defun info (&optional file buffer) |
325 | 538 "Enter Info, the documentation browser. |
539 Optional argument FILE specifies the file to examine; | |
540 the default is the top-level directory of Info. | |
25311 | 541 Called from a program, FILE may specify an Info node of the form |
542 `(FILENAME)NODENAME'. | |
55174
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
543 Optional argument BUFFER specifies the Info buffer name; |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
544 the default buffer name is *info*. If BUFFER exists, |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
545 just switch to BUFFER. Otherwise, create a new buffer |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
546 with the top-level Info directory. |
325 | 547 |
55174
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
548 In interactive use, a non-numeric prefix argument directs |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
549 this command to read a file name from the minibuffer. |
56044
7aad97855e39
(Info-goto-node): Add autoload.
Juri Linkov <juri@jurta.org>
parents:
55797
diff
changeset
|
550 A numeric prefix argument selects an Info buffer with the prefix number |
7aad97855e39
(Info-goto-node): Add autoload.
Juri Linkov <juri@jurta.org>
parents:
55797
diff
changeset
|
551 appended to the Info buffer name. |
14529 | 552 |
553 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
|
554 The top-level Info directory is made by combining all the files named `dir' |
14529 | 555 in all the directories in that path." |
55174
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
556 (interactive (list |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
557 (if (and current-prefix-arg (not (numberp current-prefix-arg))) |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
558 (read-file-name "Info file name: " nil nil t)) |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
559 (if (numberp current-prefix-arg) |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
560 (format "*info*<%s>" current-prefix-arg)))) |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
561 (pop-to-buffer (or buffer "*info*")) |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
562 (if (and buffer (not (eq major-mode 'Info-mode))) |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
563 (Info-mode)) |
325 | 564 (if file |
54878
327d069f80bb
(info): Always jump to *info*.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54865
diff
changeset
|
565 ;; If argument already contains parentheses, don't add another set |
327d069f80bb
(info): Always jump to *info*.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54865
diff
changeset
|
566 ;; since the argument will then be parsed improperly. This also |
327d069f80bb
(info): Always jump to *info*.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54865
diff
changeset
|
567 ;; has the added benefit of allowing node names to be included |
327d069f80bb
(info): Always jump to *info*.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54865
diff
changeset
|
568 ;; following the parenthesized filename. |
62822
7f11f471aa34
(Info-goto-node): Revert autoload addition (2004-06-12).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62733
diff
changeset
|
569 (Info-goto-node |
7f11f471aa34
(Info-goto-node): Revert autoload addition (2004-06-12).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62733
diff
changeset
|
570 (if (and (stringp file) (string-match "(.*)" file)) |
7f11f471aa34
(Info-goto-node): Revert autoload addition (2004-06-12).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62733
diff
changeset
|
571 file |
7f11f471aa34
(Info-goto-node): Revert autoload addition (2004-06-12).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62733
diff
changeset
|
572 (concat "(" file ")"))) |
54878
327d069f80bb
(info): Always jump to *info*.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54865
diff
changeset
|
573 (if (zerop (buffer-size)) |
55074 | 574 (Info-directory)))) |
325 | 575 |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
576 ;;;###autoload |
46326
6953d46b05f5
(info-emacs-manual): New function.
Richard M. Stallman <rms@gnu.org>
parents:
46252
diff
changeset
|
577 (defun info-emacs-manual () |
47794
c460856d1bfd
(Info-next-menu-item, Info-last-menu-item)
John Paul Wallington <jpw@pobox.com>
parents:
47376
diff
changeset
|
578 "Display the Emacs manual in Info mode." |
46326
6953d46b05f5
(info-emacs-manual): New function.
Richard M. Stallman <rms@gnu.org>
parents:
46252
diff
changeset
|
579 (interactive) |
6953d46b05f5
(info-emacs-manual): New function.
Richard M. Stallman <rms@gnu.org>
parents:
46252
diff
changeset
|
580 (info "emacs")) |
6953d46b05f5
(info-emacs-manual): New function.
Richard M. Stallman <rms@gnu.org>
parents:
46252
diff
changeset
|
581 |
6953d46b05f5
(info-emacs-manual): New function.
Richard M. Stallman <rms@gnu.org>
parents:
46252
diff
changeset
|
582 ;;;###autoload |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
583 (defun info-standalone () |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
584 "Run Emacs as a standalone Info reader. |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
585 Usage: emacs -f info-standalone [filename] |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
586 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
|
587 (setq Info-standalone t) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
588 (if (and command-line-args-left |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
589 (not (string-match "^-" (car command-line-args-left)))) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
590 (condition-case err |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
591 (progn |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
592 (info (car command-line-args-left)) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
593 (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
|
594 (error (send-string-to-terminal |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
595 (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
|
596 (nth 1 err) err))) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
597 (save-buffers-kill-emacs))) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
598 (info))) |
25145
784d7bc2a991
(info-initialize): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24963
diff
changeset
|
599 |
31942
55dd93c0d728
(Info-extract-pointer):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31798
diff
changeset
|
600 ;; 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
|
601 ;; 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
|
602 ;; 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
|
603 ;; 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
|
604 ;; 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
|
605 |
950f2c278c9a
(Info-node-at-bob-matching): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
23904
diff
changeset
|
606 ;; 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
|
607 ;; 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
|
608 |
950f2c278c9a
(Info-node-at-bob-matching): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
23904
diff
changeset
|
609 ;; 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
|
610 ;; 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
|
611 (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
|
612 (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
|
613 (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
|
614 (let (beg) |
950f2c278c9a
(Info-node-at-bob-matching): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
23904
diff
changeset
|
615 (forward-line 1) |
950f2c278c9a
(Info-node-at-bob-matching): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
23904
diff
changeset
|
616 (setq beg (point)) |
29446
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
617 (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
|
618 (re-search-backward regexp beg t)))) |
950f2c278c9a
(Info-node-at-bob-matching): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
23904
diff
changeset
|
619 |
54754 | 620 (defun Info-find-file (filename &optional noerror) |
621 "Return expanded FILENAME, or t, if FILENAME is \"dir\". | |
622 Optional second argument NOERROR, if t, means if file is not found | |
623 just return nil (no error)." | |
325 | 624 ;; Convert filename to lower case if not found as specified. |
625 ;; Expand it. | |
26004
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25878
diff
changeset
|
626 (if (stringp filename) |
325 | 627 (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
|
628 (setq filename (substitute-in-file-name filename)) |
55074 | 629 (cond |
54718
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
630 ((string= (downcase filename) "dir") |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
631 (setq found t)) |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
632 ((string= filename "apropos") |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
633 (setq found 'apropos)) |
55074 | 634 ((string= filename "history") |
635 (setq found 'history)) | |
636 ((string= filename "toc") | |
637 (setq found 'toc)) | |
54718
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
638 (t |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
639 (let ((dirs (if (string-match "^\\./" filename) |
22692
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
640 ;; 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
|
641 ;; 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
|
642 '("./") |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
643 (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
|
644 ;; 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
|
645 ;; absolute file name |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
646 '(nil) |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
647 (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
|
648 (append Info-directory-list |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
649 Info-additional-directory-list) |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
650 Info-directory-list))))) |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
651 ;; 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
|
652 (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
|
653 (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
|
654 (setq temp-downcase |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
655 (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
|
656 ;; 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
|
657 (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
|
658 (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
|
659 (msdos-long-file-names) |
c057b532bd92
(info-insert-file-contents) [!MSDOS]: Avoid byte-compiler warning.
Kim F. Storm <storm@cua.dk>
parents:
49465
diff
changeset
|
660 t))) |
22692
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
661 (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
|
662 (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
|
663 (info-insert-file-contents-1 |
36452
b42d9cfd5c8f
(info-insert-file-contents-1): Accept an additional
Eli Zaretskii <eliz@gnu.org>
parents:
36092
diff
changeset
|
664 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
|
665 (setq found temp)) |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
666 ((info-file-exists-p |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
667 (info-insert-file-contents-1 |
36452
b42d9cfd5c8f
(info-insert-file-contents-1): Accept an additional
Eli Zaretskii <eliz@gnu.org>
parents:
36092
diff
changeset
|
668 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
|
669 (setq found temp-downcase)) |
b42d9cfd5c8f
(info-insert-file-contents-1): Accept an additional
Eli Zaretskii <eliz@gnu.org>
parents:
36092
diff
changeset
|
670 ((and (fboundp 'msdos-long-file-names) |
b42d9cfd5c8f
(info-insert-file-contents-1): Accept an additional
Eli Zaretskii <eliz@gnu.org>
parents:
36092
diff
changeset
|
671 lfn |
b42d9cfd5c8f
(info-insert-file-contents-1): Accept an additional
Eli Zaretskii <eliz@gnu.org>
parents:
36092
diff
changeset
|
672 (info-file-exists-p |
b42d9cfd5c8f
(info-insert-file-contents-1): Accept an additional
Eli Zaretskii <eliz@gnu.org>
parents:
36092
diff
changeset
|
673 (info-insert-file-contents-1 |
b42d9cfd5c8f
(info-insert-file-contents-1): Accept an additional
Eli Zaretskii <eliz@gnu.org>
parents:
36092
diff
changeset
|
674 temp (car (car suffix-list)) nil))) |
b42d9cfd5c8f
(info-insert-file-contents-1): Accept an additional
Eli Zaretskii <eliz@gnu.org>
parents:
36092
diff
changeset
|
675 (setq found temp))) |
22692
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
676 (setq suffix-list (cdr suffix-list)))) |
54718
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
677 (setq dirs (cdr dirs)))))) |
22692
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
678 (if found |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
679 (setq filename found) |
54754 | 680 (if noerror |
681 (setq filename nil) | |
682 (error "Info file %s does not exist" filename))) | |
683 filename))) | |
684 | |
685 (defun Info-find-node (filename nodename &optional no-going-back) | |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
686 "Go to an Info node specified as separate FILENAME and NODENAME. |
54754 | 687 NO-GOING-BACK is non-nil if recovering from an error in this function; |
688 it says do not attempt further (recursive) error recovery." | |
689 (info-initialize) | |
690 (setq filename (Info-find-file filename)) | |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
691 ;; Go into Info buffer. |
60626
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
692 (or (eq major-mode 'Info-mode) (pop-to-buffer "*info*")) |
22692
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
693 ;; 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
|
694 (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
|
695 (setq Info-history |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
696 (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
|
697 Info-history))) |
26004
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25878
diff
changeset
|
698 (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
|
699 |
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25878
diff
changeset
|
700 (defun Info-on-current-buffer (&optional nodename) |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
701 "Use the `Info-mode' to browse the current Info buffer. |
26004
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25878
diff
changeset
|
702 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
|
703 else defaults to \"Top\"." |
26004
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25878
diff
changeset
|
704 (interactive |
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25878
diff
changeset
|
705 (list (if current-prefix-arg |
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25878
diff
changeset
|
706 (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
|
707 nil t "Top")))) |
a7adbd38c82a
(Info-on-current-buffer): Default arg to "Top".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39382
diff
changeset
|
708 (unless nodename (setq nodename "Top")) |
29410
935f96194020
(Info-on-current-buffer): Initialize info.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29164
diff
changeset
|
709 (info-initialize) |
26004
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25878
diff
changeset
|
710 (Info-mode) |
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25878
diff
changeset
|
711 (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
|
712 (Info-find-node-2 nil nodename)) |
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25878
diff
changeset
|
713 |
48933
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
714 ;; 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
|
715 ;; 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
|
716 ;; 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
|
717 ;; |
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
718 (defun Info-revert-find-node (filename nodename) |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
719 "Go to an Info node FILENAME and NODENAME, re-reading disk contents. |
48933
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
720 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
|
721 is preserved, if possible." |
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
722 (pop-to-buffer "*info*") |
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
723 (let ((old-filename Info-current-file) |
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
724 (old-nodename Info-current-node) |
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
725 (pcolumn (current-column)) |
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
726 (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
|
727 (wline (count-lines (point-min) (window-start))) |
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
728 (old-history Info-history) |
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
729 (new-history (and Info-current-file |
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
730 (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
|
731 (kill-buffer (current-buffer)) |
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
732 (Info-find-node filename nodename) |
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
733 (setq Info-history old-history) |
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
734 (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
|
735 (equal old-nodename Info-current-node)) |
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
736 (progn |
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
737 ;; note goto-line is no good, we want to measure from point-min |
58040
af694410e72f
(Info-revert-find-node): Don't use beginning-of-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
57958
diff
changeset
|
738 (goto-char (point-min)) |
48933
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
739 (forward-line wline) |
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
740 (set-window-start (selected-window) (point)) |
58040
af694410e72f
(Info-revert-find-node): Don't use beginning-of-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
57958
diff
changeset
|
741 (goto-char (point-min)) |
48933
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
742 (forward-line pline) |
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
743 (move-to-column pcolumn)) |
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
744 ;; 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
|
745 (if new-history |
06dd01f3b917
(Info-revert-find-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
48887
diff
changeset
|
746 (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
|
747 |
29684
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
748 (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
|
749 "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
|
750 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
|
751 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
|
752 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
|
753 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
|
754 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
|
755 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
|
756 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
|
757 which the match was found." |
51434
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
758 (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
|
759 (save-excursion |
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
760 (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
|
761 (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
|
762 |
29684
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
763 ;; Search tag table |
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
764 (beginning-of-line) |
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
765 (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
|
766 (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
|
767 (+ (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
|
768 major-mode))))) |
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
769 |
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
770 (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
|
771 "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
|
772 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
|
773 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
|
774 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
|
775 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
|
776 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
|
777 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
|
778 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
|
779 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
|
780 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
|
781 (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
|
782 (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
|
783 (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
|
784 result)) |
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
785 |
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
786 (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
|
787 "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
|
788 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
|
789 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
|
790 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
|
791 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
|
792 (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
|
793 found) |
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
794 (save-excursion |
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
795 (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
|
796 (setq found (point))) |
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
797 (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
|
798 (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
|
799 (forward-line 1) |
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
800 (let ((beg (point))) |
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
801 (forward-line 1) |
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
802 (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
|
803 (beginning-of-line) |
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
804 (setq found (point))))) |
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
805 found))) |
49424
59c37b87bb18
(Info-try-follow-nearest-node): Add case: Handle menu item
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
49390
diff
changeset
|
806 |
29684
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
807 (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
|
808 "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
|
809 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
|
810 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
|
811 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
|
812 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
|
813 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
|
814 (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
|
815 (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
|
816 |
26004
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25878
diff
changeset
|
817 (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
|
818 (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
|
819 (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
|
820 (Info-mode)) |
325 | 821 (widen) |
822 (setq Info-current-node nil) | |
823 (unwind-protect | |
24632
a6ad37f4f6cb
(Info-find-node): Position properly after finding anchor.
Karl Heuer <kwzh@gnu.org>
parents:
24580
diff
changeset
|
824 (let ((case-fold-search t) |
a6ad37f4f6cb
(Info-find-node): Position properly after finding anchor.
Karl Heuer <kwzh@gnu.org>
parents:
24580
diff
changeset
|
825 anchorpos) |
22692
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
826 ;; Switch files if necessary |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
827 (or (null filename) |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
828 (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
|
829 (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
|
830 (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
|
831 Info-current-subfile nil |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
832 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
|
833 buffer-file-name nil) |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
834 (erase-buffer) |
54718
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
835 (cond |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
836 ((eq filename t) |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
837 (Info-insert-dir)) |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
838 ((eq filename 'apropos) |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
839 (insert-buffer-substring " *info-apropos*")) |
55074 | 840 ((eq filename 'history) |
841 (insert-buffer-substring " *info-history*")) | |
842 ((eq filename 'toc) | |
843 (insert-buffer-substring " *info-toc*")) | |
54718
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
844 (t |
41713
d53ece895385
(Info-find-node-2): Don't call info-insert-file-contents
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41691
diff
changeset
|
845 (info-insert-file-contents filename nil) |
54718
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
846 (setq default-directory (file-name-directory filename)))) |
22692
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
847 (set-buffer-modified-p nil) |
66602
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
848 |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
849 ;; Check makeinfo version for index cookie support |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
850 (let ((found nil)) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
851 (goto-char (point-min)) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
852 (condition-case () |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
853 (if (and (re-search-forward |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
854 "makeinfo version \\([0-9]+.[0-9]+\\)" |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
855 (line-beginning-position 3) t) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
856 (not (version< (match-string 1) "4.7"))) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
857 (setq found t)) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
858 (error nil)) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
859 (set (make-local-variable 'Info-file-supports-index-cookies) found)) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
860 |
22692
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
861 ;; 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
|
862 (goto-char (point-max)) |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
863 (forward-line -8) |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
864 ;; 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
|
865 (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
|
866 (not |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
867 (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
|
868 (let (pos) |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
869 ;; 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
|
870 ;; 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
|
871 (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
|
872 (setq pos (point)) |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
873 (if (save-excursion |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
874 (forward-line 2) |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
875 (looking-at "(Indirect)\n")) |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
876 ;; 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
|
877 ;; 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
|
878 (let ((buf (current-buffer)) |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
879 (tagbuf |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
880 (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
|
881 (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
|
882 (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
|
883 (save-excursion |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
884 (set-buffer tagbuf) |
1484
6c2a714566d3
Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents:
1477
diff
changeset
|
885 (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
|
886 (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
|
887 (erase-buffer) |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
888 (insert-buffer-substring buf)) |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
889 (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
|
890 (match-end 0) tagbuf)) |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
891 (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
|
892 (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
|
893 (setq Info-current-file |
54718
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
894 (cond |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
895 ((eq filename t) "dir") |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
896 ((eq filename 'apropos) "apropos") |
55074 | 897 ((eq filename 'history) "history") |
898 ((eq filename 'toc) "toc") | |
54718
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
899 (t filename))) |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
900 )) |
22692
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
901 ;; 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
|
902 (if (string-equal nodename "*") |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
903 (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
|
904 (Info-set-mode-line)) |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
905 ;; Possibilities: |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
906 ;; |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
907 ;; 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
|
908 ;; 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
|
909 ;; |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
910 ;; 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
|
911 ;; 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
|
912 ;; 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
|
913 ;; |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
914 ;; *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
|
915 |
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
916 ;; 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
|
917 (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
|
918 (regexp (concat "\\(Node:\\|Ref:\\) *\\(" |
38262
03f0515fe575
(Info-clone-buffer-hook): Really unconditionally copy marker.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38225
diff
changeset
|
919 (if (stringp nodename) |
30686
23c301a64c8f
(Info-insert-dir): Use Info-additional-directory-list if
Gerd Moellmann <gerd@gnu.org>
parents:
30423
diff
changeset
|
920 (regexp-quote nodename) |
23c301a64c8f
(Info-insert-dir): Use Info-additional-directory-list if
Gerd Moellmann <gerd@gnu.org>
parents:
30423
diff
changeset
|
921 "") |
51434
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
922 "\\) *[,\t\n\177]"))) |
22692
578a6d997580
(Info-find-node): Handle cross references to an @anchor.
Richard M. Stallman <rms@gnu.org>
parents:
22643
diff
changeset
|
923 |
29164
71275ee34b42
(Info-find-node-2): Restructure [following "Vadim S. Solomin"
Dave Love <fx@gnu.org>
parents:
29085
diff
changeset
|
924 (catch 'foo |
49424
59c37b87bb18
(Info-try-follow-nearest-node): Add case: Handle menu item
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
49390
diff
changeset
|
925 |
29164
71275ee34b42
(Info-find-node-2): Restructure [following "Vadim S. Solomin"
Dave Love <fx@gnu.org>
parents:
29085
diff
changeset
|
926 ;; 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
|
927 (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
|
928 (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
|
929 (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
|
930 |
29684
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
931 (when found |
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
932 ;; 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
|
933 (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
|
934 |
29684
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
935 ;; 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
|
936 ;; 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
|
937 (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
|
938 ;; 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
|
939 ;; *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
|
940 ;; 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
|
941 (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
|
942 |
71275ee34b42
(Info-find-node-2): Restructure [following "Vadim S. Solomin"
Dave Love <fx@gnu.org>
parents:
29085
diff
changeset
|
943 ;; Handle anchor |
29684
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
944 (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
|
945 (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
|
946 (throw 'foo t))))) |
29164
71275ee34b42
(Info-find-node-2): Restructure [following "Vadim S. Solomin"
Dave Love <fx@gnu.org>
parents:
29085
diff
changeset
|
947 |
71275ee34b42
(Info-find-node-2): Restructure [following "Vadim S. Solomin"
Dave Love <fx@gnu.org>
parents:
29085
diff
changeset
|
948 ;; 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
|
949 (goto-char (max (point-min) |
71275ee34b42
(Info-find-node-2): Restructure [following "Vadim S. Solomin"
Dave Love <fx@gnu.org>
parents:
29085
diff
changeset
|
950 (- (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
|
951 |
29684
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
952 ;; 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
|
953 ;; 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
|
954 ;; 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
|
955 ;; 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
|
956 (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
|
957 (when pos |
4380fdbfe977
(Info-find-in-tag-table-1, Info-find-in-tag-table)
Gerd Moellmann <gerd@gnu.org>
parents:
29675
diff
changeset
|
958 (goto-char pos) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
959 (throw 'foo t))) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
960 |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
961 (when (string-match "\\([^.]+\\)\\." nodename) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
962 (let (Info-point-loc) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
963 (Info-find-node-2 |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
964 filename (match-string 1 nodename) no-going-back)) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
965 (widen) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
966 (throw 'foo t)) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
967 |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
968 ;; No such anchor in tag table or node in tag table or file |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
969 (error "No such node or anchor: %s" nodename)) |
29164
71275ee34b42
(Info-find-node-2): Restructure [following "Vadim S. Solomin"
Dave Love <fx@gnu.org>
parents:
29085
diff
changeset
|
970 |
71275ee34b42
(Info-find-node-2): Restructure [following "Vadim S. Solomin"
Dave Love <fx@gnu.org>
parents:
29085
diff
changeset
|
971 (Info-select-node) |
54754 | 972 (goto-char (point-min)) |
973 (cond (anchorpos | |
974 (let ((new-history (list Info-current-file | |
975 (substring-no-properties nodename)))) | |
976 ;; Add anchors to the history too | |
977 (setq Info-history-list | |
978 (cons new-history | |
979 (delete new-history Info-history-list)))) | |
980 (goto-char anchorpos)) | |
55174
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
981 ((numberp Info-point-loc) |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
982 (forward-line (1- Info-point-loc)) |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
983 (setq Info-point-loc nil)) |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
984 ((stringp Info-point-loc) |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
985 (Info-find-index-name Info-point-loc) |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
986 (setq Info-point-loc nil)))))) |
325 | 987 ;; If we did not finish finding the specified node, |
988 ;; 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
|
989 (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
|
990 (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
|
991 (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
|
992 (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
|
993 (goto-char (nth 2 hist)))))) |
325 | 994 |
1979
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
995 ;; 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
|
996 ;; 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
|
997 (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
|
998 |
1979
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
999 ;; 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
|
1000 ;; 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
|
1001 (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
|
1002 |
3836
04f1cff889f4
(Info-insert-dir): Record file attributes of files used.
Richard M. Stallman <rms@gnu.org>
parents:
3565
diff
changeset
|
1003 ;; 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
|
1004 ;; constructed Info-dir-contents. |
04f1cff889f4
(Info-insert-dir): Record file attributes of files used.
Richard M. Stallman <rms@gnu.org>
parents:
3565
diff
changeset
|
1005 (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
|
1006 |
23416
83f51f5fb749
(Info-insert-dir): Detect and report problems
Richard M. Stallman <rms@gnu.org>
parents:
23175
diff
changeset
|
1007 (defvar Info-dir-file-name nil) |
83f51f5fb749
(Info-insert-dir): Detect and report problems
Richard M. Stallman <rms@gnu.org>
parents:
23175
diff
changeset
|
1008 |
1971
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
1009 ;; 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
|
1010 ;; 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
|
1011 ;; 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
|
1012 ;; from. |
1971
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
1013 (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
|
1014 (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
|
1015 ;; 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
|
1016 ;; since we used it. |
04f1cff889f4
(Info-insert-dir): Record file attributes of files used.
Richard M. Stallman <rms@gnu.org>
parents:
3565
diff
changeset
|
1017 (eval (cons 'and |
29583
f1b4be7fce6d
(Info-insert-dir): Don't quote lambda.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29446
diff
changeset
|
1018 (mapcar (lambda (elt) |
f1b4be7fce6d
(Info-insert-dir): Don't quote lambda.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29446
diff
changeset
|
1019 (let ((curr (file-attributes |
f1b4be7fce6d
(Info-insert-dir): Don't quote lambda.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29446
diff
changeset
|
1020 ;; Handle symlinks |
f1b4be7fce6d
(Info-insert-dir): Don't quote lambda.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29446
diff
changeset
|
1021 (file-truename (car elt))))) |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28559
diff
changeset
|
1022 |
29583
f1b4be7fce6d
(Info-insert-dir): Don't quote lambda.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29446
diff
changeset
|
1023 ;; Don't compare the access time. |
f1b4be7fce6d
(Info-insert-dir): Don't quote lambda.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29446
diff
changeset
|
1024 (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
|
1025 (setcar (nthcdr 4 (cdr elt)) 0) |
f1b4be7fce6d
(Info-insert-dir): Don't quote lambda.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29446
diff
changeset
|
1026 (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
|
1027 Info-dir-file-attributes)))) |
23416
83f51f5fb749
(Info-insert-dir): Detect and report problems
Richard M. Stallman <rms@gnu.org>
parents:
23175
diff
changeset
|
1028 (progn |
83f51f5fb749
(Info-insert-dir): Detect and report problems
Richard M. Stallman <rms@gnu.org>
parents:
23175
diff
changeset
|
1029 (insert Info-dir-contents) |
83f51f5fb749
(Info-insert-dir): Detect and report problems
Richard M. Stallman <rms@gnu.org>
parents:
23175
diff
changeset
|
1030 (goto-char (point-min))) |
30686
23c301a64c8f
(Info-insert-dir): Use Info-additional-directory-list if
Gerd Moellmann <gerd@gnu.org>
parents:
30423
diff
changeset
|
1031 (let ((dirs (if Info-additional-directory-list |
46139 | 1032 (append Info-directory-list |
1033 Info-additional-directory-list) | |
1034 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
|
1035 (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
|
1036 ;; 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
|
1037 (case-fold-search t) |
23416
83f51f5fb749
(Info-insert-dir): Detect and report problems
Richard M. Stallman <rms@gnu.org>
parents:
23175
diff
changeset
|
1038 ;; 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
|
1039 problems |
3212
cd8f8468a190
(Info-insert-dir): Ignore duplicate directories.
Richard M. Stallman <rms@gnu.org>
parents:
3127
diff
changeset
|
1040 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
|
1041 |
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
1042 ;; 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
|
1043 (while dirs |
5271
c415cc48a084
(Info-insert-dir): Compute truename just once for each dir.
Richard M. Stallman <rms@gnu.org>
parents:
5146
diff
changeset
|
1044 (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
|
1045 (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
|
1046 (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
|
1047 ;; 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
|
1048 ;; 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
|
1049 (let* (file |
185c1f12db67
(Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents:
7859
diff
changeset
|
1050 (attrs |
185c1f12db67
(Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents:
7859
diff
changeset
|
1051 (or |
185c1f12db67
(Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents:
7859
diff
changeset
|
1052 (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
|
1053 (file-attributes file)) |
185c1f12db67
(Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents:
7859
diff
changeset
|
1054 (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
|
1055 (file-attributes file)) |
185c1f12db67
(Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents:
7859
diff
changeset
|
1056 (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
|
1057 (file-attributes file)) |
185c1f12db67
(Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents:
7859
diff
changeset
|
1058 (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
|
1059 (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
|
1060 (setq dirs-done |
c415cc48a084
(Info-insert-dir): Compute truename just once for each dir.
Richard M. Stallman <rms@gnu.org>
parents:
5146
diff
changeset
|
1061 (cons truename |
c415cc48a084
(Info-insert-dir): Compute truename just once for each dir.
Richard M. Stallman <rms@gnu.org>
parents:
5146
diff
changeset
|
1062 (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
|
1063 dirs-done))) |
7911
185c1f12db67
(Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents:
7859
diff
changeset
|
1064 (if attrs |
185c1f12db67
(Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents:
7859
diff
changeset
|
1065 (save-excursion |
185c1f12db67
(Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents:
7859
diff
changeset
|
1066 (or buffers |
185c1f12db67
(Info-insert-dir): Ignore access times when comparing
Richard M. Stallman <rms@gnu.org>
parents:
7859
diff
changeset
|
1067 (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
|
1068 (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
|
1069 (condition-case nil |
58584d6a8237
(Info-find-node): Position at the beginning of the node
Richard M. Stallman <rms@gnu.org>
parents:
22761
diff
changeset
|
1070 (progn |
58584d6a8237
(Info-find-node): Position at the beginning of the node
Richard M. Stallman <rms@gnu.org>
parents:
22761
diff
changeset
|
1071 (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
|
1072 (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
|
1073 file) |
48135
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1074 (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
|
1075 (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
|
1076 (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
|
1077 (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
|
1078 (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
|
1079 (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
|
1080 (setq dirs (cdr dirs)))) |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28559
diff
changeset
|
1081 |
6716
9ce2d1a2c155
(Info-find-node): Don't try to backstep if no history.
Karl Heuer <kwzh@gnu.org>
parents:
6624
diff
changeset
|
1082 (or buffers |
14664
f77b58df548c
(Info-index): If fail, go back to original node.
Richard M. Stallman <rms@gnu.org>
parents:
14577
diff
changeset
|
1083 (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
|
1084 |
1979
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
1085 ;; 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
|
1086 ;; 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
|
1087 ;; 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
|
1088 ;; 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
|
1089 (setq buffer (car (last buffers)) |
2db3b19a94bb
(Info-directory-list): Revert change to re-writing
Dave Love <fx@gnu.org>
parents:
24196
diff
changeset
|
1090 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
|
1091 |
15304
d78c3fd6a0ab
(Info-insert-dir): Fix default directory.
Karl Heuer <kwzh@gnu.org>
parents:
15177
diff
changeset
|
1092 ;; 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
|
1093 ;; 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
|
1094 ;; directory for the whole concatenation. |
65069
fc42a1decf2d
(Info-insert-dir): Use save-excursion around insert-buffer-substring.
Juri Linkov <juri@jurta.org>
parents:
64961
diff
changeset
|
1095 (save-excursion (insert-buffer-substring buffer)) |
1979
0582c70595f1
* info.el (Info-directory-list): Doc fix; it is set according to
Jim Blandy <jimb@redhat.com>
parents:
1971
diff
changeset
|
1096 |
1971
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
1097 ;; 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
|
1098 (dolist (other others) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1099 (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
|
1100 ;; In each, find all the menus. |
48135
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1101 (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
|
1102 (goto-char (point-min)) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
1103 ;; 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
|
1104 (while (re-search-forward "^\\* Menu:" nil t) |
48135
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1105 (while (and (zerop (forward-line 1)) (eolp))) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1106 (let ((beg (point)) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1107 nodename end) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1108 (re-search-backward "^\^_") |
1971
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
1109 (search-forward "Node: ") |
55074 | 1110 (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
|
1111 (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
|
1112 (beginning-of-line) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
1113 (setq end (point)) |
48135
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1114 (push (list nodename other beg end) this-buffer-nodes))) |
53409
6f40406c2b3e
(Info-insert-dir): Use assoc-string.
Richard M. Stallman <rms@gnu.org>
parents:
53246
diff
changeset
|
1115 (if (assoc-string "top" this-buffer-nodes t) |
23416
83f51f5fb749
(Info-insert-dir): Detect and report problems
Richard M. Stallman <rms@gnu.org>
parents:
23175
diff
changeset
|
1116 (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
|
1117 (setq problems t) |
48135
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1118 (message "No `top' node in %s" Info-dir-file-name))))) |
29621 | 1119 ;; 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
|
1120 (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
|
1121 (forward-line 1) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
1122 (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
|
1123 (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
|
1124 (dolist (node nodes) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1125 (let ((nodename (car node))) |
6537
f5ab0b6b9640
(Info-insert-dir): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
6339
diff
changeset
|
1126 (save-excursion |
f5ab0b6b9640
(Info-insert-dir): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
6339
diff
changeset
|
1127 (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
|
1128 (re-search-forward (concat "^\\* +" |
6537
f5ab0b6b9640
(Info-insert-dir): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
6339
diff
changeset
|
1129 (regexp-quote nodename) |
f5ab0b6b9640
(Info-insert-dir): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
6339
diff
changeset
|
1130 "::") |
f5ab0b6b9640
(Info-insert-dir): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
6339
diff
changeset
|
1131 end t) |
f5ab0b6b9640
(Info-insert-dir): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
6339
diff
changeset
|
1132 (progn |
f5ab0b6b9640
(Info-insert-dir): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
6339
diff
changeset
|
1133 (insert "* " nodename "::" "\n") |
48135
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1134 (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
|
1135 ;; 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
|
1136 ;; and merge it into the main buffer. |
48135
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1137 (dolist (node nodes) |
29446
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1138 (let ((case-fold-search t) |
48135
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1139 (nodename (car node))) |
1971
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
1140 (goto-char (point-min)) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
1141 ;; 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
|
1142 (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
|
1143 (regexp-quote nodename) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
1144 "[,\n\t]") |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
1145 nil t) |
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
1146 (progn |
6339
f0f62abb621b
(Info-insert-dir): Use printable escapes instead of embedding literal control
Karl Heuer <kwzh@gnu.org>
parents:
6121
diff
changeset
|
1147 (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
|
1148 (beginning-of-line) |
65a8b9c507dc
(Info-insert-dir): Insert newlines before rather than
Richard M. Stallman <rms@gnu.org>
parents:
8805
diff
changeset
|
1149 (insert "\n")) |
1971
b540866e8a79
(Info-insert-dir): Make menu items in Top node
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
1150 ;; 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
|
1151 (goto-char (point-max)) |
8069
dfef58fcda75
(Info-insert-dir): Capitalize `node' when inserting it.
Richard M. Stallman <rms@gnu.org>
parents:
8018
diff
changeset
|
1152 (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
|
1153 ;; 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
|
1154 ;; 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
|
1155 (apply 'insert-buffer-substring (cdr node)))) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1156 (Info-dir-remove-duplicates) |
56991
53c840d7ea68
(Info-insert-dir): Fix temp buffer leak bug.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
56882
diff
changeset
|
1157 ;; Kill all the buffers we just made, including the special one excised. |
53c840d7ea68
(Info-insert-dir): Fix temp buffer leak bug.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
56882
diff
changeset
|
1158 (mapc 'kill-buffer (cons buffer buffers)) |
23416
83f51f5fb749
(Info-insert-dir): Detect and report problems
Richard M. Stallman <rms@gnu.org>
parents:
23175
diff
changeset
|
1159 (goto-char (point-min)) |
83f51f5fb749
(Info-insert-dir): Detect and report problems
Richard M. Stallman <rms@gnu.org>
parents:
23175
diff
changeset
|
1160 (if problems |
83f51f5fb749
(Info-insert-dir): Detect and report problems
Richard M. Stallman <rms@gnu.org>
parents:
23175
diff
changeset
|
1161 (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
|
1162 (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
|
1163 (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
|
1164 (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
|
1165 (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
|
1166 |
48135
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1167 (defvar Info-streamline-headings |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1168 '(("Emacs" . "Emacs") |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1169 ("Programming" . "Programming") |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1170 ("Libraries" . "Libraries") |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1171 ("World Wide Web\\|Net Utilities" . "Net Utilities")) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1172 "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
|
1173 |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1174 (defun Info-dir-remove-duplicates () |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1175 (let (limit) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1176 (goto-char (point-min)) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1177 ;; Remove duplicate headings in the same menu. |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1178 (while (search-forward "\n* Menu:" nil t) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
1179 (setq limit (save-excursion (search-forward "\n\^_" nil t))) |
48135
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1180 ;; Look for the next heading to unify. |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1181 (while (re-search-forward "^\\(\\w.*\\)\n\\*" limit t) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1182 (let ((name (match-string 1)) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1183 (start (match-beginning 0)) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1184 (entries nil) re) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1185 ;; Check whether this heading should be streamlined. |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1186 (save-match-data |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1187 (dolist (x Info-streamline-headings) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1188 (when (string-match (car x) name) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1189 (setq name (cdr x)) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1190 (setq re (car x))))) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1191 (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
|
1192 (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
|
1193 (match-beginning 0) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1194 (or limit (point-max)))) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1195 ;; 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
|
1196 (save-excursion |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1197 (while (re-search-forward "^\\(\\w.*\\)\n\\*" limit t) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1198 (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
|
1199 (equal name (match-string 1))) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1200 (forward-line 0) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1201 ;; Delete redundant heading. |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1202 (delete-region (match-beginning 0) (point)) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1203 ;; Push the entries onto `text'. |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1204 (push |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1205 (delete-and-extract-region |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1206 (point) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1207 (if (re-search-forward "^[^* \n\t]" nil t) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1208 (match-beginning 0) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1209 (or limit (point-max)))) entries)))) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1210 ;; Insert the entries just found. |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1211 (while (= (line-beginning-position 0) (1- (point))) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1212 (backward-char)) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1213 (dolist (entry (nreverse entries)) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1214 (insert entry) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1215 (while (= (line-beginning-position 0) (1- (point))) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1216 (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
|
1217 |
48135
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1218 ;; Now remove duplicate entries under the same heading. |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1219 (let ((seen nil) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1220 (limit (point))) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1221 (goto-char start) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1222 (while (re-search-forward "^* \\([^:\n]+:\\(:\\|[^.\n]+\\).\\)" |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1223 limit 'move) |
64781
72ec215d0ecf
(Info-dir-remove-duplicates): Avoid case folding in loop;
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64762
diff
changeset
|
1224 ;; Fold case straight away; `member-ignore-case' here wasteful. |
72ec215d0ecf
(Info-dir-remove-duplicates): Avoid case folding in loop;
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64762
diff
changeset
|
1225 (let ((x (downcase (match-string 1)))) |
72ec215d0ecf
(Info-dir-remove-duplicates): Avoid case folding in loop;
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64762
diff
changeset
|
1226 (if (member x seen) |
48135
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1227 (delete-region (match-beginning 0) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1228 (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
|
1229 (match-beginning 0))) |
48135
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1230 (push x seen)))))))))) |
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
1231 |
16981
643e0f90e153
Handle multiple Info buffers.
Richard M. Stallman <rms@gnu.org>
parents:
16790
diff
changeset
|
1232 ;; 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
|
1233 ;; *info* buffer; not the info tags buffer. |
325 | 1234 (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
|
1235 ;; 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
|
1236 ;; not relative to a subfile) or the name of a subfile. |
325 | 1237 (let (lastfilepos |
1238 lastfilename) | |
16399
f73d53a1b448
(Info-read-subfile): Allow a file name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
16202
diff
changeset
|
1239 (if (numberp nodepos) |
f73d53a1b448
(Info-read-subfile): Allow a file name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
16202
diff
changeset
|
1240 (save-excursion |
f73d53a1b448
(Info-read-subfile): Allow a file name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
16202
diff
changeset
|
1241 (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
|
1242 (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
|
1243 (or (looking-at "\^_") |
74c3c643e90c
(Info-find-node): Add 1 to the position read from the
Eli Zaretskii <eliz@gnu.org>
parents:
23819
diff
changeset
|
1244 (search-forward "\n\^_")) |
16399
f73d53a1b448
(Info-read-subfile): Allow a file name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
16202
diff
changeset
|
1245 (forward-line 2) |
f73d53a1b448
(Info-read-subfile): Allow a file name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
16202
diff
changeset
|
1246 (catch 'foo |
f73d53a1b448
(Info-read-subfile): Allow a file name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
16202
diff
changeset
|
1247 (while (not (looking-at "\^_")) |
f73d53a1b448
(Info-read-subfile): Allow a file name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
16202
diff
changeset
|
1248 (if (not (eolp)) |
f73d53a1b448
(Info-read-subfile): Allow a file name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
16202
diff
changeset
|
1249 (let ((beg (point)) |
f73d53a1b448
(Info-read-subfile): Allow a file name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
16202
diff
changeset
|
1250 thisfilepos thisfilename) |
f73d53a1b448
(Info-read-subfile): Allow a file name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
16202
diff
changeset
|
1251 (search-forward ": ") |
f73d53a1b448
(Info-read-subfile): Allow a file name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
16202
diff
changeset
|
1252 (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
|
1253 (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
|
1254 ;; 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
|
1255 ;; 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
|
1256 (forward-line 1) |
f73d53a1b448
(Info-read-subfile): Allow a file name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
16202
diff
changeset
|
1257 (if (> thisfilepos nodepos) |
f73d53a1b448
(Info-read-subfile): Allow a file name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
16202
diff
changeset
|
1258 (throw 'foo t)) |
f73d53a1b448
(Info-read-subfile): Allow a file name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
16202
diff
changeset
|
1259 (setq lastfilename thisfilename) |
f73d53a1b448
(Info-read-subfile): Allow a file name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
16202
diff
changeset
|
1260 (setq lastfilepos thisfilepos)) |
f73d53a1b448
(Info-read-subfile): Allow a file name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
16202
diff
changeset
|
1261 (forward-line 1))))) |
f73d53a1b448
(Info-read-subfile): Allow a file name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
16202
diff
changeset
|
1262 (setq lastfilename nodepos) |
f73d53a1b448
(Info-read-subfile): Allow a file name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
16202
diff
changeset
|
1263 (setq lastfilepos 0)) |
16981
643e0f90e153
Handle multiple Info buffers.
Richard M. Stallman <rms@gnu.org>
parents:
16790
diff
changeset
|
1264 ;; Assume previous buffer is in Info-mode. |
643e0f90e153
Handle multiple Info buffers.
Richard M. Stallman <rms@gnu.org>
parents:
16790
diff
changeset
|
1265 ;; (set-buffer (get-buffer "*info*")) |
325 | 1266 (or (equal Info-current-subfile lastfilename) |
1267 (let ((buffer-read-only nil)) | |
1268 (setq buffer-file-name nil) | |
1269 (widen) | |
1270 (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
|
1271 (info-insert-file-contents lastfilename) |
325 | 1272 (set-buffer-modified-p nil) |
1273 (setq Info-current-subfile lastfilename))) | |
37837
39e5892b1843
(Info-read-subfile): Widen before finding the
Richard M. Stallman <rms@gnu.org>
parents:
37473
diff
changeset
|
1274 ;; 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
|
1275 (widen) |
325 | 1276 (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
|
1277 (if (looking-at "\^_") |
74c3c643e90c
(Info-find-node): Add 1 to the position read from the
Eli Zaretskii <eliz@gnu.org>
parents:
23819
diff
changeset
|
1278 (forward-char 1) |
74c3c643e90c
(Info-find-node): Add 1 to the position read from the
Eli Zaretskii <eliz@gnu.org>
parents:
23819
diff
changeset
|
1279 (search-forward "\n\^_")) |
16399
f73d53a1b448
(Info-read-subfile): Allow a file name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
16202
diff
changeset
|
1280 (if (numberp nodepos) |
f73d53a1b448
(Info-read-subfile): Allow a file name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
16202
diff
changeset
|
1281 (+ (- nodepos lastfilepos) (point))))) |
325 | 1282 |
50707
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1283 (defun Info-unescape-quotes (value) |
53246
c07db7df7073
(Info-unescape-quotes, Info-split-parameter-string)
John Paul Wallington <jpw@pobox.com>
parents:
52767
diff
changeset
|
1284 "Unescape double quotes and backslashes in VALUE." |
50707
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1285 (let ((start 0) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1286 (unquote value)) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1287 (while (string-match "[^\\\"]*\\(\\\\\\)[\\\\\"]" unquote start) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1288 (setq unquote (replace-match "" t t unquote 1)) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1289 (setq start (- (match-end 0) 1))) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1290 unquote)) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1291 |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1292 ;; 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
|
1293 ;; \0\h[image param=value ...\h\0] |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1294 ;; into the Info file for handling images. |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1295 (defun Info-split-parameter-string (parameter-string) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1296 "Return alist of (\"KEY\" . \"VALUE\") from PARAMETER-STRING; a |
53246
c07db7df7073
(Info-unescape-quotes, Info-split-parameter-string)
John Paul Wallington <jpw@pobox.com>
parents:
52767
diff
changeset
|
1297 whitespace separated list of KEY=VALUE pairs. If VALUE contains |
c07db7df7073
(Info-unescape-quotes, Info-split-parameter-string)
John Paul Wallington <jpw@pobox.com>
parents:
52767
diff
changeset
|
1298 whitespace or double quotes, it must be quoted in double quotes and |
c07db7df7073
(Info-unescape-quotes, Info-split-parameter-string)
John Paul Wallington <jpw@pobox.com>
parents:
52767
diff
changeset
|
1299 any double quotes or backslashes must be escaped (\\\",\\\\)." |
50707
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1300 (let ((start 0) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1301 (parameter-alist)) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1302 (while (string-match |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1303 "\\s *\\([^=]+\\)=\\(?:\\([^\\s \"]+\\)\\|\\(?:\"\\(\\(?:[^\\\"]\\|\\\\[\\\\\"]\\)*\\)\"\\)\\)" |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1304 parameter-string start) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1305 (setq start (match-end 0)) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1306 (push (cons (match-string 1 parameter-string) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1307 (or (match-string 2 parameter-string) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1308 (Info-unescape-quotes |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1309 (match-string 3 parameter-string)))) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1310 parameter-alist)) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1311 parameter-alist)) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1312 |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1313 (defun Info-display-images-node () |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1314 "Display images in current node." |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1315 (save-excursion |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1316 (let ((inhibit-read-only t) |
51434
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
1317 (case-fold-search t)) |
50707
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1318 (goto-char (point-min)) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1319 (while (re-search-forward |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1320 "\\(\0\b[[]image\\(\\(?:[^\b]\\|[^\0]+\b\\)*\\)\0\b[]]\\)" |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1321 nil t) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1322 (let* ((start (match-beginning 1)) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1323 (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
|
1324 (src (cdr (assoc-string "src" parameter-alist))) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1325 (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
|
1326 (concat default-directory src)) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1327 "")) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1328 (image (if (file-exists-p image-file) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1329 (create-image image-file) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1330 "[broken image]"))) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1331 (if (not (get-text-property start 'display)) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1332 (add-text-properties |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1333 start (point) `(display ,image rear-nonsticky (display))))))) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1334 (set-buffer-modified-p nil))) |
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1335 |
54752
4aa6485ff6e3
(Info-hide-cookies-node): New function.
Juri Linkov <juri@jurta.org>
parents:
54718
diff
changeset
|
1336 ;; Texinfo 4.7 adds cookies of the form ^@^H[NAME CONTENTS ^@^H]. |
4aa6485ff6e3
(Info-hide-cookies-node): New function.
Juri Linkov <juri@jurta.org>
parents:
54718
diff
changeset
|
1337 ;; Hide any construct of the general form ^@[^@-^_][ ... ^@[^@-^_]], |
4aa6485ff6e3
(Info-hide-cookies-node): New function.
Juri Linkov <juri@jurta.org>
parents:
54718
diff
changeset
|
1338 ;; including one optional trailing newline. |
4aa6485ff6e3
(Info-hide-cookies-node): New function.
Juri Linkov <juri@jurta.org>
parents:
54718
diff
changeset
|
1339 (defun Info-hide-cookies-node () |
63503
512a76e42d3f
(Info-hide-cookies-node): Fix spelling in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
63208
diff
changeset
|
1340 "Hide unrecognized cookies in current node." |
54752
4aa6485ff6e3
(Info-hide-cookies-node): New function.
Juri Linkov <juri@jurta.org>
parents:
54718
diff
changeset
|
1341 (save-excursion |
4aa6485ff6e3
(Info-hide-cookies-node): New function.
Juri Linkov <juri@jurta.org>
parents:
54718
diff
changeset
|
1342 (let ((inhibit-read-only t) |
4aa6485ff6e3
(Info-hide-cookies-node): New function.
Juri Linkov <juri@jurta.org>
parents:
54718
diff
changeset
|
1343 (case-fold-search t)) |
4aa6485ff6e3
(Info-hide-cookies-node): New function.
Juri Linkov <juri@jurta.org>
parents:
54718
diff
changeset
|
1344 (goto-char (point-min)) |
4aa6485ff6e3
(Info-hide-cookies-node): New function.
Juri Linkov <juri@jurta.org>
parents:
54718
diff
changeset
|
1345 (while (re-search-forward |
4aa6485ff6e3
(Info-hide-cookies-node): New function.
Juri Linkov <juri@jurta.org>
parents:
54718
diff
changeset
|
1346 "\\(\0[\0-\37][[][^\0]*\0[\0-\37][]]\n?\\)" |
4aa6485ff6e3
(Info-hide-cookies-node): New function.
Juri Linkov <juri@jurta.org>
parents:
54718
diff
changeset
|
1347 nil t) |
4aa6485ff6e3
(Info-hide-cookies-node): New function.
Juri Linkov <juri@jurta.org>
parents:
54718
diff
changeset
|
1348 (let* ((start (match-beginning 1))) |
4aa6485ff6e3
(Info-hide-cookies-node): New function.
Juri Linkov <juri@jurta.org>
parents:
54718
diff
changeset
|
1349 (if (not (get-text-property start 'invisible)) |
4aa6485ff6e3
(Info-hide-cookies-node): New function.
Juri Linkov <juri@jurta.org>
parents:
54718
diff
changeset
|
1350 (put-text-property start (point) 'invisible t))))) |
4aa6485ff6e3
(Info-hide-cookies-node): New function.
Juri Linkov <juri@jurta.org>
parents:
54718
diff
changeset
|
1351 (set-buffer-modified-p nil))) |
4aa6485ff6e3
(Info-hide-cookies-node): New function.
Juri Linkov <juri@jurta.org>
parents:
54718
diff
changeset
|
1352 |
325 | 1353 (defun Info-select-node () |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
1354 "Select the Info node that point is in." |
51513
a1170353615d
(Info-select-node): Doc fix.
Andreas Schwab <schwab@suse.de>
parents:
51504
diff
changeset
|
1355 ;; 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
|
1356 (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
|
1357 (save-excursion |
29446
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1358 ;; Find beginning of node. |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1359 (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
|
1360 (forward-line 2) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1361 (if (looking-at "\^_") |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1362 (forward-line 1) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1363 (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
|
1364 ;; 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
|
1365 (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
|
1366 (setq Info-current-node |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1367 (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
|
1368 (progn |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1369 (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
|
1370 (point)))) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1371 (Info-set-mode-line) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1372 ;; 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
|
1373 (beginning-of-line) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1374 (let (active-expression) |
31660 | 1375 ;; 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
|
1376 (narrow-to-region (point) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1377 (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
|
1378 (prog1 |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1379 (1- (point)) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1380 (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
|
1381 (progn |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1382 (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
|
1383 (setq active-expression |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1384 (read (current-buffer)))))) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1385 (point-max))) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1386 (if Info-enable-active-nodes (eval active-expression)) |
54754 | 1387 ;; Add a new unique history item to full history list |
1388 (let ((new-history (list Info-current-file Info-current-node))) | |
1389 (setq Info-history-list | |
59472
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1390 (cons new-history (delete new-history Info-history-list))) |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1391 (setq Info-history-forward nil)) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
1392 (if (not (eq Info-fontify-maximum-menu-size nil)) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
1393 (Info-fontify-node)) |
50707
692de9e94f6c
new image display support, from janneke
Karl Berry <karl@gnu.org>
parents:
50660
diff
changeset
|
1394 (Info-display-images-node) |
54752
4aa6485ff6e3
(Info-hide-cookies-node): New function.
Juri Linkov <juri@jurta.org>
parents:
54718
diff
changeset
|
1395 (Info-hide-cookies-node) |
29446
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1396 (run-hooks 'Info-selection-hook))))) |
325 | 1397 |
1398 (defun Info-set-mode-line () | |
1399 (setq mode-line-buffer-identification | |
32538
69087927a683
(Info-set-mode-line): Tweak string.
Miles Bader <miles@gnu.org>
parents:
32533
diff
changeset
|
1400 (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
|
1401 (list |
ec12d23c8eea
(Info-set-mode-line): Use `%b' instead of hardwired string "*Info*".
Miles Bader <miles@gnu.org>
parents:
32500
diff
changeset
|
1402 (concat " (" |
ec12d23c8eea
(Info-set-mode-line): Use `%b' instead of hardwired string "*Info*".
Miles Bader <miles@gnu.org>
parents:
32500
diff
changeset
|
1403 (file-name-nondirectory |
ec12d23c8eea
(Info-set-mode-line): Use `%b' instead of hardwired string "*Info*".
Miles Bader <miles@gnu.org>
parents:
32500
diff
changeset
|
1404 (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
|
1405 Info-current-file |
ec12d23c8eea
(Info-set-mode-line): Use `%b' instead of hardwired string "*Info*".
Miles Bader <miles@gnu.org>
parents:
32500
diff
changeset
|
1406 (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
|
1407 ") " |
ec12d23c8eea
(Info-set-mode-line): Use `%b' instead of hardwired string "*Info*".
Miles Bader <miles@gnu.org>
parents:
32500
diff
changeset
|
1408 (or Info-current-node "")))))) |
325 | 1409 |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
1410 ;; Go to an Info node specified with a filename-and-nodename string |
325 | 1411 ;; of the sort that is found in pointers in nodes. |
1412 | |
62822
7f11f471aa34
(Info-goto-node): Revert autoload addition (2004-06-12).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62733
diff
changeset
|
1413 ;; Don't autoload this function: the correct entry point for other packages |
7f11f471aa34
(Info-goto-node): Revert autoload addition (2004-06-12).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62733
diff
changeset
|
1414 ;; to use is `info'. --Stef |
7f11f471aa34
(Info-goto-node): Revert autoload addition (2004-06-12).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62733
diff
changeset
|
1415 ;; ;;;###autoload |
26004
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25878
diff
changeset
|
1416 (defun Info-goto-node (nodename &optional fork) |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
1417 "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
|
1418 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
|
1419 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
|
1420 its sub-files). |
18515f20ccce
(Info-goto-node, Info-menu): Doc fix. Suggested by
Eli Zaretskii <eliz@gnu.org>
parents:
39364
diff
changeset
|
1421 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
|
1422 If FORK is non-nil (interactively with a prefix arg), show the node in |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
1423 a new Info buffer. |
26004
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25878
diff
changeset
|
1424 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
|
1425 (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
|
1426 (info-initialize) |
26004
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25878
diff
changeset
|
1427 (if fork |
29446
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1428 (set-buffer |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1429 (clone-buffer (concat "*info-" (if (stringp fork) fork nodename) "*") t))) |
325 | 1430 (let (filename) |
1431 (string-match "\\s *\\((\\s *\\([^\t)]*\\)\\s *)\\s *\\|\\)\\(.*\\)" | |
1432 nodename) | |
1433 (setq filename (if (= (match-beginning 1) (match-end 1)) | |
1434 "" | |
51735
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1435 (match-string 2 nodename)) |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1436 nodename (match-string 3 nodename)) |
55174
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
1437 (let ((trim (string-match "\\s +\\'" filename))) |
325 | 1438 (if trim (setq filename (substring filename 0 trim)))) |
55174
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
1439 (let ((trim (string-match "\\s +\\'" nodename))) |
325 | 1440 (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
|
1441 (if transient-mark-mode (deactivate-mark)) |
325 | 1442 (Info-find-node (if (equal filename "") nil filename) |
1443 (if (equal nodename "") "Top" nodename)))) | |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
1444 |
22760
e080fa4636c7
(Info-read-node-name-1, Info-read-node-name):
Richard M. Stallman <rms@gnu.org>
parents:
22733
diff
changeset
|
1445 (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
|
1446 |
63065
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1447 (defun Info-read-node-name-2 (string path-and-suffixes action) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1448 "Virtual completion table for file names input in Info node names. |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1449 PATH-AND-SUFFIXES is a pair of lists, (DIRECTORIES . SUFFIXES)." |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1450 (let* ((names nil) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1451 (suffixes (remove "" (cdr path-and-suffixes))) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1452 (suffix (concat (regexp-opt suffixes t) "\\'")) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1453 (string-dir (file-name-directory string)) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1454 (dirs |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1455 (if (file-name-absolute-p string) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1456 (list (file-name-directory string)) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1457 (car path-and-suffixes)))) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1458 (dolist (dir dirs) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1459 (unless dir |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1460 (setq dir default-directory)) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1461 (if string-dir (setq dir (expand-file-name string-dir dir))) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1462 (when (file-directory-p dir) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1463 (dolist (file (file-name-all-completions |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1464 (file-name-nondirectory string) dir)) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1465 ;; If the file name has no suffix or a standard suffix, |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1466 ;; include it. |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1467 (and (or (null (file-name-extension file)) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1468 (string-match suffix file)) |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
1469 ;; But exclude subfiles of split Info files. |
63065
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1470 (not (string-match "-[0-9]+\\'" file)) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1471 ;; And exclude backup files. |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1472 (not (string-match "~\\'" file)) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1473 (push (if string-dir (concat string-dir file) file) names)) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1474 ;; If the file name ends in a standard suffix, |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1475 ;; add the unsuffixed name as a completion option. |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1476 (when (string-match suffix file) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1477 (setq file (substring file 0 (match-beginning 0))) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1478 (push (if string-dir (concat string-dir file) file) names))))) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1479 (cond |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1480 ((eq action t) (all-completions string names)) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1481 ((null action) (try-completion string names)) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1482 (t (test-completion string names))))) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1483 |
12779
5b3d83e51b91
(Info-read-node-name-1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12646
diff
changeset
|
1484 ;; 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
|
1485 ;; 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
|
1486 ;; 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
|
1487 (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
|
1488 (cond |
a590e8ab89d0
(Info-find-in-tag-table-1, Info-read-subfile): Use point-min.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44902
diff
changeset
|
1489 ;; 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
|
1490 ((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
|
1491 (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
|
1492 (cond |
a590e8ab89d0
(Info-find-in-tag-table-1, Info-read-subfile): Use point-min.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44902
diff
changeset
|
1493 ((eq code nil) |
63065
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1494 (let ((comp (try-completion file 'Info-read-node-name-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
|
1495 (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
|
1496 (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
|
1497 (cond |
a590e8ab89d0
(Info-find-in-tag-table-1, Info-read-subfile): Use point-min.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44902
diff
changeset
|
1498 ((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
|
1499 (comp (concat "(" comp))))) |
63065
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1500 ((eq code t) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1501 (all-completions file 'Info-read-node-name-2 |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1502 (cons Info-directory-list |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1503 (mapcar 'car Info-suffix-list)))) |
45014
a590e8ab89d0
(Info-find-in-tag-table-1, Info-read-subfile): Use point-min.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44902
diff
changeset
|
1504 (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
|
1505 ;; 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
|
1506 ((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
|
1507 (cond |
a590e8ab89d0
(Info-find-in-tag-table-1, Info-read-subfile): Use point-min.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44902
diff
changeset
|
1508 ((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
|
1509 ((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
|
1510 (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
|
1511 ;; 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
|
1512 ((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
|
1513 (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
|
1514 ((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
|
1515 (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
|
1516 (t |
a590e8ab89d0
(Info-find-in-tag-table-1, Info-read-subfile): Use point-min.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44902
diff
changeset
|
1517 (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
|
1518 |
63065
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1519 ;; Arrange to highlight the proper letters in the completion list buffer. |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1520 (put 'Info-read-node-name-1 'completion-base-size-function |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1521 (lambda () 1)) |
58dcb71db77b
(Info-read-node-name-2): New function.
Richard M. Stallman <rms@gnu.org>
parents:
63055
diff
changeset
|
1522 |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
1523 (defun Info-read-node-name (prompt &optional default) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
1524 (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
|
1525 (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
|
1526 (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
|
1527 (if (equal nodename "") |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
1528 (or default |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
1529 (Info-read-node-name prompt)) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
1530 nodename))) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
1531 |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
1532 (defun Info-build-node-completions () |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
1533 (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
|
1534 (let ((compl nil) |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
1535 ;; 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
|
1536 (case-fold-search t) |
950f2c278c9a
(Info-node-at-bob-matching): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
23904
diff
changeset
|
1537 (node-regexp "Node: *\\([^,\n]*\\) *[,\n\t]")) |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
1538 (save-excursion |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
1539 (save-restriction |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
1540 (if (marker-buffer Info-tag-table-marker) |
16981
643e0f90e153
Handle multiple Info buffers.
Richard M. Stallman <rms@gnu.org>
parents:
16790
diff
changeset
|
1541 (let ((marker Info-tag-table-marker)) |
643e0f90e153
Handle multiple Info buffers.
Richard M. Stallman <rms@gnu.org>
parents:
16790
diff
changeset
|
1542 (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
|
1543 (widen) |
16981
643e0f90e153
Handle multiple Info buffers.
Richard M. Stallman <rms@gnu.org>
parents:
16790
diff
changeset
|
1544 (goto-char marker) |
29621 | 1545 (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
|
1546 (setq compl |
29621 | 1547 (cons (list (match-string-no-properties 2)) |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
1548 compl)))) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
1549 (widen) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
1550 (goto-char (point-min)) |
23923
950f2c278c9a
(Info-node-at-bob-matching): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
23904
diff
changeset
|
1551 ;; 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
|
1552 (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
|
1553 (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
|
1554 ;; Now for the rest of the nodes. |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
1555 (while (search-forward "\n\^_" nil t) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
1556 (forward-line 1) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
1557 (let ((beg (point))) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
1558 (forward-line 1) |
23923
950f2c278c9a
(Info-node-at-bob-matching): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
23904
diff
changeset
|
1559 (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
|
1560 (setq compl |
26580
d779cb4aa2ae
(Info-build-node-completions, Info-search, Info-follow-reference)
Dave Love <fx@gnu.org>
parents:
26172
diff
changeset
|
1561 (cons (list (match-string-no-properties 1)) |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
1562 compl)))))))) |
26172
ac446cf94d51
(Info-build-node-completions): Add '("*") to the
Gerd Moellmann <gerd@gnu.org>
parents:
26004
diff
changeset
|
1563 (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
|
1564 (set (make-local-variable 'Info-current-file-completions) compl)))) |
325 | 1565 |
540 | 1566 (defun Info-restore-point (hl) |
1567 "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
|
1568 (while hl |
32df2b4d67cf
(Info-build-node-completions): Add a call to widen.
Richard M. Stallman <rms@gnu.org>
parents:
5555
diff
changeset
|
1569 (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
|
1570 ;; 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
|
1571 (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
|
1572 (progn |
6121
a9caf92da1d3
(Info-restore-point): Don't wipe out hl before using it.
Karl Heuer <kwzh@gnu.org>
parents:
6049
diff
changeset
|
1573 (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
|
1574 (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
|
1575 (setq hl (cdr hl))))) |
540 | 1576 |
30109
310914da7811
(Info-last-search): Variable removed.
Gerd Moellmann <gerd@gnu.org>
parents:
30020
diff
changeset
|
1577 (defvar Info-search-history nil |
310914da7811
(Info-last-search): Variable removed.
Gerd Moellmann <gerd@gnu.org>
parents:
30020
diff
changeset
|
1578 "The history list for `Info-search'.") |
325 | 1579 |
54754 | 1580 (defvar Info-search-case-fold nil |
1581 "The value of `case-fold-search' from previous `Info-search' command.") | |
1582 | |
56866
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1583 (defun Info-search (regexp &optional bound noerror count direction) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1584 "Search for REGEXP, starting from point, and select node it's found in. |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1585 If DIRECTION is `backward', search in the reverse direction." |
35136
1eb26b81ece0
(Info-search): Print the default as part of the prompt.
Eli Zaretskii <eliz@gnu.org>
parents:
35112
diff
changeset
|
1586 (interactive (list (read-string |
1eb26b81ece0
(Info-search): Print the default as part of the prompt.
Eli Zaretskii <eliz@gnu.org>
parents:
35112
diff
changeset
|
1587 (if Info-search-history |
65680
ed770a0a7846
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents:
65069
diff
changeset
|
1588 (format "Regexp search%s (default %s): " |
ed770a0a7846
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents:
65069
diff
changeset
|
1589 (if case-fold-search "" " case-sensitively") |
35136
1eb26b81ece0
(Info-search): Print the default as part of the prompt.
Eli Zaretskii <eliz@gnu.org>
parents:
35112
diff
changeset
|
1590 (car Info-search-history)) |
54754 | 1591 (format "Regexp search%s: " |
65680
ed770a0a7846
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents:
65069
diff
changeset
|
1592 (if case-fold-search "" " case-sensitively"))) |
35136
1eb26b81ece0
(Info-search): Print the default as part of the prompt.
Eli Zaretskii <eliz@gnu.org>
parents:
35112
diff
changeset
|
1593 nil 'Info-search-history))) |
30109
310914da7811
(Info-last-search): Variable removed.
Gerd Moellmann <gerd@gnu.org>
parents:
30020
diff
changeset
|
1594 (when transient-mark-mode |
310914da7811
(Info-last-search): Variable removed.
Gerd Moellmann <gerd@gnu.org>
parents:
30020
diff
changeset
|
1595 (deactivate-mark)) |
310914da7811
(Info-last-search): Variable removed.
Gerd Moellmann <gerd@gnu.org>
parents:
30020
diff
changeset
|
1596 (when (equal regexp "") |
310914da7811
(Info-last-search): Variable removed.
Gerd Moellmann <gerd@gnu.org>
parents:
30020
diff
changeset
|
1597 (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
|
1598 (when regexp |
51805
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1599 (let (found beg-found give-up |
56866
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1600 (backward (eq direction 'backward)) |
24963
a78f0c2654d6
(Info-search): Don't lose with empty regexp.
Dave Love <fx@gnu.org>
parents:
24632
diff
changeset
|
1601 (onode Info-current-node) |
a78f0c2654d6
(Info-search): Don't lose with empty regexp.
Dave Love <fx@gnu.org>
parents:
24632
diff
changeset
|
1602 (ofile Info-current-file) |
a78f0c2654d6
(Info-search): Don't lose with empty regexp.
Dave Love <fx@gnu.org>
parents:
24632
diff
changeset
|
1603 (opoint (point)) |
56866
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1604 (opoint-min (point-min)) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1605 (opoint-max (point-max)) |
24963
a78f0c2654d6
(Info-search): Don't lose with empty regexp.
Dave Love <fx@gnu.org>
parents:
24632
diff
changeset
|
1606 (ostart (window-start)) |
a78f0c2654d6
(Info-search): Don't lose with empty regexp.
Dave Love <fx@gnu.org>
parents:
24632
diff
changeset
|
1607 (osubfile Info-current-subfile)) |
54754 | 1608 (setq Info-search-case-fold case-fold-search) |
24963
a78f0c2654d6
(Info-search): Don't lose with empty regexp.
Dave Love <fx@gnu.org>
parents:
24632
diff
changeset
|
1609 (save-excursion |
a78f0c2654d6
(Info-search): Don't lose with empty regexp.
Dave Love <fx@gnu.org>
parents:
24632
diff
changeset
|
1610 (save-restriction |
a78f0c2654d6
(Info-search): Don't lose with empty regexp.
Dave Love <fx@gnu.org>
parents:
24632
diff
changeset
|
1611 (widen) |
57958
117144126cd9
(Info-search): Don't search in node header lines and file headers.
Juri Linkov <juri@jurta.org>
parents:
57770
diff
changeset
|
1612 (when backward |
117144126cd9
(Info-search): Don't search in node header lines and file headers.
Juri Linkov <juri@jurta.org>
parents:
57770
diff
changeset
|
1613 ;; Hide Info file header for backward search |
117144126cd9
(Info-search): Don't search in node header lines and file headers.
Juri Linkov <juri@jurta.org>
parents:
57770
diff
changeset
|
1614 (narrow-to-region (save-excursion |
117144126cd9
(Info-search): Don't search in node header lines and file headers.
Juri Linkov <juri@jurta.org>
parents:
57770
diff
changeset
|
1615 (goto-char (point-min)) |
117144126cd9
(Info-search): Don't search in node header lines and file headers.
Juri Linkov <juri@jurta.org>
parents:
57770
diff
changeset
|
1616 (search-forward "\n\^_") |
117144126cd9
(Info-search): Don't search in node header lines and file headers.
Juri Linkov <juri@jurta.org>
parents:
57770
diff
changeset
|
1617 (1- (point))) |
117144126cd9
(Info-search): Don't search in node header lines and file headers.
Juri Linkov <juri@jurta.org>
parents:
57770
diff
changeset
|
1618 (point-max))) |
51805
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1619 (while (and (not give-up) |
58152
f3726ecfee76
(Info-search): Save match data for isearch. Skip Tag Table node.
Juri Linkov <juri@jurta.org>
parents:
58040
diff
changeset
|
1620 (save-match-data |
f3726ecfee76
(Info-search): Save match data for isearch. Skip Tag Table node.
Juri Linkov <juri@jurta.org>
parents:
58040
diff
changeset
|
1621 (or (null found) |
f3726ecfee76
(Info-search): Save match data for isearch. Skip Tag Table node.
Juri Linkov <juri@jurta.org>
parents:
58040
diff
changeset
|
1622 (if backward |
f3726ecfee76
(Info-search): Save match data for isearch. Skip Tag Table node.
Juri Linkov <juri@jurta.org>
parents:
58040
diff
changeset
|
1623 (isearch-range-invisible found beg-found) |
f3726ecfee76
(Info-search): Save match data for isearch. Skip Tag Table node.
Juri Linkov <juri@jurta.org>
parents:
58040
diff
changeset
|
1624 (isearch-range-invisible beg-found found)) |
f3726ecfee76
(Info-search): Save match data for isearch. Skip Tag Table node.
Juri Linkov <juri@jurta.org>
parents:
58040
diff
changeset
|
1625 ;; Skip node header line |
58604
a227196e4498
(Info-search-whitespace-regexp): Remove shy group.
Juri Linkov <juri@jurta.org>
parents:
58350
diff
changeset
|
1626 (and (save-excursion (forward-line -1) |
a227196e4498
(Info-search-whitespace-regexp): Remove shy group.
Juri Linkov <juri@jurta.org>
parents:
58350
diff
changeset
|
1627 (looking-at "\^_")) |
60577
1bfdd67c0337
(Info-search): Four fixes for backward search.
Juri Linkov <juri@jurta.org>
parents:
60524
diff
changeset
|
1628 (forward-line (if backward -1 1))) |
58152
f3726ecfee76
(Info-search): Save match data for isearch. Skip Tag Table node.
Juri Linkov <juri@jurta.org>
parents:
58040
diff
changeset
|
1629 ;; Skip Tag Table node |
f3726ecfee76
(Info-search): Save match data for isearch. Skip Tag Table node.
Juri Linkov <juri@jurta.org>
parents:
58040
diff
changeset
|
1630 (save-excursion |
f3726ecfee76
(Info-search): Save match data for isearch. Skip Tag Table node.
Juri Linkov <juri@jurta.org>
parents:
58040
diff
changeset
|
1631 (and (search-backward "\^_" nil t) |
f3726ecfee76
(Info-search): Save match data for isearch. Skip Tag Table node.
Juri Linkov <juri@jurta.org>
parents:
58040
diff
changeset
|
1632 (looking-at "\^_\nTag Table")))))) |
58604
a227196e4498
(Info-search-whitespace-regexp): Remove shy group.
Juri Linkov <juri@jurta.org>
parents:
58350
diff
changeset
|
1633 (let ((search-spaces-regexp Info-search-whitespace-regexp)) |
58331
c11ef32aabb7
(Info-search): Use search-whitespace-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
58152
diff
changeset
|
1634 (if (if backward |
c11ef32aabb7
(Info-search): Use search-whitespace-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
58152
diff
changeset
|
1635 (re-search-backward regexp bound t) |
c11ef32aabb7
(Info-search): Use search-whitespace-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
58152
diff
changeset
|
1636 (re-search-forward regexp bound t)) |
c11ef32aabb7
(Info-search): Use search-whitespace-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
58152
diff
changeset
|
1637 (setq found (point) beg-found (if backward (match-end 0) |
c11ef32aabb7
(Info-search): Use search-whitespace-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
58152
diff
changeset
|
1638 (match-beginning 0))) |
c11ef32aabb7
(Info-search): Use search-whitespace-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
58152
diff
changeset
|
1639 (setq give-up t)))))) |
60615
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1640 |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1641 (when (and isearch-mode Info-isearch-search |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1642 (not Info-isearch-initial-node) |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1643 (not bound) |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1644 (or give-up (and found (not (and (> found opoint-min) |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1645 (< found opoint-max)))))) |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1646 (signal 'search-failed (list regexp "initial node"))) |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1647 |
51805
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1648 ;; If no subfiles, give error now. |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1649 (if give-up |
24963
a78f0c2654d6
(Info-search): Don't lose with empty regexp.
Dave Love <fx@gnu.org>
parents:
24632
diff
changeset
|
1650 (if (null Info-current-subfile) |
58604
a227196e4498
(Info-search-whitespace-regexp): Remove shy group.
Juri Linkov <juri@jurta.org>
parents:
58350
diff
changeset
|
1651 (let ((search-spaces-regexp Info-search-whitespace-regexp)) |
a227196e4498
(Info-search-whitespace-regexp): Remove shy group.
Juri Linkov <juri@jurta.org>
parents:
58350
diff
changeset
|
1652 (if backward |
a227196e4498
(Info-search-whitespace-regexp): Remove shy group.
Juri Linkov <juri@jurta.org>
parents:
58350
diff
changeset
|
1653 (re-search-backward regexp) |
a227196e4498
(Info-search-whitespace-regexp): Remove shy group.
Juri Linkov <juri@jurta.org>
parents:
58350
diff
changeset
|
1654 (re-search-forward regexp))) |
51805
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1655 (setq found nil))) |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1656 |
60615
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1657 (if (and bound (not found)) |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1658 (signal 'search-failed (list regexp))) |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1659 |
56866
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1660 (unless (or found bound) |
51805
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1661 (unwind-protect |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1662 ;; Try other subfiles. |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1663 (let ((list ())) |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1664 (save-excursion |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1665 (set-buffer (marker-buffer Info-tag-table-marker)) |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1666 (goto-char (point-min)) |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1667 (search-forward "\n\^_\nIndirect:") |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1668 (save-restriction |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1669 (narrow-to-region (point) |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1670 (progn (search-forward "\n\^_") |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1671 (1- (point)))) |
16981
643e0f90e153
Handle multiple Info buffers.
Richard M. Stallman <rms@gnu.org>
parents:
16790
diff
changeset
|
1672 (goto-char (point-min)) |
51805
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1673 ;; Find the subfile we just searched. |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1674 (search-forward (concat "\n" osubfile ": ")) |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1675 ;; Skip that one. |
56866
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1676 (forward-line (if backward 0 1)) |
60577
1bfdd67c0337
(Info-search): Four fixes for backward search.
Juri Linkov <juri@jurta.org>
parents:
60524
diff
changeset
|
1677 (if backward (forward-char -1)) |
51805
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1678 ;; Make a list of all following subfiles. |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1679 ;; Each elt has the form (VIRT-POSITION . SUBFILENAME). |
56866
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1680 (while (not (if backward (bobp) (eobp))) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1681 (if backward |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1682 (re-search-backward "\\(^.*\\): [0-9]+$") |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1683 (re-search-forward "\\(^.*\\): [0-9]+$")) |
51805
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1684 (goto-char (+ (match-end 1) 2)) |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1685 (setq list (cons (cons (+ (point-min) |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1686 (read (current-buffer))) |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1687 (match-string-no-properties 1)) |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1688 list)) |
56866
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1689 (goto-char (if backward |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1690 (1- (match-beginning 0)) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1691 (1+ (match-end 0))))) |
51805
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1692 ;; Put in forward order |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1693 (setq list (nreverse list)))) |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1694 (while list |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1695 (message "Searching subfile %s..." (cdr (car list))) |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1696 (Info-read-subfile (car (car list))) |
57958
117144126cd9
(Info-search): Don't search in node header lines and file headers.
Juri Linkov <juri@jurta.org>
parents:
57770
diff
changeset
|
1697 (when backward |
117144126cd9
(Info-search): Don't search in node header lines and file headers.
Juri Linkov <juri@jurta.org>
parents:
57770
diff
changeset
|
1698 ;; Hide Info file header for backward search |
117144126cd9
(Info-search): Don't search in node header lines and file headers.
Juri Linkov <juri@jurta.org>
parents:
57770
diff
changeset
|
1699 (narrow-to-region (save-excursion |
117144126cd9
(Info-search): Don't search in node header lines and file headers.
Juri Linkov <juri@jurta.org>
parents:
57770
diff
changeset
|
1700 (goto-char (point-min)) |
117144126cd9
(Info-search): Don't search in node header lines and file headers.
Juri Linkov <juri@jurta.org>
parents:
57770
diff
changeset
|
1701 (search-forward "\n\^_") |
117144126cd9
(Info-search): Don't search in node header lines and file headers.
Juri Linkov <juri@jurta.org>
parents:
57770
diff
changeset
|
1702 (1- (point))) |
117144126cd9
(Info-search): Don't search in node header lines and file headers.
Juri Linkov <juri@jurta.org>
parents:
57770
diff
changeset
|
1703 (point-max)) |
117144126cd9
(Info-search): Don't search in node header lines and file headers.
Juri Linkov <juri@jurta.org>
parents:
57770
diff
changeset
|
1704 (goto-char (point-max))) |
51805
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1705 (setq list (cdr list)) |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1706 (setq give-up nil found nil) |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1707 (while (and (not give-up) |
58152
f3726ecfee76
(Info-search): Save match data for isearch. Skip Tag Table node.
Juri Linkov <juri@jurta.org>
parents:
58040
diff
changeset
|
1708 (save-match-data |
f3726ecfee76
(Info-search): Save match data for isearch. Skip Tag Table node.
Juri Linkov <juri@jurta.org>
parents:
58040
diff
changeset
|
1709 (or (null found) |
f3726ecfee76
(Info-search): Save match data for isearch. Skip Tag Table node.
Juri Linkov <juri@jurta.org>
parents:
58040
diff
changeset
|
1710 (if backward |
f3726ecfee76
(Info-search): Save match data for isearch. Skip Tag Table node.
Juri Linkov <juri@jurta.org>
parents:
58040
diff
changeset
|
1711 (isearch-range-invisible found beg-found) |
f3726ecfee76
(Info-search): Save match data for isearch. Skip Tag Table node.
Juri Linkov <juri@jurta.org>
parents:
58040
diff
changeset
|
1712 (isearch-range-invisible beg-found found)) |
f3726ecfee76
(Info-search): Save match data for isearch. Skip Tag Table node.
Juri Linkov <juri@jurta.org>
parents:
58040
diff
changeset
|
1713 ;; Skip node header line |
58604
a227196e4498
(Info-search-whitespace-regexp): Remove shy group.
Juri Linkov <juri@jurta.org>
parents:
58350
diff
changeset
|
1714 (and (save-excursion (forward-line -1) |
a227196e4498
(Info-search-whitespace-regexp): Remove shy group.
Juri Linkov <juri@jurta.org>
parents:
58350
diff
changeset
|
1715 (looking-at "\^_")) |
60577
1bfdd67c0337
(Info-search): Four fixes for backward search.
Juri Linkov <juri@jurta.org>
parents:
60524
diff
changeset
|
1716 (forward-line (if backward -1 1))) |
58152
f3726ecfee76
(Info-search): Save match data for isearch. Skip Tag Table node.
Juri Linkov <juri@jurta.org>
parents:
58040
diff
changeset
|
1717 ;; Skip Tag Table node |
f3726ecfee76
(Info-search): Save match data for isearch. Skip Tag Table node.
Juri Linkov <juri@jurta.org>
parents:
58040
diff
changeset
|
1718 (save-excursion |
f3726ecfee76
(Info-search): Save match data for isearch. Skip Tag Table node.
Juri Linkov <juri@jurta.org>
parents:
58040
diff
changeset
|
1719 (and (search-backward "\^_" nil t) |
f3726ecfee76
(Info-search): Save match data for isearch. Skip Tag Table node.
Juri Linkov <juri@jurta.org>
parents:
58040
diff
changeset
|
1720 (looking-at "\^_\nTag Table")))))) |
58604
a227196e4498
(Info-search-whitespace-regexp): Remove shy group.
Juri Linkov <juri@jurta.org>
parents:
58350
diff
changeset
|
1721 (let ((search-spaces-regexp Info-search-whitespace-regexp)) |
a227196e4498
(Info-search-whitespace-regexp): Remove shy group.
Juri Linkov <juri@jurta.org>
parents:
58350
diff
changeset
|
1722 (if (if backward |
a227196e4498
(Info-search-whitespace-regexp): Remove shy group.
Juri Linkov <juri@jurta.org>
parents:
58350
diff
changeset
|
1723 (re-search-backward regexp nil t) |
a227196e4498
(Info-search-whitespace-regexp): Remove shy group.
Juri Linkov <juri@jurta.org>
parents:
58350
diff
changeset
|
1724 (re-search-forward regexp nil t)) |
a227196e4498
(Info-search-whitespace-regexp): Remove shy group.
Juri Linkov <juri@jurta.org>
parents:
58350
diff
changeset
|
1725 (setq found (point) beg-found (if backward (match-end 0) |
a227196e4498
(Info-search-whitespace-regexp): Remove shy group.
Juri Linkov <juri@jurta.org>
parents:
58350
diff
changeset
|
1726 (match-beginning 0))) |
a227196e4498
(Info-search-whitespace-regexp): Remove shy group.
Juri Linkov <juri@jurta.org>
parents:
58350
diff
changeset
|
1727 (setq give-up t)))) |
51805
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1728 (if give-up |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1729 (setq found nil)) |
24963
a78f0c2654d6
(Info-search): Don't lose with empty regexp.
Dave Love <fx@gnu.org>
parents:
24632
diff
changeset
|
1730 (if found |
51805
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1731 (setq list nil))) |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1732 (if found |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1733 (message "") |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1734 (signal 'search-failed (list regexp)))) |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1735 (if (not found) |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1736 (progn (Info-read-subfile osubfile) |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1737 (goto-char opoint) |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1738 (Info-select-node) |
7a3de98ae801
(Info-search): If find invisible text, search again.
Richard M. Stallman <rms@gnu.org>
parents:
51784
diff
changeset
|
1739 (set-window-start (selected-window) ostart))))) |
56866
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1740 |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1741 (if (and (string= osubfile Info-current-subfile) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1742 (> found opoint-min) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1743 (< found opoint-max)) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1744 ;; Search landed in the same node |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1745 (goto-char found) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1746 (widen) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1747 (goto-char found) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1748 (save-match-data (Info-select-node))) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1749 |
29446
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1750 ;; 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
|
1751 (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
|
1752 (equal ofile Info-current-file)) |
60577
1bfdd67c0337
(Info-search): Four fixes for backward search.
Juri Linkov <juri@jurta.org>
parents:
60524
diff
changeset
|
1753 (and isearch-mode isearch-wrapped |
1bfdd67c0337
(Info-search): Four fixes for backward search.
Juri Linkov <juri@jurta.org>
parents:
60524
diff
changeset
|
1754 (eq opoint (if isearch-forward opoint-min opoint-max))) |
29446
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
1755 (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
|
1756 Info-history)))))) |
54754 | 1757 |
1758 (defun Info-search-case-sensitively () | |
1759 "Search for a regexp case-sensitively." | |
1760 (interactive) | |
1761 (let ((case-fold-search nil)) | |
1762 (call-interactively 'Info-search))) | |
1763 | |
1764 (defun Info-search-next () | |
1765 "Search for next regexp from a previous `Info-search' command." | |
1766 (interactive) | |
1767 (let ((case-fold-search Info-search-case-fold)) | |
1768 (if Info-search-history | |
1769 (Info-search (car Info-search-history)) | |
1770 (call-interactively 'Info-search)))) | |
56866
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1771 |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1772 (defun Info-search-backward (regexp &optional bound noerror count) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1773 "Search for REGEXP in the reverse direction." |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1774 (interactive (list (read-string |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1775 (if Info-search-history |
65680
ed770a0a7846
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents:
65069
diff
changeset
|
1776 (format "Regexp search%s backward (default %s): " |
ed770a0a7846
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents:
65069
diff
changeset
|
1777 (if case-fold-search "" " case-sensitively") |
56866
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1778 (car Info-search-history)) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1779 (format "Regexp search%s backward: " |
65680
ed770a0a7846
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents:
65069
diff
changeset
|
1780 (if case-fold-search "" " case-sensitively"))) |
56866
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1781 nil 'Info-search-history))) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1782 (Info-search regexp bound noerror count 'backward)) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1783 |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1784 (defun Info-isearch-search () |
60524
d77fe7e90fb5
(Info-isearch-search): Emulate word search in
Juri Linkov <juri@jurta.org>
parents:
60222
diff
changeset
|
1785 (if Info-isearch-search |
60222
56061feffaa0
(Info-isearch-search): New defcustom.
Juri Linkov <juri@jurta.org>
parents:
59996
diff
changeset
|
1786 (lambda (string &optional bound noerror count) |
60615
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1787 (if isearch-word |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1788 (Info-search (concat "\\b" (replace-regexp-in-string |
65069
fc42a1decf2d
(Info-insert-dir): Use save-excursion around insert-buffer-substring.
Juri Linkov <juri@jurta.org>
parents:
64961
diff
changeset
|
1789 "\\W+" "\\W+" |
60615
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1790 (replace-regexp-in-string |
65069
fc42a1decf2d
(Info-insert-dir): Use save-excursion around insert-buffer-substring.
Juri Linkov <juri@jurta.org>
parents:
64961
diff
changeset
|
1791 "^\\W+\\|\\W+$" "" string) |
fc42a1decf2d
(Info-insert-dir): Use save-excursion around insert-buffer-substring.
Juri Linkov <juri@jurta.org>
parents:
64961
diff
changeset
|
1792 nil t) |
fc42a1decf2d
(Info-insert-dir): Use save-excursion around insert-buffer-substring.
Juri Linkov <juri@jurta.org>
parents:
64961
diff
changeset
|
1793 "\\b") |
60615
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1794 bound noerror count |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1795 (unless isearch-forward 'backward)) |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1796 (Info-search (if isearch-regexp string (regexp-quote string)) |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1797 bound noerror count |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1798 (unless isearch-forward 'backward)) |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1799 (point))) |
60222
56061feffaa0
(Info-isearch-search): New defcustom.
Juri Linkov <juri@jurta.org>
parents:
59996
diff
changeset
|
1800 (let ((isearch-search-fun-function nil)) |
56061feffaa0
(Info-isearch-search): New defcustom.
Juri Linkov <juri@jurta.org>
parents:
59996
diff
changeset
|
1801 (isearch-search-fun)))) |
56866
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1802 |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1803 (defun Info-isearch-wrap () |
60615
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1804 (if Info-isearch-search |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1805 (if Info-isearch-initial-node |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1806 (progn |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1807 (if isearch-forward (Info-top-node) (Info-final-node)) |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1808 (goto-char (if isearch-forward (point-min) (point-max)))) |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1809 (setq Info-isearch-initial-node Info-current-node) |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1810 (setq isearch-wrapped nil)) |
56866
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1811 (goto-char (if isearch-forward (point-min) (point-max))))) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1812 |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1813 (defun Info-isearch-push-state () |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1814 `(lambda (cmd) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1815 (Info-isearch-pop-state cmd ,Info-current-file ,Info-current-node))) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1816 |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1817 (defun Info-isearch-pop-state (cmd file node) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1818 (or (and (string= Info-current-file file) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1819 (string= Info-current-node node)) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1820 (progn (Info-find-node file node) (sit-for 0)))) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
1821 |
60615
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1822 (defun Info-isearch-start () |
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
1823 (setq Info-isearch-initial-node nil)) |
325 | 1824 |
1825 (defun Info-extract-pointer (name &optional errorname) | |
29621 | 1826 "Extract the value of the node-pointer named NAME. |
1827 If there is none, use ERRORNAME in the error message; | |
51735
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1828 if ERRORNAME is nil, just return nil." |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1829 ;; 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
|
1830 (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
|
1831 (save-excursion |
51735
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1832 (goto-char (point-min)) |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1833 (let ((bound (point))) |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1834 (forward-line 1) |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1835 (cond ((re-search-backward |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1836 (concat name ":" (Info-following-node-name-re)) bound t) |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1837 (match-string 1)) |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1838 ((not (eq errorname t)) |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1839 (error "Node has no %s" |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1840 (capitalize (or errorname name))))))))) |
325 | 1841 |
51735
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1842 (defun Info-following-node-name-re (&optional allowedchars) |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1843 "Return a regexp matching a node name. |
29621 | 1844 ALLOWEDCHARS, if non-nil, goes within [...] to make a regexp |
51735
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1845 saying which chars may appear in the node name. |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1846 Submatch 1 is the complete node name. |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1847 Submatch 2 if non-nil is the parenthesized file name part of the node name. |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1848 Submatch 3 is the local part of the node name. |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1849 End of submatch 0, 1, and 3 are the same, so you can safely concat." |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1850 (concat "[ \t]*" ;Skip leading space. |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1851 "\\(\\(([^)]+)\\)?" ;Node name can start with a file name. |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1852 "\\([" (or allowedchars "^,\t\n") "]*" ;Any number of allowed chars. |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1853 "[" (or allowedchars "^,\t\n") " ]" ;The last char can't be a space. |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
1854 "\\|\\)\\)")) ;Allow empty node names. |
325 | 1855 |
52756
371ac8b3328e
(Info-following-node-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
52688
diff
changeset
|
1856 ;;; For compatibility; other files have used this name. |
371ac8b3328e
(Info-following-node-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
52688
diff
changeset
|
1857 (defun Info-following-node-name () |
371ac8b3328e
(Info-following-node-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
52688
diff
changeset
|
1858 (and (looking-at (Info-following-node-name-re)) |
371ac8b3328e
(Info-following-node-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
52688
diff
changeset
|
1859 (match-string 1))) |
371ac8b3328e
(Info-following-node-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
52688
diff
changeset
|
1860 |
325 | 1861 (defun Info-next () |
1862 "Go to the next node of this node." | |
1863 (interactive) | |
65825
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1864 ;; In case another window is currently selected |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1865 (save-window-excursion |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1866 (or (eq major-mode 'Info-mode) (pop-to-buffer "*info*")) |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1867 (Info-goto-node (Info-extract-pointer "next")))) |
325 | 1868 |
1869 (defun Info-prev () | |
1870 "Go to the previous node of this node." | |
1871 (interactive) | |
65825
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1872 ;; In case another window is currently selected |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1873 (save-window-excursion |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1874 (or (eq major-mode 'Info-mode) (pop-to-buffer "*info*")) |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1875 (Info-goto-node (Info-extract-pointer "prev[ious]*" "previous")))) |
325 | 1876 |
21910
702383d93b75
(Info-up): New arg SAME-FILE: don't move to different file.
Richard M. Stallman <rms@gnu.org>
parents:
21806
diff
changeset
|
1877 (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
|
1878 "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
|
1879 If SAME-FILE is non-nil, do not move to a different Info file." |
325 | 1880 (interactive) |
65825
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1881 ;; In case another window is currently selected |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1882 (save-window-excursion |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1883 (or (eq major-mode 'Info-mode) (pop-to-buffer "*info*")) |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1884 (let ((old-node Info-current-node) |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1885 (old-file Info-current-file) |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1886 (node (Info-extract-pointer "up")) p) |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1887 (and (or same-file (not (stringp Info-current-file))) |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1888 (string-match "^(" node) |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1889 (error "Up node is in another Info file")) |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1890 (Info-goto-node node) |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1891 (setq p (point)) |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1892 (goto-char (point-min)) |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1893 (if (and (search-forward "\n* Menu:" nil t) |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1894 (re-search-forward |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1895 (if (string-equal old-node "Top") |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1896 (concat "\n\\*[^:]+: +(" (file-name-nondirectory old-file) ")") |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1897 (concat "\n\\* +\\(" (regexp-quote old-node) |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1898 ":\\|[^:]+: +" (regexp-quote old-node) "\\)")) |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1899 nil t)) |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1900 (progn (beginning-of-line) (if (looking-at "^\\* ") (forward-char 2))) |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1901 (goto-char p) |
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
1902 (Info-restore-point Info-history))))) |
325 | 1903 |
59472
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1904 (defun Info-history-back () |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1905 "Go back in the history to the last node visited." |
325 | 1906 (interactive) |
1907 (or Info-history | |
1908 (error "This is the first Info node you looked at")) | |
59472
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1909 (let ((history-forward |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1910 (cons (list Info-current-file Info-current-node (point)) |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1911 Info-history-forward)) |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1912 filename nodename opoint) |
325 | 1913 (setq filename (car (car Info-history))) |
1914 (setq nodename (car (cdr (car Info-history)))) | |
1915 (setq opoint (car (cdr (cdr (car Info-history))))) | |
1916 (setq Info-history (cdr Info-history)) | |
1917 (Info-find-node filename nodename) | |
1918 (setq Info-history (cdr Info-history)) | |
59472
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1919 (setq Info-history-forward history-forward) |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1920 (goto-char opoint))) |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1921 |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1922 (defalias 'Info-last 'Info-history-back) |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1923 |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1924 (defun Info-history-forward () |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1925 "Go forward in the history of visited nodes." |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1926 (interactive) |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1927 (or Info-history-forward |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1928 (error "This is the last Info node you looked at")) |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1929 (let ((history-forward (cdr Info-history-forward)) |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1930 filename nodename opoint) |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1931 (setq filename (car (car Info-history-forward))) |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1932 (setq nodename (car (cdr (car Info-history-forward)))) |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1933 (setq opoint (car (cdr (cdr (car Info-history-forward))))) |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1934 (Info-find-node filename nodename) |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
1935 (setq Info-history-forward history-forward) |
325 | 1936 (goto-char opoint))) |
1937 | |
28558 | 1938 ;;;###autoload |
325 | 1939 (defun Info-directory () |
1940 "Go to the Info directory node." | |
1941 (interactive) | |
1942 (Info-find-node "dir" "top")) | |
1943 | |
54754 | 1944 (defun Info-history () |
55074 | 1945 "Go to a node with a menu of visited nodes." |
54754 | 1946 (interactive) |
1947 (let ((curr-file Info-current-file) | |
1948 (curr-node Info-current-node) | |
1949 p) | |
55074 | 1950 (with-current-buffer (get-buffer-create " *info-history*") |
1951 (let ((inhibit-read-only t)) | |
1952 (erase-buffer) | |
1953 (goto-char (point-min)) | |
57329
52649ba67540
(Info-history, Info-toc): Fix Info headers.
Juri Linkov <juri@jurta.org>
parents:
56991
diff
changeset
|
1954 (insert "\n\^_\nFile: history, Node: Top, Up: (dir)\n\n") |
55074 | 1955 (insert "Recently Visited Nodes\n**********************\n\n") |
1956 (insert "* Menu:\n\n") | |
1957 (let ((hl (delete '("history" "Top") Info-history-list))) | |
1958 (while hl | |
1959 (let ((file (nth 0 (car hl))) | |
1960 (node (nth 1 (car hl)))) | |
1961 (if (and (string-equal file curr-file) | |
1962 (string-equal node curr-node)) | |
1963 (setq p (point))) | |
66604
8c3381fde2cc
(Info-fontify-node): Downcase node header keywords Node,
Juri Linkov <juri@jurta.org>
parents:
66602
diff
changeset
|
1964 (insert "* " node ": (" |
8c3381fde2cc
(Info-fontify-node): Downcase node header keywords Node,
Juri Linkov <juri@jurta.org>
parents:
66602
diff
changeset
|
1965 (propertize (or (file-name-directory file) "") 'invisible t) |
8c3381fde2cc
(Info-fontify-node): Downcase node header keywords Node,
Juri Linkov <juri@jurta.org>
parents:
66602
diff
changeset
|
1966 (file-name-nondirectory file) |
55074 | 1967 ")" node ".\n")) |
1968 (setq hl (cdr hl)))))) | |
1969 (Info-find-node "history" "Top") | |
54754 | 1970 (goto-char (or p (point-min))))) |
1971 | |
1972 (defun Info-toc () | |
56044
7aad97855e39
(Info-goto-node): Add autoload.
Juri Linkov <juri@jurta.org>
parents:
55797
diff
changeset
|
1973 "Go to a node with table of contents of the current Info file. |
7aad97855e39
(Info-goto-node): Add autoload.
Juri Linkov <juri@jurta.org>
parents:
55797
diff
changeset
|
1974 Table of contents is created from the tree structure of menus." |
54754 | 1975 (interactive) |
57329
52649ba67540
(Info-history, Info-toc): Fix Info headers.
Juri Linkov <juri@jurta.org>
parents:
56991
diff
changeset
|
1976 (let ((curr-file (substring-no-properties Info-current-file)) |
52649ba67540
(Info-history, Info-toc): Fix Info headers.
Juri Linkov <juri@jurta.org>
parents:
56991
diff
changeset
|
1977 (curr-node (substring-no-properties Info-current-node)) |
54754 | 1978 p) |
55074 | 1979 (with-current-buffer (get-buffer-create " *info-toc*") |
1980 (let ((inhibit-read-only t) | |
1981 (node-list (Info-build-toc curr-file))) | |
1982 (erase-buffer) | |
1983 (goto-char (point-min)) | |
57329
52649ba67540
(Info-history, Info-toc): Fix Info headers.
Juri Linkov <juri@jurta.org>
parents:
56991
diff
changeset
|
1984 (insert "\n\^_\nFile: toc, Node: Top, Up: (dir)\n\n") |
55074 | 1985 (insert "Table of Contents\n*****************\n\n") |
57329
52649ba67540
(Info-history, Info-toc): Fix Info headers.
Juri Linkov <juri@jurta.org>
parents:
56991
diff
changeset
|
1986 (insert "*Note Top: (" curr-file ")Top.\n") |
55074 | 1987 (Info-insert-toc |
1988 (nth 2 (assoc "Top" node-list)) ; get Top nodes | |
57329
52649ba67540
(Info-history, Info-toc): Fix Info headers.
Juri Linkov <juri@jurta.org>
parents:
56991
diff
changeset
|
1989 node-list 0 curr-file)) |
55074 | 1990 (if (not (bobp)) |
1991 (let ((Info-hide-note-references 'hide) | |
1992 (Info-fontify-visited-nodes nil)) | |
55774
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
1993 (Info-mode) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
1994 (setq Info-current-file "toc" Info-current-node "Top") |
57329
52649ba67540
(Info-history, Info-toc): Fix Info headers.
Juri Linkov <juri@jurta.org>
parents:
56991
diff
changeset
|
1995 (goto-char (point-min)) |
52649ba67540
(Info-history, Info-toc): Fix Info headers.
Juri Linkov <juri@jurta.org>
parents:
56991
diff
changeset
|
1996 (narrow-to-region (or (re-search-forward "\n[\^_\f]\n" nil t) |
52649ba67540
(Info-history, Info-toc): Fix Info headers.
Juri Linkov <juri@jurta.org>
parents:
56991
diff
changeset
|
1997 (point-min)) |
52649ba67540
(Info-history, Info-toc): Fix Info headers.
Juri Linkov <juri@jurta.org>
parents:
56991
diff
changeset
|
1998 (point-max)) |
52649ba67540
(Info-history, Info-toc): Fix Info headers.
Juri Linkov <juri@jurta.org>
parents:
56991
diff
changeset
|
1999 (Info-fontify-node) |
52649ba67540
(Info-history, Info-toc): Fix Info headers.
Juri Linkov <juri@jurta.org>
parents:
56991
diff
changeset
|
2000 (widen))) |
55074 | 2001 (goto-char (point-min)) |
2002 (if (setq p (search-forward (concat "*Note " curr-node ":") nil t)) | |
2003 (setq p (- p (length curr-node) 2)))) | |
2004 (Info-find-node "toc" "Top") | |
54754 | 2005 (goto-char (or p (point-min))))) |
2006 | |
55074 | 2007 (defun Info-insert-toc (nodes node-list level curr-file) |
54754 | 2008 "Insert table of contents with references to nodes." |
2009 (let ((section "Top")) | |
2010 (while nodes | |
2011 (let ((node (assoc (car nodes) node-list))) | |
2012 (unless (member (nth 1 node) (list nil section)) | |
2013 (insert (setq section (nth 1 node)) "\n")) | |
2014 (insert (make-string level ?\t)) | |
55074 | 2015 (insert "*Note " (car nodes) ": (" curr-file ")" (car nodes) ".\n") |
2016 (Info-insert-toc (nth 2 node) node-list (1+ level) curr-file) | |
54754 | 2017 (setq nodes (cdr nodes)))))) |
2018 | |
2019 (defun Info-build-toc (file) | |
2020 "Build table of contents from menus of Info FILE and its subfiles." | |
2021 (with-temp-buffer | |
57329
52649ba67540
(Info-history, Info-toc): Fix Info headers.
Juri Linkov <juri@jurta.org>
parents:
56991
diff
changeset
|
2022 (let* ((file (and (stringp file) (Info-find-file file))) |
52649ba67540
(Info-history, Info-toc): Fix Info headers.
Juri Linkov <juri@jurta.org>
parents:
56991
diff
changeset
|
2023 (default-directory (or (and (stringp file) |
52649ba67540
(Info-history, Info-toc): Fix Info headers.
Juri Linkov <juri@jurta.org>
parents:
56991
diff
changeset
|
2024 (file-name-directory file)) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2025 default-directory)) |
57329
52649ba67540
(Info-history, Info-toc): Fix Info headers.
Juri Linkov <juri@jurta.org>
parents:
56991
diff
changeset
|
2026 (main-file (and (stringp file) file)) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2027 (sections '(("Top" "Top"))) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2028 nodes subfiles) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2029 (while (or main-file subfiles) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2030 (or main-file (message "Searching subfile %s..." (car subfiles))) |
54754 | 2031 (erase-buffer) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2032 (info-insert-file-contents (or main-file (car subfiles))) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2033 (goto-char (point-min)) |
54754 | 2034 (while (and (search-forward "\n\^_\nFile:" nil 'move) |
2035 (search-forward "Node: " nil 'move)) | |
2036 (let ((nodename (substring-no-properties (Info-following-node-name))) | |
2037 (bound (- (or (save-excursion (search-forward "\n\^_" nil t)) | |
2038 (point-max)) 2)) | |
2039 (section "Top") | |
2040 menu-items) | |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2041 (when (and (not (Info-index-node nodename file)) |
54754 | 2042 (re-search-forward "^\\* Menu:" bound t)) |
2043 (forward-line 1) | |
2044 (beginning-of-line) | |
2045 (setq bound (or (and (equal nodename "Top") | |
2046 (save-excursion | |
2047 (re-search-forward | |
2048 "^[ \t-]*The Detailed Node Listing" nil t))) | |
2049 bound)) | |
2050 (while (< (point) bound) | |
2051 (cond | |
2052 ;; Menu item line | |
2053 ((looking-at "^\\* +[^:]+:") | |
2054 (beginning-of-line) | |
2055 (forward-char 2) | |
2056 (let ((menu-node-name (substring-no-properties | |
2057 (Info-extract-menu-node-name)))) | |
2058 (setq menu-items (cons menu-node-name menu-items)) | |
2059 (if (equal nodename "Top") | |
2060 (setq sections | |
2061 (cons (list menu-node-name section) sections))))) | |
2062 ;; Other non-empty strings in the Top node are section names | |
2063 ((and (equal nodename "Top") | |
2064 (looking-at "^\\([^ \t\n*=.-][^:\n]*\\)")) | |
2065 (setq section (match-string-no-properties 1)))) | |
2066 (forward-line 1) | |
2067 (beginning-of-line))) | |
2068 (setq nodes (cons (list nodename | |
2069 (cadr (assoc nodename sections)) | |
2070 (nreverse menu-items)) | |
2071 nodes)) | |
2072 (goto-char bound))) | |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2073 (if main-file |
54754 | 2074 (save-excursion |
2075 (goto-char (point-min)) | |
2076 (if (search-forward "\n\^_\nIndirect:" nil t) | |
2077 (let ((bound (save-excursion (search-forward "\n\^_" nil t)))) | |
2078 (while (re-search-forward "^\\(.*\\): [0-9]+$" bound t) | |
2079 (setq subfiles (cons (match-string-no-properties 1) | |
2080 subfiles))))) | |
2081 (setq subfiles (nreverse subfiles) | |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2082 main-file nil)) |
54754 | 2083 (setq subfiles (cdr subfiles)))) |
2084 (message "") | |
2085 (nreverse nodes)))) | |
2086 | |
2087 (defun Info-follow-reference (footnotename &optional fork) | |
29621 | 2088 "Follow cross reference named FOOTNOTENAME to the node it refers to. |
54754 | 2089 FOOTNOTENAME may be an abbreviation of the reference name. |
2090 If FORK is non-nil (interactively with a prefix arg), show the node in | |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2091 a new Info buffer. If FORK is a string, it is the name to use for the |
54754 | 2092 new buffer." |
325 | 2093 (interactive |
2094 (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
|
2095 (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
|
2096 completions default alt-default (start-point (point)) str i bol eol) |
325 | 2097 (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
|
2098 ;; 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
|
2099 (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
|
2100 (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
|
2101 (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
|
2102 (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
|
2103 |
325 | 2104 (goto-char (point-min)) |
54754 | 2105 (while (re-search-forward "\\*note[ \n\t]+\\([^:]*\\):" nil t) |
51735
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
2106 (setq str (match-string-no-properties 1)) |
325 | 2107 ;; See if this one should be the default. |
2108 (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
|
2109 (<= (match-beginning 0) start-point) |
325 | 2110 (<= start-point (point)) |
2111 (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
|
2112 ;; 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
|
2113 (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
|
2114 (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
|
2115 (<= (point) eol)) |
38f8bfd91cca
(Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents:
5482
diff
changeset
|
2116 (setq alt-default t)) |
325 | 2117 (setq i 0) |
2118 (while (setq i (string-match "[ \n\t]+" str i)) | |
2119 (setq str (concat (substring str 0 i) " " | |
2120 (substring str (match-end 0)))) | |
2121 (setq i (1+ i))) | |
2122 ;; Record as a completion and perhaps as default. | |
2123 (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
|
2124 (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
|
2125 ;; Don't add this string if it's a duplicate. |
51735
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
2126 (or (assoc-string str completions t) |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
2127 (push str completions)))) |
5555
38f8bfd91cca
(Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents:
5482
diff
changeset
|
2128 ;; 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
|
2129 (or default |
38f8bfd91cca
(Info-follow-reference): If point is not in middle of a
Richard M. Stallman <rms@gnu.org>
parents:
5482
diff
changeset
|
2130 (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
|
2131 ;; 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
|
2132 (if (eq (length completions) 1) |
51735
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
2133 (setq default (car completions))) |
325 | 2134 (if completions |
3565
bd87ecca04f6
(Info-follow-reference): Fix completion defaulting.
Richard M. Stallman <rms@gnu.org>
parents:
3451
diff
changeset
|
2135 (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
|
2136 (concat |
65680
ed770a0a7846
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents:
65069
diff
changeset
|
2137 "Follow reference named (default " |
ed770a0a7846
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents:
65069
diff
changeset
|
2138 default "): ") |
3565
bd87ecca04f6
(Info-follow-reference): Fix completion defaulting.
Richard M. Stallman <rms@gnu.org>
parents:
3451
diff
changeset
|
2139 "Follow reference named: ") |
bd87ecca04f6
(Info-follow-reference): Fix completion defaulting.
Richard M. Stallman <rms@gnu.org>
parents:
3451
diff
changeset
|
2140 completions nil t))) |
bd87ecca04f6
(Info-follow-reference): Fix completion defaulting.
Richard M. Stallman <rms@gnu.org>
parents:
3451
diff
changeset
|
2141 (list (if (equal input "") |
54754 | 2142 default input) current-prefix-arg)) |
325 | 2143 (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
|
2144 |
10ad03c5d326
(Info-follow-reference): Nice error msg if there was no arg.
Richard M. Stallman <rms@gnu.org>
parents:
23019
diff
changeset
|
2145 (unless footnotename |
10ad03c5d326
(Info-follow-reference): Nice error msg if there was no arg.
Richard M. Stallman <rms@gnu.org>
parents:
23019
diff
changeset
|
2146 (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
|
2147 |
51434
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
2148 (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
|
2149 (case-fold-search t)) |
325 | 2150 (while (setq i (string-match " " str i)) |
2151 (setq str (concat (substring str 0 i) "[ \t\n]+" (substring str (1+ i)))) | |
2152 (setq i (+ i 6))) | |
2153 (save-excursion | |
54754 | 2154 ;; Move point to the beginning of reference if point is on reference |
2155 (or (looking-at "\\*note[ \n\t]+") | |
2156 (and (looking-back "\\*note[ \n\t]+") | |
2157 (goto-char (match-beginning 0))) | |
2158 (if (and (save-excursion | |
2159 (goto-char (+ (point) 5)) ; skip a possible *note | |
2160 (re-search-backward "\\*note[ \n\t]+" nil t) | |
55174
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
2161 (looking-at str)) |
54754 | 2162 (<= (point) (match-end 0))) |
2163 (goto-char (match-beginning 0)))) | |
2164 ;; Go to the reference closest to point | |
2165 (let ((next-ref (save-excursion (and (re-search-forward str nil t) | |
2166 (+ (match-beginning 0) 5)))) | |
2167 (prev-ref (save-excursion (and (re-search-backward str nil t) | |
2168 (+ (match-beginning 0) 5))))) | |
2169 (goto-char (cond ((and next-ref prev-ref) | |
2170 (if (< (abs (- next-ref (point))) | |
2171 (abs (- prev-ref (point)))) | |
2172 next-ref prev-ref)) | |
2173 ((or next-ref prev-ref)) | |
2174 ((error "No cross-reference named %s" footnotename)))) | |
2175 (setq target (Info-extract-menu-node-name t)))) | |
325 | 2176 (while (setq i (string-match "[ \t\n]+" target i)) |
2177 (setq target (concat (substring target 0 i) " " | |
2178 (substring target (match-end 0)))) | |
2179 (setq i (+ i 1))) | |
54754 | 2180 (Info-goto-node target fork))) |
325 | 2181 |
51943
4ab63324776e
(Info-menu-entry-name-re): Allow newlines in menu entry names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51805
diff
changeset
|
2182 (defconst Info-menu-entry-name-re "\\(?:[^:]\\|:[^:,.;() \t\n]\\)*" |
4ab63324776e
(Info-menu-entry-name-re): Allow newlines in menu entry names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51805
diff
changeset
|
2183 ;; We allow newline because this is also used in Info-follow-reference, |
4ab63324776e
(Info-menu-entry-name-re): Allow newlines in menu entry names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51805
diff
changeset
|
2184 ;; where the xref name might be wrapped over two lines. |
51735
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
2185 "Regexp that matches a menu entry name upto but not including the colon. |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
2186 Because of ambiguities, this should be concatenated with something like |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
2187 `:' and `Info-following-node-name-re'.") |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
2188 |
55174
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
2189 (defun Info-extract-menu-node-name (&optional multi-line index-node) |
325 | 2190 (skip-chars-forward " \t\n") |
51735
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
2191 (when (looking-at (concat Info-menu-entry-name-re ":\\(:\\|" |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
2192 (Info-following-node-name-re |
55174
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
2193 (cond |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
2194 (index-node "^,\t\n") |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
2195 (multi-line "^.,\t") |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
2196 (t "^.,\t\n"))) |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
2197 "\\)" |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
2198 (if index-node |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
2199 "\\.\\(?:[ \t\n]+(line +\\([0-9]+\\))\\)?" |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
2200 ""))) |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
2201 (if index-node |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
2202 (setq Info-point-loc |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
2203 (if (match-beginning 5) |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
2204 (string-to-number (match-string 5)) |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
2205 (buffer-substring (match-beginning 0) (1- (match-beginning 1))))) |
57770
c7ff2d3a33ee
(Info-file-list-for-emacs): Add ("Info" . "info")
Juri Linkov <juri@jurta.org>
parents:
57672
diff
changeset
|
2206 ;;; Uncomment next line to use names of cross-references in non-index nodes: |
55174
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
2207 ;;; (setq Info-point-loc |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
2208 ;;; (buffer-substring (match-beginning 0) (1- (match-beginning 1)))) |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
2209 ) |
51735
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
2210 (replace-regexp-in-string |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
2211 "[ \n]+" " " |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
2212 (or (match-string 2) |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
2213 ;; If the node name is the menu entry name (using `entry::'). |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
2214 (buffer-substring (match-beginning 0) (1- (match-beginning 1))))))) |
325 | 2215 |
7837
bad6366d4f16
(Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7789
diff
changeset
|
2216 ;; No one calls this. |
1484
6c2a714566d3
Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents:
1477
diff
changeset
|
2217 ;;(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
|
2218 ;; (while list |
7837
bad6366d4f16
(Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7789
diff
changeset
|
2219 ;; (Info-menu (car list)) |
1484
6c2a714566d3
Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents:
1477
diff
changeset
|
2220 ;; (setq list (cdr list)))) |
325 | 2221 |
22761
ad14990a5efc
(Info-complete-menu-buffer): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
22760
diff
changeset
|
2222 (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
|
2223 (defvar Info-complete-next-re nil) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2224 (defvar Info-complete-nodes nil) |
41690
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2225 (defvar Info-complete-cache nil) |
22761
ad14990a5efc
(Info-complete-menu-buffer): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
22760
diff
changeset
|
2226 |
51735
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
2227 (defconst Info-node-spec-re |
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
2228 (concat (Info-following-node-name-re "^.,:") "[,:.]") |
51437
63b62b12e01c
(Info-extract-menu-node-name): Remove unused arg `errmessage'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51436
diff
changeset
|
2229 "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
|
2230 |
7837
bad6366d4f16
(Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7789
diff
changeset
|
2231 (defun Info-complete-menu-item (string predicate action) |
41798
b04cfaf9585d
Add explanatory comment.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41713
diff
changeset
|
2232 ;; This uses two dynamically bound variables: |
b04cfaf9585d
Add explanatory comment.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41713
diff
changeset
|
2233 ;; - `Info-complete-menu-buffer' which contains the buffer in which |
b04cfaf9585d
Add explanatory comment.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41713
diff
changeset
|
2234 ;; is the menu of items we're trying to complete. |
b04cfaf9585d
Add explanatory comment.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41713
diff
changeset
|
2235 ;; - `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
|
2236 ;; 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
|
2237 ;; nodes' names match `Info-complete-next-re'. This feature is currently |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2238 ;; not used. |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2239 ;; - `Info-complete-nodes' which, if non-nil, indicates that we should |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2240 ;; also look for menu items in these nodes. This feature is currently |
41798
b04cfaf9585d
Add explanatory comment.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41713
diff
changeset
|
2241 ;; 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
|
2242 |
46101da952e7
(Info-complete-menu-item): Revert change of 2003-06-03.
Lute Kamstra <lute@gnu.org>
parents:
51513
diff
changeset
|
2243 ;; 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
|
2244 ;; 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
|
2245 (save-excursion |
46101da952e7
(Info-complete-menu-item): Revert change of 2003-06-03.
Lute Kamstra <lute@gnu.org>
parents:
51513
diff
changeset
|
2246 (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
|
2247 (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
|
2248 (case-fold-search t) |
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2249 (orignode Info-current-node) |
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2250 nextnode) |
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2251 (goto-char (point-min)) |
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2252 (search-forward "\n* Menu:") |
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2253 (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
|
2254 (re-search-forward |
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2255 (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
|
2256 (let ((pattern (concat "\n\\* +\\(" |
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2257 (regexp-quote string) |
51735
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
2258 Info-menu-entry-name-re "\\):" 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
|
2259 completions) |
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2260 ;; Check the cache. |
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2261 (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
|
2262 (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
|
2263 (equal (nth 2 Info-complete-cache) Info-complete-next-re) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2264 (equal (nth 5 Info-complete-cache) Info-complete-nodes) |
41690
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2265 (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
|
2266 (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
|
2267 prev 0 nil t)))) |
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2268 ;; 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
|
2269 (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
|
2270 ;; 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
|
2271 (while |
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2272 (progn |
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2273 (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
|
2274 (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
|
2275 completions)) |
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2276 ;; Check subsequent nodes if applicable. |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2277 (or (and Info-complete-next-re |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2278 (setq nextnode (Info-extract-pointer "next" t)) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2279 (string-match Info-complete-next-re nextnode)) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2280 (and Info-complete-nodes |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2281 (setq Info-complete-nodes (cdr Info-complete-nodes) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2282 nextnode (car Info-complete-nodes))))) |
41690
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2283 (Info-goto-node nextnode)) |
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2284 ;; 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
|
2285 (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
|
2286 (Info-goto-node orignode)) |
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2287 ;; 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
|
2288 (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
|
2289 (list Info-current-file Info-current-node |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2290 Info-complete-next-re string completions |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2291 Info-complete-nodes))) |
41690
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2292 (if action |
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2293 (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
|
2294 (try-completion string completions predicate))))))) |
7837
bad6366d4f16
(Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7789
diff
changeset
|
2295 |
bad6366d4f16
(Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7789
diff
changeset
|
2296 |
26004
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25878
diff
changeset
|
2297 (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
|
2298 "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
|
2299 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
|
2300 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
|
2301 If FORK is non-nil (interactively with a prefix arg), show the node in |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2302 a new Info buffer. If FORK is a string, it is the name to use for the |
32286
c0b19a2770ca
(Info-goto-node, Info-menu): Doc fix.
Dave Love <fx@gnu.org>
parents:
32007
diff
changeset
|
2303 new buffer." |
325 | 2304 (interactive |
2305 (let ((completions '()) | |
2306 ;; If point is within a menu item, use that item as the default | |
2307 (default nil) | |
2308 (p (point)) | |
10957
6d3568e33019
(Info-menu): Bind beg with let.
Richard M. Stallman <rms@gnu.org>
parents:
10918
diff
changeset
|
2309 beg |
29446
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2310 (last nil) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2311 (case-fold-search t)) |
325 | 2312 (save-excursion |
2313 (goto-char (point-min)) | |
2314 (if (not (search-forward "\n* menu:" nil t)) | |
2315 (error "No menu in this node")) | |
7837
bad6366d4f16
(Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7789
diff
changeset
|
2316 (setq beg (point)) |
bad6366d4f16
(Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7789
diff
changeset
|
2317 (and (< (point) p) |
bad6366d4f16
(Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7789
diff
changeset
|
2318 (save-excursion |
bad6366d4f16
(Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7789
diff
changeset
|
2319 (goto-char p) |
bad6366d4f16
(Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7789
diff
changeset
|
2320 (end-of-line) |
51784
abcb358beb61
(Info-menu): Use Info-menu-entry-name-re.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51760
diff
changeset
|
2321 (if (re-search-backward (concat "\n\\* +\\(" |
abcb358beb61
(Info-menu): Use Info-menu-entry-name-re.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51760
diff
changeset
|
2322 Info-menu-entry-name-re |
abcb358beb61
(Info-menu): Use Info-menu-entry-name-re.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51760
diff
changeset
|
2323 "\\):") beg t) |
26580
d779cb4aa2ae
(Info-build-node-completions, Info-search, Info-follow-reference)
Dave Love <fx@gnu.org>
parents:
26172
diff
changeset
|
2324 (setq default (match-string-no-properties 1)))))) |
325 | 2325 (let ((item nil)) |
2326 (while (null item) | |
7837
bad6366d4f16
(Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7789
diff
changeset
|
2327 (setq item (let ((completion-ignore-case t) |
bad6366d4f16
(Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7789
diff
changeset
|
2328 (Info-complete-menu-buffer (current-buffer))) |
325 | 2329 (completing-read (if default |
2330 (format "Menu item (default %s): " | |
2331 default) | |
29446
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2332 "Menu item: ") |
7837
bad6366d4f16
(Info-complete-menu-item): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7789
diff
changeset
|
2333 'Info-complete-menu-item nil t))) |
540 | 2334 ;; we rely on the fact that completing-read accepts an input |
2335 ;; of "" even when the require-match argument is true and "" | |
2336 ;; is not a valid possibility | |
325 | 2337 (if (string= item "") |
2338 (if default | |
2339 (setq item default) | |
29446
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2340 ;; ask again |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2341 (setq item nil)))) |
26004
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25878
diff
changeset
|
2342 (list item current-prefix-arg)))) |
325 | 2343 ;; there is a problem here in that if several menu items have the same |
2344 ;; 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
|
2345 (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
|
2346 |
325 | 2347 (defun Info-extract-menu-item (menu-item) |
2348 (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
|
2349 (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
|
2350 (save-excursion |
29446
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2351 (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
|
2352 (goto-char (point-min)) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2353 (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
|
2354 (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
|
2355 (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
|
2356 (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
|
2357 (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
|
2358 (beginning-of-line) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2359 (forward-char 2) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2360 (Info-extract-menu-node-name nil (Info-index-node)))))) |
325 | 2361 |
2362 ;; If COUNT is nil, use the last item in the menu. | |
2363 (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
|
2364 (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
|
2365 (save-excursion |
29446
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2366 (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
|
2367 (goto-char (point-min)) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2368 (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
|
2369 (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
|
2370 (if count |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2371 (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
|
2372 (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
|
2373 (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
|
2374 nil)) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2375 (Info-extract-menu-node-name nil (Info-index-node)))))) |
325 | 2376 |
1666
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
2377 (defun Info-nth-menu-item () |
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
2378 "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
|
2379 N is the digit argument used to invoke this command." |
325 | 2380 (interactive) |
1666
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
2381 (Info-goto-node |
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
2382 (Info-extract-menu-counting |
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
2383 (- (aref (this-command-keys) (1- (length (this-command-keys)))) ?0)))) |
325 | 2384 |
2385 (defun Info-top-node () | |
2386 "Go to the Top node of this file." | |
2387 (interactive) | |
2388 (Info-goto-node "Top")) | |
2389 | |
2390 (defun Info-final-node () | |
2391 "Go to the final node in this file." | |
2392 (interactive) | |
2393 (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
|
2394 (let ((Info-history nil) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2395 (case-fold-search t)) |
325 | 2396 ;; Go to the last node in the menu of Top. |
2397 (Info-goto-node (Info-extract-menu-counting nil)) | |
2398 ;; 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
|
2399 ;; move forward until we can't go any farther. |
325 | 2400 (while (Info-forward-node t t) nil) |
2401 ;; Then keep moving down to last subnode, unless we reach an index. | |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2402 (while (and (not (Info-index-node)) |
325 | 2403 (save-excursion (search-forward "\n* Menu:" nil t))) |
2404 (Info-goto-node (Info-extract-menu-counting nil))))) | |
2405 | |
2406 (defun Info-forward-node (&optional not-down no-error) | |
2407 "Go forward one node, considering all nodes as forming one sequence." | |
2408 (interactive) | |
2409 (goto-char (point-min)) | |
2410 (forward-line 1) | |
29446
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2411 (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
|
2412 ;; 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
|
2413 ;; 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
|
2414 ;; 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
|
2415 ;; 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
|
2416 (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
|
2417 (save-excursion (search-forward "\n* menu:" nil t)) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2418 (not (Info-index-node))) |
29446
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2419 (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
|
2420 t) |
48135
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
2421 ((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
|
2422 (Info-next) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2423 t) |
48135
2c6154347319
(Info-streamline-headings): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48118
diff
changeset
|
2424 ((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
|
2425 ;; 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
|
2426 (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
|
2427 "top"))) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2428 (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
|
2429 (Info-up) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2430 (let (Info-history success) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2431 (unwind-protect |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2432 (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
|
2433 (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
|
2434 (no-error nil) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2435 (t (error "No pointer forward from this node"))))) |
325 | 2436 |
2437 (defun Info-backward-node () | |
2438 "Go backward one node, considering all nodes as forming one sequence." | |
2439 (interactive) | |
2440 (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
|
2441 (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
|
2442 (case-fold-search t)) |
325 | 2443 (cond ((and upnode (string-match "(" upnode)) |
2444 (error "First node in file")) | |
2445 ((and upnode (or (null prevnode) | |
11527
7956811d4d9a
(info-insert-file-contents): Set default-directory
Richard M. Stallman <rms@gnu.org>
parents:
11064
diff
changeset
|
2446 ;; Use string-equal, not equal, |
7956811d4d9a
(info-insert-file-contents): Set default-directory
Richard M. Stallman <rms@gnu.org>
parents:
11064
diff
changeset
|
2447 ;; to ignore text properties. |
7956811d4d9a
(info-insert-file-contents): Set default-directory
Richard M. Stallman <rms@gnu.org>
parents:
11064
diff
changeset
|
2448 (string-equal (downcase prevnode) |
7956811d4d9a
(info-insert-file-contents): Set default-directory
Richard M. Stallman <rms@gnu.org>
parents:
11064
diff
changeset
|
2449 (downcase upnode)))) |
325 | 2450 (Info-up)) |
2451 (prevnode | |
2452 ;; If we move back at the same level, | |
2453 ;; go down to find the last subnode*. | |
2454 (Info-prev) | |
2455 (let (Info-history) | |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2456 (while (and (not (Info-index-node)) |
325 | 2457 (save-excursion (search-forward "\n* Menu:" nil t))) |
2458 (Info-goto-node (Info-extract-menu-counting nil))))) | |
2459 (t | |
2460 (error "No pointer backward from this node"))))) | |
2461 | |
2462 (defun Info-exit () | |
2463 "Exit Info by selecting some other buffer." | |
2464 (interactive) | |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2465 (if Info-standalone |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2466 (save-buffers-kill-emacs) |
22331 | 2467 (quit-window))) |
325 | 2468 |
929
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
2469 (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
|
2470 "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
|
2471 (interactive) |
29621 | 2472 ;; 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
|
2473 (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
|
2474 (node |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2475 (save-excursion |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2476 (forward-line -1) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2477 (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
|
2478 (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
|
2479 (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
|
2480 (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
|
2481 (error "No more items in menu")))) |
929
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
2482 |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
2483 (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
|
2484 "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
|
2485 (interactive) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
2486 (save-excursion |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
2487 (forward-line 1) |
29621 | 2488 ;; 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
|
2489 (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
|
2490 (beg (save-excursion |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2491 (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
|
2492 (point))))) |
8489
c6088e3005cf
(Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents:
8480
diff
changeset
|
2493 (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
|
2494 (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
|
2495 (Info-goto-node (save-excursion |
c6088e3005cf
(Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents:
8480
diff
changeset
|
2496 (goto-char (match-end 0)) |
c6088e3005cf
(Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents:
8480
diff
changeset
|
2497 (Info-extract-menu-node-name))))) |
929
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
2498 |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2499 (defmacro Info-no-error (&rest body) |
929
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
2500 (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
|
2501 |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
2502 (defun Info-next-preorder () |
8018
518971c497f5
(Info-next-preorder-1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7990
diff
changeset
|
2503 "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
|
2504 (interactive) |
518971c497f5
(Info-next-preorder-1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7990
diff
changeset
|
2505 (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
|
2506 ((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
|
2507 ((Info-no-error (Info-up t)) |
12156 | 2508 ;; Since we have already gone thru all the items in this menu, |
2509 ;; 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
|
2510 (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
|
2511 ;; 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
|
2512 ;; 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
|
2513 (Info-next-preorder)) |
8018
518971c497f5
(Info-next-preorder-1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7990
diff
changeset
|
2514 (t |
518971c497f5
(Info-next-preorder-1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7990
diff
changeset
|
2515 (error "No more nodes")))) |
929
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
2516 |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
2517 (defun Info-last-preorder () |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
2518 "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
|
2519 (interactive) |
8489
c6088e3005cf
(Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents:
8480
diff
changeset
|
2520 (cond ((Info-no-error |
c6088e3005cf
(Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents:
8480
diff
changeset
|
2521 (Info-last-menu-item) |
c6088e3005cf
(Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents:
8480
diff
changeset
|
2522 ;; 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
|
2523 ;; so we can scroll back through it. |
12156 | 2524 (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
|
2525 ;; 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
|
2526 (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
|
2527 (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
|
2528 ;; 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
|
2529 ;; 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
|
2530 (goto-char (point-max)))) |
12156 | 2531 (recenter -1)) |
34468
7ae9e37868e6
(Info-last-preorder): Don't barf on nodes without a prev.
Miles Bader <miles@gnu.org>
parents:
34182
diff
changeset
|
2532 ((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
|
2533 (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
|
2534 (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
|
2535 (Info-no-error (Info-prev)) |
12156 | 2536 (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
|
2537 (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
|
2538 (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
|
2539 ;; 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
|
2540 ;; 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
|
2541 (goto-char (point-max)))) |
12156 | 2542 (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
|
2543 ((Info-no-error (Info-up t)) |
12156 | 2544 (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
|
2545 (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
|
2546 (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
|
2547 (goto-char (point-max))))) |
12156 | 2548 (t (error "No previous nodes")))) |
929
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
2549 |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
2550 (defun Info-scroll-up () |
9222
b18f51df31b3
(Info-scroll-down, Info-scroll-up): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
8913
diff
changeset
|
2551 "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
|
2552 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
|
2553 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
|
2554 `Info-scroll-prefer-subnodes' is nil. |
16498
791b96e8f25e
(Info-scroll-up): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
16462
diff
changeset
|
2555 |
34182
3f2ee9f3d8bf
(Info-scroll-prefer-subnodes): New defcustom.
Eli Zaretskii <eliz@gnu.org>
parents:
33621
diff
changeset
|
2556 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
|
2557 `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
|
2558 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
|
2559 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
|
2560 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
|
2561 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
|
2562 in other ways.)" |
16498
791b96e8f25e
(Info-scroll-up): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
16462
diff
changeset
|
2563 |
929
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
2564 (interactive) |
8489
c6088e3005cf
(Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents:
8480
diff
changeset
|
2565 (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
|
2566 (> (window-start) (point-max))) |
c6088e3005cf
(Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents:
8480
diff
changeset
|
2567 (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
|
2568 (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
|
2569 (virtual-end (save-excursion |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2570 (goto-char (point-min)) |
34182
3f2ee9f3d8bf
(Info-scroll-prefer-subnodes): New defcustom.
Eli Zaretskii <eliz@gnu.org>
parents:
33621
diff
changeset
|
2571 (if (and Info-scroll-prefer-subnodes |
3f2ee9f3d8bf
(Info-scroll-prefer-subnodes): New defcustom.
Eli Zaretskii <eliz@gnu.org>
parents:
33621
diff
changeset
|
2572 (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
|
2573 (point) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
2574 (point-max))))) |
8489
c6088e3005cf
(Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents:
8480
diff
changeset
|
2575 (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
|
2576 (pos-visible-in-window-p virtual-end)) |
34182
3f2ee9f3d8bf
(Info-scroll-prefer-subnodes): New defcustom.
Eli Zaretskii <eliz@gnu.org>
parents:
33621
diff
changeset
|
2577 (cond |
3f2ee9f3d8bf
(Info-scroll-prefer-subnodes): New defcustom.
Eli Zaretskii <eliz@gnu.org>
parents:
33621
diff
changeset
|
2578 (Info-scroll-prefer-subnodes (Info-next-preorder)) |
3f2ee9f3d8bf
(Info-scroll-prefer-subnodes): New defcustom.
Eli Zaretskii <eliz@gnu.org>
parents:
33621
diff
changeset
|
2579 ((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
|
2580 (t (Info-next-preorder))) |
8489
c6088e3005cf
(Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents:
8480
diff
changeset
|
2581 (scroll-up)))) |
929
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
2582 |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
2583 (defun Info-scroll-down () |
9222
b18f51df31b3
(Info-scroll-down, Info-scroll-up): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
8913
diff
changeset
|
2584 "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
|
2585 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
|
2586 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
|
2587 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
|
2588 parent node." |
929
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
2589 (interactive) |
8489
c6088e3005cf
(Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents:
8480
diff
changeset
|
2590 (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
|
2591 (> (window-start) (point-max))) |
c6088e3005cf
(Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents:
8480
diff
changeset
|
2592 (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
|
2593 (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
|
2594 (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
|
2595 (virtual-end |
7ae9e37868e6
(Info-last-preorder): Don't barf on nodes without a prev.
Miles Bader <miles@gnu.org>
parents:
34182
diff
changeset
|
2596 (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
|
2597 (save-excursion |
7ae9e37868e6
(Info-last-preorder): Don't barf on nodes without a prev.
Miles Bader <miles@gnu.org>
parents:
34182
diff
changeset
|
2598 (beginning-of-line) |
7ae9e37868e6
(Info-last-preorder): Don't barf on nodes without a prev.
Miles Bader <miles@gnu.org>
parents:
34182
diff
changeset
|
2599 (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
|
2600 (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
|
2601 (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
|
2602 current-point |
7ae9e37868e6
(Info-last-preorder): Don't barf on nodes without a prev.
Miles Bader <miles@gnu.org>
parents:
34182
diff
changeset
|
2603 t))))) |
47794
c460856d1bfd
(Info-next-menu-item, Info-last-menu-item)
John Paul Wallington <jpw@pobox.com>
parents:
47376
diff
changeset
|
2604 (if (or virtual-end |
36894
b63c94fafcde
(Info-scroll-down): Add missing WINDOW arg for
Gerd Moellmann <gerd@gnu.org>
parents:
36644
diff
changeset
|
2605 (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
|
2606 (Info-last-preorder) |
c6088e3005cf
(Info-last-menu-item): Fix gross logic errors.
Richard M. Stallman <rms@gnu.org>
parents:
8480
diff
changeset
|
2607 (scroll-down)))) |
929
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
2608 |
15055
60ff6e57ddbd
(Info-next-reference, Info-prev-reference): Add optional
Richard M. Stallman <rms@gnu.org>
parents:
14664
diff
changeset
|
2609 (defun Info-next-reference (&optional recur) |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2610 "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
|
2611 (interactive) |
54754 | 2612 (let ((pat "\\*note[ \n\t]+\\([^:]+\\):\\|^\\* .*:\\|[hf]t?tp://") |
22951
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
2613 (old-pt (point)) |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
2614 (case-fold-search t)) |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2615 (or (eobp) (forward-char 1)) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2616 (or (re-search-forward pat nil t) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2617 (progn |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2618 (goto-char (point-min)) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2619 (or (re-search-forward pat nil t) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2620 (progn |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2621 (goto-char old-pt) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2622 (error "No cross references in this node"))))) |
54754 | 2623 (goto-char (or (match-beginning 1) (match-beginning 0))) |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2624 (if (looking-at "\\* Menu:") |
15055
60ff6e57ddbd
(Info-next-reference, Info-prev-reference): Add optional
Richard M. Stallman <rms@gnu.org>
parents:
14664
diff
changeset
|
2625 (if recur |
60ff6e57ddbd
(Info-next-reference, Info-prev-reference): Add optional
Richard M. Stallman <rms@gnu.org>
parents:
14664
diff
changeset
|
2626 (error "No cross references in this node") |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2627 (Info-next-reference t)) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2628 (if (looking-at "^\\* ") |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2629 (forward-char 2))))) |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2630 |
15055
60ff6e57ddbd
(Info-next-reference, Info-prev-reference): Add optional
Richard M. Stallman <rms@gnu.org>
parents:
14664
diff
changeset
|
2631 (defun Info-prev-reference (&optional recur) |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2632 "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
|
2633 (interactive) |
54754 | 2634 (let ((pat "\\*note[ \n\t]+\\([^:]+\\):\\|^\\* .*:\\|[hf]t?tp://") |
22951
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
2635 (old-pt (point)) |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
2636 (case-fold-search t)) |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2637 (or (re-search-backward pat nil t) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2638 (progn |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2639 (goto-char (point-max)) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2640 (or (re-search-backward pat nil t) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2641 (progn |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2642 (goto-char old-pt) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2643 (error "No cross references in this node"))))) |
54754 | 2644 (goto-char (or (match-beginning 1) (match-beginning 0))) |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2645 (if (looking-at "\\* Menu:") |
15055
60ff6e57ddbd
(Info-next-reference, Info-prev-reference): Add optional
Richard M. Stallman <rms@gnu.org>
parents:
14664
diff
changeset
|
2646 (if recur |
60ff6e57ddbd
(Info-next-reference, Info-prev-reference): Add optional
Richard M. Stallman <rms@gnu.org>
parents:
14664
diff
changeset
|
2647 (error "No cross references in this node") |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2648 (Info-prev-reference t)) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2649 (if (looking-at "^\\* ") |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2650 (forward-char 2))))) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2651 |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2652 (defvar Info-index-nodes nil |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2653 "Alist of cached index node names of visited Info files. |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2654 Each element has the form (INFO-FILE INDEX-NODE-NAMES-LIST).") |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2655 |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2656 (defun Info-index-nodes (&optional file) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2657 "Return a list of names of all index nodes in Info FILE. |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2658 If FILE is omitted, it defaults to the current Info file. |
55774
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
2659 First look in a list of cached index node names. Then scan Info |
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
2660 file and its subfiles for nodes with the index cookie. Then try |
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
2661 to find index nodes starting from the first node in the top level |
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
2662 menu whose name contains the word \"Index\", plus any immediately |
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
2663 following nodes whose names also contain the word \"Index\"." |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2664 (or file (setq file Info-current-file)) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2665 (or (assoc file Info-index-nodes) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2666 ;; Skip virtual Info files |
55774
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
2667 (and (member file '("dir" "history" "toc" "apropos")) |
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
2668 (setq Info-index-nodes (cons (cons file nil) Info-index-nodes))) |
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
2669 (not (stringp file)) |
66602
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2670 (if Info-file-supports-index-cookies |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2671 ;; Find nodes with index cookie |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2672 (let* ((default-directory (or (and (stringp file) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2673 (file-name-directory |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2674 (setq file (Info-find-file file)))) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2675 default-directory)) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2676 Info-history Info-history-list Info-fontify-maximum-menu-size |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2677 (main-file file) subfiles nodes node) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2678 (condition-case nil |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2679 (with-temp-buffer |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2680 (while (or main-file subfiles) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2681 (erase-buffer) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2682 (info-insert-file-contents (or main-file (car subfiles))) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2683 (goto-char (point-min)) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2684 (while (search-forward "\0\b[index\0\b]" nil 'move) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2685 (save-excursion |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2686 (re-search-backward "^\^_") |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2687 (search-forward "Node: ") |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2688 (setq nodes (cons (Info-following-node-name) nodes)))) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2689 (if main-file |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2690 (save-excursion |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2691 (goto-char (point-min)) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2692 (if (search-forward "\n\^_\nIndirect:" nil t) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2693 (let ((bound (save-excursion (search-forward "\n\^_" nil t)))) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2694 (while (re-search-forward "^\\(.*\\): [0-9]+$" bound t) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2695 (setq subfiles (cons (match-string-no-properties 1) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2696 subfiles))))) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2697 (setq subfiles (nreverse subfiles) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2698 main-file nil)) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2699 (setq subfiles (cdr subfiles))))) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2700 (error nil)) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2701 (if nodes |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2702 (setq nodes (nreverse nodes) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2703 Info-index-nodes (cons (cons file nodes) Info-index-nodes))) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2704 nodes) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2705 ;; Else find nodes with the word "Index" in the node name |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2706 (let ((case-fold-search t) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2707 Info-history Info-history-list Info-fontify-maximum-menu-size |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2708 nodes node) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2709 (condition-case nil |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2710 (with-temp-buffer |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2711 (Info-mode) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2712 (Info-find-node file "Top") |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2713 (when (and (search-forward "\n* menu:" nil t) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2714 (re-search-forward "\n\\* \\(.*\\<Index\\>\\)" nil t)) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2715 (goto-char (match-beginning 1)) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2716 (setq nodes (list (Info-extract-menu-node-name))) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2717 (Info-goto-node (car nodes)) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2718 (while (and (setq node (Info-extract-pointer "next" t)) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2719 (string-match "\\<Index\\>" node)) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2720 (setq nodes (cons node nodes)) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2721 (Info-goto-node node)))) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2722 (error nil)) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2723 (if nodes |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2724 (setq nodes (nreverse nodes) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2725 Info-index-nodes (cons (cons file nodes) Info-index-nodes))) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2726 nodes)) |
55774
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
2727 ;; If file has no index nodes, still add it to the cache |
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
2728 (setq Info-index-nodes (cons (cons file nil) Info-index-nodes))) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2729 (cdr (assoc file Info-index-nodes))) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2730 |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2731 (defun Info-index-node (&optional node file) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2732 "Return non-nil value if NODE is an index node. |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2733 If NODE is nil, check the current Info node. |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2734 If FILE is nil, check the current Info file." |
55774
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
2735 (if (or (and node (not (equal node Info-current-node))) |
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
2736 (assoc (or file Info-current-file) Info-index-nodes)) |
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
2737 (member (or node Info-current-node) (Info-index-nodes file)) |
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
2738 ;; Don't search all index nodes if request is only for the current node |
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
2739 ;; and file is not in the cache of index nodes |
66602
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2740 (if Info-file-supports-index-cookies |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2741 (save-excursion |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2742 (goto-char (+ (or (save-excursion |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2743 (search-backward "\n\^_" nil t)) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2744 (point-min)) 2)) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2745 (search-forward "\0\b[index\0\b]" |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2746 (or (save-excursion |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2747 (search-forward "\n\^_" nil t)) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2748 (point-max)) t)) |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2749 (save-match-data |
f1d7e489a526
(Info-file-supports-index-cookies): New variable.
Juri Linkov <juri@jurta.org>
parents:
66459
diff
changeset
|
2750 (string-match "\\<Index\\>" (or node Info-current-node "")))))) |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2751 |
41690
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2752 (defun Info-goto-index () |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2753 "Go to the first index node." |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2754 (let ((node (car (Info-index-nodes)))) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2755 (or node (error "No index")) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2756 (Info-goto-node node))) |
41690
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2757 |
51283
956ab3f2a864
(Info-index): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents:
50707
diff
changeset
|
2758 ;;;###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
|
2759 (defun Info-index (topic) |
29621 | 2760 "Look up a string TOPIC in the index for this file. |
2561
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
2761 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
|
2762 the first match which is a case-insensitive substring of a topic. |
55074 | 2763 Use the \\<Info-mode-map>\\[Info-index-next] command to see the other 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
|
2764 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
|
2765 (interactive |
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2766 (list |
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2767 (let ((Info-complete-menu-buffer (clone-buffer)) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2768 (Info-complete-nodes (Info-index-nodes)) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2769 (Info-history-list nil)) |
46104
ee6975afddef
(Info-index): Get immediate error if used in `dir'.
Richard M. Stallman <rms@gnu.org>
parents:
46029
diff
changeset
|
2770 (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
|
2771 (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
|
2772 (unwind-protect |
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2773 (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
|
2774 (Info-goto-index) |
c9c839b993b9
(Info-complete-next-re, Info-complete-cache): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40967
diff
changeset
|
2775 (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
|
2776 (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
|
2777 (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
|
2778 (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
|
2779 (let ((orignode Info-current-node) |
55174
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
2780 (pattern (format "\n\\* +\\([^\n]*%s[^\n]*\\):[ \t]+\\([^\n]*\\)\\.\\(?:[ \t\n]*(line +\\([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
|
2781 (regexp-quote topic))) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2782 node (nodes (Info-index-nodes)) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2783 (ohist-list Info-history-list) |
22951
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
2784 (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
|
2785 (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
|
2786 (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
|
2787 (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
|
2788 (exact nil) |
41691
3317b62de647
(Info-goto-index): One register one step in the history.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41690
diff
changeset
|
2789 ;; 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
|
2790 ;; 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
|
2791 ;; 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
|
2792 ;; 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
|
2793 (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
|
2794 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
|
2795 (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
|
2796 (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
|
2797 (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
|
2798 (while (re-search-forward pattern nil t) |
31942
55dd93c0d728
(Info-extract-pointer):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31798
diff
changeset
|
2799 (push (list (match-string-no-properties 1) |
55dd93c0d728
(Info-extract-pointer):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31798
diff
changeset
|
2800 (match-string-no-properties 2) |
55dd93c0d728
(Info-extract-pointer):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31798
diff
changeset
|
2801 Info-current-node |
47794
c460856d1bfd
(Info-next-menu-item, Info-last-menu-item)
John Paul Wallington <jpw@pobox.com>
parents:
47376
diff
changeset
|
2802 (string-to-number (concat "0" |
c460856d1bfd
(Info-next-menu-item, Info-last-menu-item)
John Paul Wallington <jpw@pobox.com>
parents:
47376
diff
changeset
|
2803 (match-string 3)))) |
31942
55dd93c0d728
(Info-extract-pointer):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31798
diff
changeset
|
2804 matches)) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2805 (setq nodes (cdr nodes) node (car nodes))) |
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
|
2806 (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
|
2807 (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
|
2808 (progn |
14664
f77b58df548c
(Info-index): If fail, go back to original node.
Richard M. Stallman <rms@gnu.org>
parents:
14577
diff
changeset
|
2809 (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
|
2810 (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
|
2811 ;; 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
|
2812 (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
|
2813 (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
|
2814 matches (delq found matches))) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2815 (setq Info-history-list ohist-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
|
2816 (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
|
2817 (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
|
2818 |
1bd4cf98df68
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2038
diff
changeset
|
2819 (defun Info-index-next (num) |
55074 | 2820 "Go to the next matching index item from the last \\<Info-mode-map>\\[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
|
2821 (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
|
2822 (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
|
2823 (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
|
2824 (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
|
2825 (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
|
2826 (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
|
2827 (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
|
2828 (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
|
2829 (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
|
2830 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
|
2831 (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
|
2832 (if (> (nth 3 (car Info-index-alternatives)) 0) |
55174
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
2833 (forward-line (1- (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
|
2834 (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
|
2835 (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
|
2836 (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
|
2837 (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
|
2838 (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
|
2839 (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
|
2840 (if (cdr Info-index-alternatives) |
66279
c12719e4ec89
(Info-index-next): Add total number of index alternatives to the message.
Juri Linkov <juri@jurta.org>
parents:
66168
diff
changeset
|
2841 (format "(%s total; use `,' for next)" |
c12719e4ec89
(Info-index-next): Add total number of index alternatives to the message.
Juri Linkov <juri@jurta.org>
parents:
66168
diff
changeset
|
2842 (length Info-index-alternatives)) |
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
|
2843 "(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
|
2844 |
14560
b0df80fef82c
(Info-find-index-name): New subroutine, from Info-index-next.
Richard M. Stallman <rms@gnu.org>
parents:
14529
diff
changeset
|
2845 (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
|
2846 "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
|
2847 (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
|
2848 (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
|
2849 "[a-zA-Z]+: %s\\( \\|$\\)" |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
2850 (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
|
2851 ;; 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
|
2852 (re-search-forward (format |
46714
bebf069404ac
(Info-find-index-name): Improve last change.
Richard M. Stallman <rms@gnu.org>
parents:
46691
diff
changeset
|
2853 "[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
|
2854 (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
|
2855 (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
|
2856 (and (string-match "\\`.*\\( (.*)\\)\\'" name) |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
2857 (search-forward |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
2858 (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
|
2859 nil t)) |
52648
928f0fb38bfa
(Info-find-index-name): Search both with and without the " <1>" etc.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
2860 (search-forward name nil t) |
928f0fb38bfa
(Info-find-index-name): Search both with and without the " <1>" etc.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
2861 ;; Try again without the " <1>" makeinfo can append |
928f0fb38bfa
(Info-find-index-name): Search both with and without the " <1>" etc.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
2862 (and (string-match "\\`\\(.*\\) <[0-9]+>\\'" name) |
928f0fb38bfa
(Info-find-index-name): Search both with and without the " <1>" etc.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
2863 (Info-find-index-name (match-string 1 name)))) |
928f0fb38bfa
(Info-find-index-name): Search both with and without the " <1>" etc.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
2864 (progn (beginning-of-line) t) ;; non-nil for recursive call |
22951
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
2865 (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
|
2866 |
54718
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2867 ;;;###autoload |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2868 (defun info-apropos (string) |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2869 "Grovel indices of all known Info files on your system for STRING. |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2870 Build a menu of the possible matches." |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2871 (interactive "sIndex apropos: ") |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2872 (unless (string= string "") |
55174
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
2873 (let ((pattern (format "\n\\* +\\([^\n]*%s[^\n]*\\):[ \t]+\\([^\n]+\\)\\.\\(?:[ \t\n]*(line +\\([0-9]+\\))\\)?" |
54718
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2874 (regexp-quote string))) |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2875 (ohist Info-history) |
54865
50d070a98492
(info-apropos): Don't clobber Info-history-list.
Jesper Harder <harder@ifa.au.dk>
parents:
54809
diff
changeset
|
2876 (ohist-list Info-history-list) |
54718
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2877 (current-node Info-current-node) |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2878 (current-file Info-current-file) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2879 manuals matches node nodes) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2880 (let ((Info-fontify-maximum-menu-size nil)) |
54718
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2881 (Info-directory) |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2882 (message "Searching indices...") |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2883 (goto-char (point-min)) |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2884 (re-search-forward "\\* Menu: *\n" nil t) |
54765
3129d46cd5b6
(info-apropos): Improve menu item regexp.
Jesper Harder <harder@ifa.au.dk>
parents:
54754
diff
changeset
|
2885 (while (re-search-forward "\\*.*: *(\\([^)]+\\))" nil t) |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2886 (setq manuals (cons (match-string 1) manuals))) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2887 (dolist (manual (nreverse manuals)) |
54718
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2888 (message "Searching %s" manual) |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2889 (condition-case err |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2890 (if (setq nodes (Info-index-nodes (Info-find-file manual))) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2891 (save-excursion |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2892 (Info-find-node manual (car nodes)) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2893 (while |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2894 (progn |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2895 (goto-char (point-min)) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2896 (while (re-search-forward pattern nil t) |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2897 (setq matches |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2898 (cons (list manual |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2899 (match-string-no-properties 1) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2900 (match-string-no-properties 2) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2901 (match-string-no-properties 3)) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2902 matches))) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2903 (setq nodes (cdr nodes) node (car nodes))) |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2904 (Info-goto-node node)))) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2905 (error |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2906 (message "%s" (if (eq (car-safe err) 'error) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2907 (nth 1 err) err)) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2908 (sit-for 1 t))))) |
54718
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2909 (Info-goto-node (concat "(" current-file ")" current-node)) |
54865
50d070a98492
(info-apropos): Don't clobber Info-history-list.
Jesper Harder <harder@ifa.au.dk>
parents:
54809
diff
changeset
|
2910 (setq Info-history ohist |
50d070a98492
(info-apropos): Don't clobber Info-history-list.
Jesper Harder <harder@ifa.au.dk>
parents:
54809
diff
changeset
|
2911 Info-history-list ohist-list) |
54718
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2912 (message "Searching indices...done") |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2913 (if (null matches) |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2914 (message "No matches found") |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2915 (with-current-buffer (get-buffer-create " *info-apropos*") |
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2916 (erase-buffer) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
2917 (insert "\n\^_\nFile: apropos, Node: Index, Up: (dir)\n") |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2918 (insert "* Menu: \nNodes whose indices contain `" string "':\n\n") |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
2919 (dolist (entry (nreverse matches)) |
55200
3616e8c83bfa
(info-apropos): Make it an index node. Align node names
Jesper Harder <harder@ifa.au.dk>
parents:
55174
diff
changeset
|
2920 (insert |
3616e8c83bfa
(info-apropos): Make it an index node. Align node names
Jesper Harder <harder@ifa.au.dk>
parents:
55174
diff
changeset
|
2921 (format "* %-38s (%s)%s.%s\n" |
3616e8c83bfa
(info-apropos): Make it an index node. Align node names
Jesper Harder <harder@ifa.au.dk>
parents:
55174
diff
changeset
|
2922 (concat (nth 1 entry) " [" (nth 0 entry) "]:") |
3616e8c83bfa
(info-apropos): Make it an index node. Align node names
Jesper Harder <harder@ifa.au.dk>
parents:
55174
diff
changeset
|
2923 (nth 0 entry) |
3616e8c83bfa
(info-apropos): Make it an index node. Align node names
Jesper Harder <harder@ifa.au.dk>
parents:
55174
diff
changeset
|
2924 (nth 2 entry) |
3616e8c83bfa
(info-apropos): Make it an index node. Align node names
Jesper Harder <harder@ifa.au.dk>
parents:
55174
diff
changeset
|
2925 (if (nth 3 entry) |
3616e8c83bfa
(info-apropos): Make it an index node. Align node names
Jesper Harder <harder@ifa.au.dk>
parents:
55174
diff
changeset
|
2926 (concat " (line " (nth 3 entry) ")") |
3616e8c83bfa
(info-apropos): Make it an index node. Align node names
Jesper Harder <harder@ifa.au.dk>
parents:
55174
diff
changeset
|
2927 ""))))) |
3616e8c83bfa
(info-apropos): Make it an index node. Align node names
Jesper Harder <harder@ifa.au.dk>
parents:
55174
diff
changeset
|
2928 (Info-find-node "apropos" "Index") |
55134
1f59134413ff
(info-apropos): Reset Info-complete-cache.
Jesper Harder <harder@ifa.au.dk>
parents:
55084
diff
changeset
|
2929 (setq Info-complete-cache nil))))) |
54718
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
2930 |
325 | 2931 (defun Info-undefined () |
2932 "Make command be undefined in Info." | |
2933 (interactive) | |
2934 (ding)) | |
2935 | |
2936 (defun Info-help () | |
2937 "Enter the Info tutorial." | |
2938 (interactive) | |
2939 (delete-other-windows) | |
2940 (Info-find-node "info" | |
2941 (if (< (window-height) 23) | |
2942 "Help-Small-Screen" | |
2943 "Help"))) | |
2944 | |
2945 (defun Info-summary () | |
2946 "Display a brief summary of all Info commands." | |
2947 (interactive) | |
2948 (save-window-excursion | |
2949 (switch-to-buffer "*Help*") | |
20910
e46446e4af2d
(Info-summary): Clear buffer-read-only.
Richard M. Stallman <rms@gnu.org>
parents:
20755
diff
changeset
|
2950 (setq buffer-read-only nil) |
325 | 2951 (erase-buffer) |
2952 (insert (documentation 'Info-mode)) | |
9852
b3a6fdcd63df
(Info-summary): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
9782
diff
changeset
|
2953 (help-mode) |
325 | 2954 (goto-char (point-min)) |
2955 (let (ch flag) | |
2956 (while (progn (setq flag (not (pos-visible-in-window-p (point-max)))) | |
2957 (message (if flag "Type Space to see more" | |
2958 "Type Space to return to Info")) | |
64013
9ee64186bcf1
(info): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63935
diff
changeset
|
2959 (if (not (eq ?\s (setq ch (read-event)))) |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1667
diff
changeset
|
2960 (progn (setq unread-command-events (list ch)) nil) |
325 | 2961 flag)) |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2962 (scroll-up))) |
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
2963 (bury-buffer "*Help*"))) |
325 | 2964 |
2965 (defun Info-get-token (pos start all &optional errorstring) | |
29621 | 2966 "Return the token around POS. |
325 | 2967 POS must be somewhere inside the token |
2968 START is a regular expression which will match the | |
2969 beginning of the tokens delimited string | |
2970 ALL is a regular expression with a single | |
13990 | 2971 parenthesized subpattern which is the token to be |
29621 | 2972 returned. E.g. '{\(.*\)}' would return any string |
325 | 2973 enclosed in braces around POS. |
29621 | 2974 ERRORSTRING optional fourth argument, controls action on no match |
325 | 2975 nil: return nil |
2976 t: beep | |
2977 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
|
2978 (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
|
2979 (save-excursion |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
2980 (goto-char pos) |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
2981 ;; 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
|
2982 (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
|
2983 (not (looking-at start))) |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
2984 (forward-char -1)) |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
2985 ;; 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
|
2986 ;; (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
|
2987 (or (looking-at start) |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
2988 (progn |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
2989 (goto-char pos) |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
2990 (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
|
2991 (let (found) |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
2992 (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
|
2993 (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
|
2994 (> (match-end 0) pos)))))) |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
2995 (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
|
2996 (> (match-end 0) pos)) |
26580
d779cb4aa2ae
(Info-build-node-completions, Info-search, Info-follow-reference)
Dave Love <fx@gnu.org>
parents:
26172
diff
changeset
|
2997 (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
|
2998 (cond ((null errorstring) |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
2999 nil) |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
3000 ((eq errorstring t) |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
3001 (beep) |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
3002 nil) |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
3003 (t |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
3004 (error "No %s around position %d" errorstring pos)))))))) |
325 | 3005 |
7007
52b0ebfd3191
(Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents:
6716
diff
changeset
|
3006 (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
|
3007 "\\<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
|
3008 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
|
3009 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
|
3010 (interactive "e") |
32500
5f2aedbe47b5
(Info-mouse-follow-nearest-node): Use mouse-set-point.
Dave Love <fx@gnu.org>
parents:
32391
diff
changeset
|
3011 (mouse-set-point click) |
7007
52b0ebfd3191
(Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents:
6716
diff
changeset
|
3012 (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
|
3013 (save-excursion (forward-line 1) (eobp)) |
12156 | 3014 (Info-next-preorder))) |
7007
52b0ebfd3191
(Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents:
6716
diff
changeset
|
3015 |
54754 | 3016 (defun Info-follow-nearest-node (&optional fork) |
49678
0ae2b48491f7
(Info-follow-nearest-node): Implement new behavior.
Juanma Barranquero <lekktu@gmail.com>
parents:
49502
diff
changeset
|
3017 "Follow a node reference near point. |
0ae2b48491f7
(Info-follow-nearest-node): Implement new behavior.
Juanma Barranquero <lekktu@gmail.com>
parents:
49502
diff
changeset
|
3018 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
|
3019 if point is in a menu item description, follow that menu item." |
54754 | 3020 (interactive "P") |
3021 (or (Info-try-follow-nearest-node fork) | |
49678
0ae2b48491f7
(Info-follow-nearest-node): Implement new behavior.
Juanma Barranquero <lekktu@gmail.com>
parents:
49502
diff
changeset
|
3022 (when (save-excursion |
0ae2b48491f7
(Info-follow-nearest-node): Implement new behavior.
Juanma Barranquero <lekktu@gmail.com>
parents:
49502
diff
changeset
|
3023 (search-backward "\n* menu:" nil t)) |
0ae2b48491f7
(Info-follow-nearest-node): Implement new behavior.
Juanma Barranquero <lekktu@gmail.com>
parents:
49502
diff
changeset
|
3024 (save-excursion |
0ae2b48491f7
(Info-follow-nearest-node): Implement new behavior.
Juanma Barranquero <lekktu@gmail.com>
parents:
49502
diff
changeset
|
3025 (beginning-of-line) |
0ae2b48491f7
(Info-follow-nearest-node): Implement new behavior.
Juanma Barranquero <lekktu@gmail.com>
parents:
49502
diff
changeset
|
3026 (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
|
3027 (beginning-of-line 0)) |
0ae2b48491f7
(Info-follow-nearest-node): Implement new behavior.
Juanma Barranquero <lekktu@gmail.com>
parents:
49502
diff
changeset
|
3028 (when (looking-at "\\* +\\([^\t\n]*\\):") |
0ae2b48491f7
(Info-follow-nearest-node): Implement new behavior.
Juanma Barranquero <lekktu@gmail.com>
parents:
49502
diff
changeset
|
3029 (Info-goto-node |
54754 | 3030 (Info-extract-menu-item (match-string-no-properties 1)) fork) |
49678
0ae2b48491f7
(Info-follow-nearest-node): Implement new behavior.
Juanma Barranquero <lekktu@gmail.com>
parents:
49502
diff
changeset
|
3031 t))) |
0ae2b48491f7
(Info-follow-nearest-node): Implement new behavior.
Juanma Barranquero <lekktu@gmail.com>
parents:
49502
diff
changeset
|
3032 (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
|
3033 |
52b0ebfd3191
(Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents:
6716
diff
changeset
|
3034 ;; Common subroutine. |
54754 | 3035 (defun Info-try-follow-nearest-node (&optional fork) |
7007
52b0ebfd3191
(Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents:
6716
diff
changeset
|
3036 "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
|
3037 (let (node) |
325 | 3038 (cond |
58936
92b24762a33f
(info-xref-visited): Use `default' instead of t.
Richard M. Stallman <rms@gnu.org>
parents:
58604
diff
changeset
|
3039 ((Info-get-token (point) "[hf]t?tp://" "[hf]t?tp://\\([^ \t\n\"`({<>})']+\\)") |
54754 | 3040 (setq node t) |
3041 (browse-url (browse-url-url-at-point))) | |
3042 ((setq node (Info-get-token (point) "\\*note[ \n\t]+" | |
3043 "\\*note[ \n\t]+\\([^:]*\\):\\(:\\|[ \n\t]*(\\)?")) | |
3044 (Info-follow-reference node fork)) | |
49426
7ac32aa920b9
(Info-extract-menu-node-name): When looking for end of
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
49424
diff
changeset
|
3045 ;; 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
|
3046 ((setq node (Info-get-token (point) "\\* +" "\\* +\\([^:]*\\)::")) |
54754 | 3047 (Info-goto-node node fork)) |
55174
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
3048 ;; menu item: node name or index entry |
49426
7ac32aa920b9
(Info-extract-menu-node-name): When looking for end of
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
49424
diff
changeset
|
3049 ((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
|
3050 (beginning-of-line) |
60f63c8a3837
(Info-try-follow-nearest-node): Get the node name
Richard M. Stallman <rms@gnu.org>
parents:
22951
diff
changeset
|
3051 (forward-char 2) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
3052 (setq node (Info-extract-menu-node-name nil (Info-index-node))) |
54754 | 3053 (Info-goto-node node fork)) |
3127
dfbada800489
(Info-follow-nearest-node): Omit 4th arg to Info-get-token.
Richard M. Stallman <rms@gnu.org>
parents:
3084
diff
changeset
|
3054 ((setq node (Info-get-token (point) "Up: " "Up: \\([^,\n\t]*\\)")) |
54754 | 3055 (Info-goto-node node fork)) |
3127
dfbada800489
(Info-follow-nearest-node): Omit 4th arg to Info-get-token.
Richard M. Stallman <rms@gnu.org>
parents:
3084
diff
changeset
|
3056 ((setq node (Info-get-token (point) "Next: " "Next: \\([^,\n\t]*\\)")) |
54754 | 3057 (Info-goto-node node fork)) |
3127
dfbada800489
(Info-follow-nearest-node): Omit 4th arg to Info-get-token.
Richard M. Stallman <rms@gnu.org>
parents:
3084
diff
changeset
|
3058 ((setq node (Info-get-token (point) "File: " "File: \\([^,\n\t]*\\)")) |
54754 | 3059 (Info-goto-node "Top" fork)) |
3127
dfbada800489
(Info-follow-nearest-node): Omit 4th arg to Info-get-token.
Richard M. Stallman <rms@gnu.org>
parents:
3084
diff
changeset
|
3060 ((setq node (Info-get-token (point) "Prev: " "Prev: \\([^,\n\t]*\\)")) |
54754 | 3061 (Info-goto-node node fork))) |
7007
52b0ebfd3191
(Info-next-preorder): Don't follow footnotes here.
Karl Heuer <kwzh@gnu.org>
parents:
6716
diff
changeset
|
3062 node)) |
325 | 3063 |
3064 (defvar Info-mode-map nil | |
3065 "Keymap containing Info commands.") | |
3066 (if Info-mode-map | |
3067 nil | |
3068 (setq Info-mode-map (make-keymap)) | |
3069 (suppress-keymap Info-mode-map) | |
3070 (define-key Info-mode-map "." 'beginning-of-buffer) | |
929
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
3071 (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
|
3072 (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
|
3073 (define-key Info-mode-map "\t" 'Info-next-reference) |
52368
ef170d234e2d
(Info-mode-map): Bind S-tab and <backtab> to
Richard M. Stallman <rms@gnu.org>
parents:
52216
diff
changeset
|
3074 (define-key Info-mode-map [(shift tab)] 'Info-prev-reference) |
ef170d234e2d
(Info-mode-map): Bind S-tab and <backtab> to
Richard M. Stallman <rms@gnu.org>
parents:
52216
diff
changeset
|
3075 (define-key Info-mode-map [backtab] 'Info-prev-reference) |
1666
c12fbca81b63
(Info-{first,second,third,fourth,fifth}-menu-item): Removed.
Roland McGrath <roland@gnu.org>
parents:
1613
diff
changeset
|
3076 (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
|
3077 (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
|
3078 (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
|
3079 (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
|
3080 (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
|
3081 (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
|
3082 (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
|
3083 (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
|
3084 (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
|
3085 (define-key Info-mode-map "0" 'undefined) |
325 | 3086 (define-key Info-mode-map "?" 'Info-summary) |
3087 (define-key Info-mode-map "]" 'Info-forward-node) | |
3088 (define-key Info-mode-map "[" 'Info-backward-node) | |
3089 (define-key Info-mode-map "<" 'Info-top-node) | |
3090 (define-key Info-mode-map ">" 'Info-final-node) | |
3091 (define-key Info-mode-map "b" 'beginning-of-buffer) | |
3092 (define-key Info-mode-map "d" 'Info-directory) | |
3093 (define-key Info-mode-map "e" 'Info-edit) | |
3094 (define-key Info-mode-map "f" 'Info-follow-reference) | |
3095 (define-key Info-mode-map "g" 'Info-goto-node) | |
3096 (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
|
3097 (define-key Info-mode-map "i" 'Info-index) |
59472
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
3098 (define-key Info-mode-map "l" 'Info-history-back) |
56044
7aad97855e39
(Info-goto-node): Add autoload.
Juri Linkov <juri@jurta.org>
parents:
55797
diff
changeset
|
3099 (define-key Info-mode-map "L" 'Info-history) |
325 | 3100 (define-key Info-mode-map "m" 'Info-menu) |
3101 (define-key Info-mode-map "n" 'Info-next) | |
3102 (define-key Info-mode-map "p" 'Info-prev) | |
3103 (define-key Info-mode-map "q" 'Info-exit) | |
59472
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
3104 (define-key Info-mode-map "r" 'Info-history-forward) |
325 | 3105 (define-key Info-mode-map "s" 'Info-search) |
55774
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
3106 (define-key Info-mode-map "S" 'Info-search-case-sensitively) |
8739
f89682e90658
(Info-mode-map): Bind M-s like s.
Richard M. Stallman <rms@gnu.org>
parents:
8692
diff
changeset
|
3107 ;; For consistency with Rmail. |
f89682e90658
(Info-mode-map): Bind M-s like s.
Richard M. Stallman <rms@gnu.org>
parents:
8692
diff
changeset
|
3108 (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
|
3109 (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
|
3110 (define-key Info-mode-map "t" 'Info-top-node) |
56044
7aad97855e39
(Info-goto-node): Add autoload.
Juri Linkov <juri@jurta.org>
parents:
55797
diff
changeset
|
3111 (define-key Info-mode-map "T" 'Info-toc) |
325 | 3112 (define-key Info-mode-map "u" 'Info-up) |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
3113 ;; `w' for consistency with `dired-copy-filename-as-kill'. |
55774
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
3114 (define-key Info-mode-map "w" 'Info-copy-current-node-name) |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
3115 (define-key Info-mode-map "c" 'Info-copy-current-node-name) |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
3116 ;; `^' for consistency with `dired-up-directory'. |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
3117 (define-key Info-mode-map "^" '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
|
3118 (define-key Info-mode-map "," 'Info-index-next) |
930
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
929
diff
changeset
|
3119 (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
|
3120 (define-key Info-mode-map [mouse-2] 'Info-mouse-follow-nearest-node) |
59423
3eca2bed63e4
(Info-mode-map, Info-next-link-keymap)
Kim F. Storm <storm@cua.dk>
parents:
58936
diff
changeset
|
3121 (define-key Info-mode-map [follow-link] 'mouse-face) |
540 | 3122 ) |
16043
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3123 |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3124 (defun Info-check-pointer (item) |
29621 | 3125 "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
|
3126 (condition-case nil |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3127 (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
|
3128 (error nil))) |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3129 |
30220
e4628d420030
(Info-mode-menu): Fix use of :help, :enable.
Dave Love <fx@gnu.org>
parents:
30109
diff
changeset
|
3130 (easy-menu-define |
e4628d420030
(Info-mode-menu): Fix use of :help, :enable.
Dave Love <fx@gnu.org>
parents:
30109
diff
changeset
|
3131 Info-mode-menu Info-mode-map |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
3132 "Menu for Info files." |
30220
e4628d420030
(Info-mode-menu): Fix use of :help, :enable.
Dave Love <fx@gnu.org>
parents:
30109
diff
changeset
|
3133 '("Info" |
e4628d420030
(Info-mode-menu): Fix use of :help, :enable.
Dave Love <fx@gnu.org>
parents:
30109
diff
changeset
|
3134 ["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
|
3135 :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
|
3136 ["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
|
3137 :help "Go to the next node"] |
e4628d420030
(Info-mode-menu): Fix use of :help, :enable.
Dave Love <fx@gnu.org>
parents:
30109
diff
changeset
|
3138 ["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
|
3139 :help "Go to the previous node"] |
e4628d420030
(Info-mode-menu): Fix use of :help, :enable.
Dave Love <fx@gnu.org>
parents:
30109
diff
changeset
|
3140 ["Backward" Info-backward-node |
e4628d420030
(Info-mode-menu): Fix use of :help, :enable.
Dave Love <fx@gnu.org>
parents:
30109
diff
changeset
|
3141 :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
|
3142 ["Forward" Info-forward-node |
e4628d420030
(Info-mode-menu): Fix use of :help, :enable.
Dave Love <fx@gnu.org>
parents:
30109
diff
changeset
|
3143 :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
|
3144 ["Beginning" beginning-of-buffer |
c0b19a2770ca
(Info-goto-node, Info-menu): Doc fix.
Dave Love <fx@gnu.org>
parents:
32007
diff
changeset
|
3145 :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
|
3146 ["Top" Info-top-node |
e4628d420030
(Info-mode-menu): Fix use of :help, :enable.
Dave Love <fx@gnu.org>
parents:
30109
diff
changeset
|
3147 :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
|
3148 ["Final Node" Info-final-node |
e4628d420030
(Info-mode-menu): Fix use of :help, :enable.
Dave Love <fx@gnu.org>
parents:
30109
diff
changeset
|
3149 :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
|
3150 ("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
|
3151 ("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
|
3152 ["Search..." Info-search |
e4628d420030
(Info-mode-menu): Fix use of :help, :enable.
Dave Love <fx@gnu.org>
parents:
30109
diff
changeset
|
3153 :help "Search for regular expression in this Info file"] |
54754 | 3154 ["Search Next" Info-search-next |
3155 :help "Search for another occurrence of regular expression"] | |
32500
5f2aedbe47b5
(Info-mouse-follow-nearest-node): Use mouse-set-point.
Dave Love <fx@gnu.org>
parents:
32391
diff
changeset
|
3156 ["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
|
3157 :help "Go to a named node"] |
59472
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
3158 ["Back in history" Info-history-back :active Info-history |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
3159 :help "Go back in history to the last node you were at"] |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
3160 ["Forward in history" Info-history-forward :active Info-history-forward |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
3161 :help "Go forward in history"] |
54754 | 3162 ["History" Info-history :active Info-history-list |
56044
7aad97855e39
(Info-goto-node): Add autoload.
Juri Linkov <juri@jurta.org>
parents:
55797
diff
changeset
|
3163 :help "Go to menu of visited nodes"] |
54754 | 3164 ["Table of Contents" Info-toc |
56044
7aad97855e39
(Info-goto-node): Add autoload.
Juri Linkov <juri@jurta.org>
parents:
55797
diff
changeset
|
3165 :help "Go to table of contents"] |
61029
ea8106ee0289
(Info-mode-menu): Remove ellipsis from "Index".
Juri Linkov <juri@jurta.org>
parents:
60626
diff
changeset
|
3166 ("Index" |
ea8106ee0289
(Info-mode-menu): Remove ellipsis from "Index".
Juri Linkov <juri@jurta.org>
parents:
60626
diff
changeset
|
3167 ["Lookup a String..." Info-index |
30220
e4628d420030
(Info-mode-menu): Fix use of :help, :enable.
Dave Love <fx@gnu.org>
parents:
30109
diff
changeset
|
3168 :help "Look for a string in the index items"] |
61029
ea8106ee0289
(Info-mode-menu): Remove ellipsis from "Index".
Juri Linkov <juri@jurta.org>
parents:
60626
diff
changeset
|
3169 ["Next Matching Item" Info-index-next :active Info-index-alternatives |
54718
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
3170 :help "Look for another occurrence of previous item"] |
61029
ea8106ee0289
(Info-mode-menu): Remove ellipsis from "Index".
Juri Linkov <juri@jurta.org>
parents:
60626
diff
changeset
|
3171 ["Lookup a string in all indices..." info-apropos |
54718
fd0577e11e88
(info-apropos): New function.
Jesper Harder <harder@ifa.au.dk>
parents:
54506
diff
changeset
|
3172 :help "Look for a string in the indices of all manuals"]) |
36092
bf55849c91fb
(Info-copy-current-node-name): New function.
Miles Bader <miles@gnu.org>
parents:
35934
diff
changeset
|
3173 ["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
|
3174 :help "Copy the name of the current node into the kill ring"] |
54754 | 3175 ["Clone Info buffer" clone-buffer |
3176 :help "Create a twin copy of the current Info buffer."] | |
32391 | 3177 ["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
|
3178 |
32286
c0b19a2770ca
(Info-goto-node, Info-menu): Doc fix.
Dave Love <fx@gnu.org>
parents:
32007
diff
changeset
|
3179 |
c0b19a2770ca
(Info-goto-node, Info-menu): Doc fix.
Dave Love <fx@gnu.org>
parents:
32007
diff
changeset
|
3180 (defvar info-tool-bar-map |
c0b19a2770ca
(Info-goto-node, Info-menu): Doc fix.
Dave Love <fx@gnu.org>
parents:
32007
diff
changeset
|
3181 (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
|
3182 (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
|
3183 (tool-bar-local-item-from-menu 'Info-exit "close" map Info-mode-map) |
66168
28718fa5d988
Moved all remaining images from lisp/toolbar to etc/images, moved
Bill Wohler <wohler@newt.com>
parents:
66117
diff
changeset
|
3184 (tool-bar-local-item-from-menu 'Info-prev "left-arrow" map Info-mode-map) |
28718fa5d988
Moved all remaining images from lisp/toolbar to etc/images, moved
Bill Wohler <wohler@newt.com>
parents:
66117
diff
changeset
|
3185 (tool-bar-local-item-from-menu 'Info-next "right-arrow" map Info-mode-map) |
28718fa5d988
Moved all remaining images from lisp/toolbar to etc/images, moved
Bill Wohler <wohler@newt.com>
parents:
66117
diff
changeset
|
3186 (tool-bar-local-item-from-menu 'Info-up "up-arrow" map Info-mode-map) |
28718fa5d988
Moved all remaining images from lisp/toolbar to etc/images, moved
Bill Wohler <wohler@newt.com>
parents:
66117
diff
changeset
|
3187 (tool-bar-local-item-from-menu 'Info-history-back "back-arrow" map Info-mode-map) |
28718fa5d988
Moved all remaining images from lisp/toolbar to etc/images, moved
Bill Wohler <wohler@newt.com>
parents:
66117
diff
changeset
|
3188 (tool-bar-local-item-from-menu 'Info-history-forward "fwd-arrow" map Info-mode-map) |
44306
33a65a57f38a
(info-tool-bar-map): Use tool-bar-local-item-from-menu.
Richard M. Stallman <rms@gnu.org>
parents:
43776
diff
changeset
|
3189 (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
|
3190 (tool-bar-local-item-from-menu 'Info-index "index" map Info-mode-map) |
66168
28718fa5d988
Moved all remaining images from lisp/toolbar to etc/images, moved
Bill Wohler <wohler@newt.com>
parents:
66117
diff
changeset
|
3191 (tool-bar-local-item-from-menu 'Info-goto-node "jump-to" map Info-mode-map) |
44306
33a65a57f38a
(info-tool-bar-map): Use tool-bar-local-item-from-menu.
Richard M. Stallman <rms@gnu.org>
parents:
43776
diff
changeset
|
3192 (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
|
3193 map))) |
32286
c0b19a2770ca
(Info-goto-node, Info-menu): Doc fix.
Dave Love <fx@gnu.org>
parents:
32007
diff
changeset
|
3194 |
16043
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3195 (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
|
3196 ;; 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
|
3197 ;; 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
|
3198 |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3199 (defun Info-menu-update () |
29621 | 3200 "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
|
3201 (condition-case nil |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3202 (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
|
3203 (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
|
3204 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
|
3205 () |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3206 ;; Update menu menu. |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3207 (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
|
3208 (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
|
3209 (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
|
3210 (error nil)))) |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28559
diff
changeset
|
3211 entries current |
16043
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3212 (number 0)) |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3213 (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
|
3214 (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
|
3215 items (cdr items) |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3216 number (1+ number)) |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28559
diff
changeset
|
3217 (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
|
3218 (Info-menu ,current) |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3219 :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
|
3220 entries))) |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3221 (if items |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3222 (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
|
3223 (or entries |
37370
3a3bed48a714
(Info-menu-update): When there are no menus and/or no
Eli Zaretskii <eliz@gnu.org>
parents:
37351
diff
changeset
|
3224 (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
|
3225 (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
|
3226 ;; 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
|
3227 (let ((items nil) |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28559
diff
changeset
|
3228 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
|
3229 (number 0) |
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
3230 (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
|
3231 (save-excursion |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3232 (goto-char (point-min)) |
54754 | 3233 (while (re-search-forward "\\*note[ \n\t]+\\([^:]*\\):" nil t) |
51735
204ae43066d1
(Info-following-node-name-re): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51731
diff
changeset
|
3234 (setq str (match-string 1)) |
16043
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3235 (setq i 0) |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3236 (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
|
3237 (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
|
3238 (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
|
3239 (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
|
3240 (setq items |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3241 (cons str items)))) |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3242 (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
|
3243 (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
|
3244 items (cdr items) |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3245 number (1+ number)) |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28559
diff
changeset
|
3246 (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
|
3247 (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
|
3248 t] |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3249 entries))) |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3250 (if items |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3251 (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
|
3252 entries))) |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3253 (or entries |
37370
3a3bed48a714
(Info-menu-update): When there are no menus and/or no
Eli Zaretskii <eliz@gnu.org>
parents:
37351
diff
changeset
|
3254 (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
|
3255 (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
|
3256 ;; Update last seen node. |
21197
e4b99d1db55a
(Info-menu-update): Set Info-menu-last-node
Richard M. Stallman <rms@gnu.org>
parents:
21003
diff
changeset
|
3257 (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
|
3258 ;; 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
|
3259 (error (ding)))) |
f3a7e1cb07d6
Add menu items and xrefs to the menu bar menu.
Richard M. Stallman <rms@gnu.org>
parents:
15821
diff
changeset
|
3260 |
325 | 3261 |
55774
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
3262 (defun Info-copy-current-node-name (&optional arg) |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
3263 "Put the name of the current Info node into the kill ring. |
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
3264 The name of the Info file is prepended to the node name in parentheses. |
55774
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
3265 With a zero prefix arg, put the name inside a function call to `info'." |
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
3266 (interactive "P") |
36092
bf55849c91fb
(Info-copy-current-node-name): New function.
Miles Bader <miles@gnu.org>
parents:
35934
diff
changeset
|
3267 (unless Info-current-node |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
3268 (error "No current Info node")) |
55774
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
3269 (let ((node (concat "(" (file-name-nondirectory |
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
3270 (or (and (stringp Info-current-file) |
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
3271 Info-current-file) |
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
3272 buffer-file-name |
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
3273 "")) |
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
3274 ")" Info-current-node))) |
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
3275 (if (zerop (prefix-numeric-value arg)) |
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
3276 (setq node (concat "(info \"" node "\")"))) |
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
3277 (kill-new node) |
8926d01558fa
(Info-toc): Call Info-mode on intermediate buffer.
Juri Linkov <juri@jurta.org>
parents:
55751
diff
changeset
|
3278 (message "%s" node))) |
36092
bf55849c91fb
(Info-copy-current-node-name): New function.
Miles Bader <miles@gnu.org>
parents:
35934
diff
changeset
|
3279 |
bf55849c91fb
(Info-copy-current-node-name): New function.
Miles Bader <miles@gnu.org>
parents:
35934
diff
changeset
|
3280 |
325 | 3281 ;; 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
|
3282 (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
|
3283 (put 'Info-mode 'no-clone-indirect t) |
325 | 3284 |
63935
9eca51cb6ae3
(tool-bar-map): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
63503
diff
changeset
|
3285 (defvar tool-bar-map) |
9eca51cb6ae3
(tool-bar-map): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
63503
diff
changeset
|
3286 |
64896
a7d19794a559
Add handler to desktop-buffer-mode-handlers.
Lars Hansen <larsh@soem.dk>
parents:
64812
diff
changeset
|
3287 ;; Autoload cookie needed by desktop.el |
a7d19794a559
Add handler to desktop-buffer-mode-handlers.
Lars Hansen <larsh@soem.dk>
parents:
64812
diff
changeset
|
3288 ;;;###autoload |
325 | 3289 (defun Info-mode () |
29621 | 3290 "Info mode provides commands for browsing through the Info documentation tree. |
325 | 3291 Documentation in Info is divided into \"nodes\", each of which discusses |
3292 one topic and contains references to other nodes which discuss related | |
3293 topics. Info has commands to follow the references and show you other nodes. | |
3294 | |
29621 | 3295 \\<Info-mode-map>\ |
325 | 3296 \\[Info-help] Invoke the Info tutorial. |
21806 | 3297 \\[Info-exit] Quit Info: reselect previously selected buffer. |
325 | 3298 |
3299 Selecting other nodes: | |
8564 | 3300 \\[Info-mouse-follow-nearest-node] |
3301 Follow a node reference you click on. | |
3302 This works with menu items, cross references, and | |
3303 the \"next\", \"previous\" and \"up\", depending on where you click. | |
21806 | 3304 \\[Info-follow-nearest-node] Follow a node reference near point, like \\[Info-mouse-follow-nearest-node]. |
325 | 3305 \\[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
|
3306 \\[Info-prev] Move to the \"previous\" node of this node. |
325 | 3307 \\[Info-up] Move \"up\" from this node. |
3308 \\[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
|
3309 Picking a menu item causes another node to be selected. |
540 | 3310 \\[Info-directory] Go to the Info directory node. |
66010
c4bdbe18630e
(Info-mode-menu): Delete menu item "Edit".
Juri Linkov <juri@jurta.org>
parents:
65825
diff
changeset
|
3311 \\[Info-top-node] Go to the Top node of this file. |
c4bdbe18630e
(Info-mode-menu): Delete menu item "Edit".
Juri Linkov <juri@jurta.org>
parents:
65825
diff
changeset
|
3312 \\[Info-final-node] Go to the final node in this file. |
c4bdbe18630e
(Info-mode-menu): Delete menu item "Edit".
Juri Linkov <juri@jurta.org>
parents:
65825
diff
changeset
|
3313 \\[Info-backward-node] Go backward one node, considering all nodes as forming one sequence. |
c4bdbe18630e
(Info-mode-menu): Delete menu item "Edit".
Juri Linkov <juri@jurta.org>
parents:
65825
diff
changeset
|
3314 \\[Info-forward-node] Go forward one node, considering all nodes as forming one sequence. |
c4bdbe18630e
(Info-mode-menu): Delete menu item "Edit".
Juri Linkov <juri@jurta.org>
parents:
65825
diff
changeset
|
3315 \\[Info-next-reference] Move cursor to next cross-reference or menu item. |
c4bdbe18630e
(Info-mode-menu): Delete menu item "Edit".
Juri Linkov <juri@jurta.org>
parents:
65825
diff
changeset
|
3316 \\[Info-prev-reference] Move cursor to previous cross-reference or menu item. |
325 | 3317 \\[Info-follow-reference] Follow a cross reference. Reads name of reference. |
59472
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
3318 \\[Info-history-back] Move back in history to the last node you were at. |
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
3319 \\[Info-history-forward] Move forward in history to the node you returned from after using \\[Info-history-back]. |
56044
7aad97855e39
(Info-goto-node): Add autoload.
Juri Linkov <juri@jurta.org>
parents:
55797
diff
changeset
|
3320 \\[Info-history] Go to menu of visited nodes. |
7aad97855e39
(Info-goto-node): Add autoload.
Juri Linkov <juri@jurta.org>
parents:
55797
diff
changeset
|
3321 \\[Info-toc] Go to table of contents of the current Info file. |
325 | 3322 |
3323 Moving within a node: | |
20514 | 3324 \\[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
|
3325 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
|
3326 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
|
3327 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
|
3328 move up to the parent node. |
20514 | 3329 \\[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
|
3330 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
|
3331 if there is none. |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28559
diff
changeset
|
3332 \\[beginning-of-buffer] Go to beginning of node. |
325 | 3333 |
3334 Advanced commands: | |
3335 \\[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
|
3336 and select the node in which the next occurrence is found. |
56044
7aad97855e39
(Info-goto-node): Add autoload.
Juri Linkov <juri@jurta.org>
parents:
55797
diff
changeset
|
3337 \\[Info-search-case-sensitively] Search through this Info file for specified regexp case-sensitively. |
54754 | 3338 \\[Info-search-next] Search for another occurrence of regexp |
55074 | 3339 from a previous \\<Info-mode-map>\\[Info-search] command. |
66010
c4bdbe18630e
(Info-mode-menu): Delete menu item "Edit".
Juri Linkov <juri@jurta.org>
parents:
65825
diff
changeset
|
3340 \\[Info-index] Look up a topic in this file's Index and move to that node. |
c4bdbe18630e
(Info-mode-menu): Delete menu item "Edit".
Juri Linkov <juri@jurta.org>
parents:
65825
diff
changeset
|
3341 \\[Info-index-next] (comma) Move to the next match from a previous \\<Info-mode-map>\\[Info-index] command. |
c4bdbe18630e
(Info-mode-menu): Delete menu item "Edit".
Juri Linkov <juri@jurta.org>
parents:
65825
diff
changeset
|
3342 \\[info-apropos] Look for a string in the indices of all manuals. |
c4bdbe18630e
(Info-mode-menu): Delete menu item "Edit".
Juri Linkov <juri@jurta.org>
parents:
65825
diff
changeset
|
3343 \\[Info-goto-node] Move to node specified by name. |
c4bdbe18630e
(Info-mode-menu): Delete menu item "Edit".
Juri Linkov <juri@jurta.org>
parents:
65825
diff
changeset
|
3344 You may include a filename as well, as (FILENAME)NODENAME. |
c4bdbe18630e
(Info-mode-menu): Delete menu item "Edit".
Juri Linkov <juri@jurta.org>
parents:
65825
diff
changeset
|
3345 1 .. 9 Pick first ... ninth item in node's menu. |
c4bdbe18630e
(Info-mode-menu): Delete menu item "Edit".
Juri Linkov <juri@jurta.org>
parents:
65825
diff
changeset
|
3346 Every third `*' is highlighted to help pick the right number. |
c4bdbe18630e
(Info-mode-menu): Delete menu item "Edit".
Juri Linkov <juri@jurta.org>
parents:
65825
diff
changeset
|
3347 \\[Info-copy-current-node-name] Put name of current Info node in the kill ring. |
c4bdbe18630e
(Info-mode-menu): Delete menu item "Edit".
Juri Linkov <juri@jurta.org>
parents:
65825
diff
changeset
|
3348 \\[clone-buffer] Select a new cloned Info buffer in another window. |
c4bdbe18630e
(Info-mode-menu): Delete menu item "Edit".
Juri Linkov <juri@jurta.org>
parents:
65825
diff
changeset
|
3349 \\[universal-argument] \\[info] Move to new Info file with completion. |
c4bdbe18630e
(Info-mode-menu): Delete menu item "Edit".
Juri Linkov <juri@jurta.org>
parents:
65825
diff
changeset
|
3350 \\[universal-argument] N \\[info] Select Info buffer with prefix number in the name *info*<N>." |
325 | 3351 (kill-all-local-variables) |
3352 (setq major-mode 'Info-mode) | |
3353 (setq mode-name "Info") | |
16672
1facf218a14f
(Info-mode): Default for `tab-width'.
Richard M. Stallman <rms@gnu.org>
parents:
16638
diff
changeset
|
3354 (setq tab-width 8) |
325 | 3355 (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
|
3356 (add-hook 'activate-menubar-hook 'Info-menu-update nil t) |
325 | 3357 (set-syntax-table text-mode-syntax-table) |
3358 (setq local-abbrev-table text-mode-abbrev-table) | |
3359 (setq case-fold-search t) | |
3360 (setq buffer-read-only t) | |
3361 (make-local-variable 'Info-current-file) | |
3362 (make-local-variable 'Info-current-subfile) | |
3363 (make-local-variable 'Info-current-node) | |
3364 (make-local-variable 'Info-tag-table-marker) | |
16981
643e0f90e153
Handle multiple Info buffers.
Richard M. Stallman <rms@gnu.org>
parents:
16790
diff
changeset
|
3365 (setq Info-tag-table-marker (make-marker)) |
643e0f90e153
Handle multiple Info buffers.
Richard M. Stallman <rms@gnu.org>
parents:
16790
diff
changeset
|
3366 (make-local-variable 'Info-tag-table-buffer) |
643e0f90e153
Handle multiple Info buffers.
Richard M. Stallman <rms@gnu.org>
parents:
16790
diff
changeset
|
3367 (setq Info-tag-table-buffer nil) |
325 | 3368 (make-local-variable 'Info-history) |
59472
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
3369 (make-local-variable 'Info-history-forward) |
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
|
3370 (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
|
3371 (setq header-line-format |
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
3372 (if Info-use-header-line |
52767
92416cd1e028
(Info-mode): Revert previous change.
Lute Kamstra <lute@gnu.org>
parents:
52756
diff
changeset
|
3373 '(:eval (get-text-property (point-min) 'header-line)) |
51434
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
3374 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
|
3375 (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
|
3376 ;; 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
|
3377 (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
|
3378 (setq line-move-ignore-invisible t) |
55153
33f0fdb8887c
(Info-mode): Rename desktop-buffer-misc-data-function
Lars Hansen <larsh@soem.dk>
parents:
55134
diff
changeset
|
3379 (make-local-variable 'desktop-save-buffer) |
61987
aabdcfa2f3d6
(Info-mode): Set widen-automatically to nil, locally.
Richard M. Stallman <rms@gnu.org>
parents:
61450
diff
changeset
|
3380 (make-local-variable 'widen-automatically) |
aabdcfa2f3d6
(Info-mode): Set widen-automatically to nil, locally.
Richard M. Stallman <rms@gnu.org>
parents:
61450
diff
changeset
|
3381 (setq widen-automatically nil) |
55153
33f0fdb8887c
(Info-mode): Rename desktop-buffer-misc-data-function
Lars Hansen <larsh@soem.dk>
parents:
55134
diff
changeset
|
3382 (setq desktop-save-buffer 'Info-desktop-buffer-misc-data) |
61363
eebed65dbe97
(Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
Juri Linkov <juri@jurta.org>
parents:
61029
diff
changeset
|
3383 (add-hook 'kill-buffer-hook 'Info-kill-buffer nil t) |
33189
069c840c65d8
(Info-mode): Don't both with make-local-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33136
diff
changeset
|
3384 (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
|
3385 (add-hook 'change-major-mode-hook 'font-lock-defontify nil t) |
60615
643e6516a779
(Info-isearch-initial-node): New internal variable.
Juri Linkov <juri@jurta.org>
parents:
60577
diff
changeset
|
3386 (add-hook 'isearch-mode-hook 'Info-isearch-start nil t) |
56866
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
3387 (set (make-local-variable 'isearch-search-fun-function) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
3388 'Info-isearch-search) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
3389 (set (make-local-variable 'isearch-wrap-function) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
3390 'Info-isearch-wrap) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
3391 (set (make-local-variable 'isearch-push-state-function) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
3392 'Info-isearch-push-state) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
3393 (set (make-local-variable 'search-whitespace-regexp) |
867d96c29584
(Info-search-whitespace-regexp): Fix backslashes.
Juri Linkov <juri@jurta.org>
parents:
56044
diff
changeset
|
3394 Info-search-whitespace-regexp) |
325 | 3395 (Info-set-mode-line) |
62733
545cba9e95d4
(Info-mode, Info-edit-mode): Use run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
61987
diff
changeset
|
3396 (run-mode-hooks 'Info-mode-hook)) |
325 | 3397 |
61363
eebed65dbe97
(Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
Juri Linkov <juri@jurta.org>
parents:
61029
diff
changeset
|
3398 ;; When an Info buffer is killed, make sure the associated tags buffer |
eebed65dbe97
(Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
Juri Linkov <juri@jurta.org>
parents:
61029
diff
changeset
|
3399 ;; is killed too. |
eebed65dbe97
(Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
Juri Linkov <juri@jurta.org>
parents:
61029
diff
changeset
|
3400 (defun Info-kill-buffer () |
eebed65dbe97
(Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
Juri Linkov <juri@jurta.org>
parents:
61029
diff
changeset
|
3401 (and (eq major-mode 'Info-mode) |
eebed65dbe97
(Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
Juri Linkov <juri@jurta.org>
parents:
61029
diff
changeset
|
3402 Info-tag-table-buffer |
eebed65dbe97
(Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
Juri Linkov <juri@jurta.org>
parents:
61029
diff
changeset
|
3403 (kill-buffer Info-tag-table-buffer))) |
eebed65dbe97
(Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
Juri Linkov <juri@jurta.org>
parents:
61029
diff
changeset
|
3404 |
26004
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25878
diff
changeset
|
3405 (defun Info-clone-buffer-hook () |
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25878
diff
changeset
|
3406 (when (bufferp Info-tag-table-buffer) |
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25878
diff
changeset
|
3407 (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
|
3408 (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
|
3409 (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
|
3410 (when (markerp m) |
38225
5d26670f49df
(Info-clone-buffer-hook): Unconditionally copy marker.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37837
diff
changeset
|
3411 (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
|
3412 (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
|
3413 (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
|
3414 (copy-marker (marker-position m))) |
5d26670f49df
(Info-clone-buffer-hook): Unconditionally copy marker.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37837
diff
changeset
|
3415 (make-marker)))))) |
26004
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25878
diff
changeset
|
3416 |
32286
c0b19a2770ca
(Info-goto-node, Info-menu): Doc fix.
Dave Love <fx@gnu.org>
parents:
32007
diff
changeset
|
3417 (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
|
3418 (set-keymap-parent map text-mode-map) |
c0b19a2770ca
(Info-goto-node, Info-menu): Doc fix.
Dave Love <fx@gnu.org>
parents:
32007
diff
changeset
|
3419 (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
|
3420 map) |
325 | 3421 "Local keymap used within `e' command of Info.") |
3422 | |
3423 ;; 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
|
3424 (put 'Info-edit-mode 'mode-class 'special) |
325 | 3425 |
3426 (defun Info-edit-mode () | |
3427 "Major mode for editing the contents of an Info node. | |
1477 | 3428 Like text mode with the addition of `Info-cease-edit' |
325 | 3429 which returns to Info mode for browsing. |
3430 \\{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
|
3431 (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
|
3432 (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
|
3433 (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
|
3434 (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
|
3435 (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
|
3436 (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
|
3437 (buffer-enable-undo (current-buffer)) |
62733
545cba9e95d4
(Info-mode, Info-edit-mode): Use run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
61987
diff
changeset
|
3438 (run-mode-hooks 'Info-edit-mode-hook)) |
325 | 3439 |
3440 (defun Info-edit () | |
3441 "Edit the contents of this Info node. | |
3442 Allowed only if variable `Info-enable-edit' is non-nil." | |
3443 (interactive) | |
3444 (or Info-enable-edit | |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
3445 (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
|
3446 (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
|
3447 (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
|
3448 "Editing: Type \\<Info-edit-map>\\[Info-cease-edit] to return to info"))) |
325 | 3449 |
3450 (defun Info-cease-edit () | |
3451 "Finish editing Info node; switch back to Info proper." | |
3452 (interactive) | |
3453 ;; Do this first, so nothing has changed if user C-g's at query. | |
3454 (and (buffer-modified-p) | |
3455 (y-or-n-p "Save the file? ") | |
3456 (save-buffer)) | |
3457 (use-local-map Info-mode-map) | |
3458 (setq major-mode 'Info-mode) | |
3459 (setq mode-name "Info") | |
3460 (Info-set-mode-line) | |
3461 (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
|
3462 (force-mode-line-update) |
325 | 3463 (and (marker-position Info-tag-table-marker) |
3464 (buffer-modified-p) | |
3465 (message "Tags may have changed. Use Info-tagify if necessary"))) | |
359 | 3466 |
12889
d912ac1e1f00
(Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12779
diff
changeset
|
3467 (defvar Info-file-list-for-emacs |
57770
c7ff2d3a33ee
(Info-file-list-for-emacs): Add ("Info" . "info")
Juri Linkov <juri@jurta.org>
parents:
57672
diff
changeset
|
3468 '("ediff" "eudc" "forms" "gnus" "info" ("Info" . "info") ("mh" . "mh-e") |
39364
bd687d055024
(Info-file-list-for-emacs): Add elements for ada-mode, ccmode,
Eli Zaretskii <eliz@gnu.org>
parents:
39213
diff
changeset
|
3469 "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
|
3470 ("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
|
3471 ("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
|
3472 ("skeleton" . "autotype") ("auto-insert" . "autotype") |
5d4414327c06
(Info-file-list-for-emacs): More elements for the
Eli Zaretskii <eliz@gnu.org>
parents:
30686
diff
changeset
|
3473 ("copyright" . "autotype") ("executable" . "autotype") |
5d4414327c06
(Info-file-list-for-emacs): More elements for the
Eli Zaretskii <eliz@gnu.org>
parents:
30686
diff
changeset
|
3474 ("time-stamp" . "autotype") ("quickurl" . "autotype") |
5d4414327c06
(Info-file-list-for-emacs): More elements for the
Eli Zaretskii <eliz@gnu.org>
parents:
30686
diff
changeset
|
3475 ("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
|
3476 ("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
|
3477 ("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
|
3478 "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
|
3479 ("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
|
3480 ("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
|
3481 ("rfc2045" . "emacs-mime") |
bd687d055024
(Info-file-list-for-emacs): Add elements for ada-mode, ccmode,
Eli Zaretskii <eliz@gnu.org>
parents:
39213
diff
changeset
|
3482 ("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
|
3483 ("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
|
3484 ("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
|
3485 ("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
|
3486 ("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
|
3487 ("mml" . "emacs-mime")) |
12889
d912ac1e1f00
(Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12779
diff
changeset
|
3488 "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
|
3489 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
|
3490 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
|
3491 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
|
3492 |
359 | 3493 (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
|
3494 "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
|
3495 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
|
3496 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
|
3497 defines heuristics for which Info manual to try. |
29621 | 3498 The locations are of the format used in `Info-history', i.e. |
57770
c7ff2d3a33ee
(Info-file-list-for-emacs): Add ("Info" . "info")
Juri Linkov <juri@jurta.org>
parents:
57672
diff
changeset
|
3499 \(FILENAME NODENAME BUFFERPOS\), where BUFFERPOS is the line number |
c7ff2d3a33ee
(Info-file-list-for-emacs): Add ("Info" . "info")
Juri Linkov <juri@jurta.org>
parents:
57672
diff
changeset
|
3500 in the first element of the returned list (which is treated specially in |
c7ff2d3a33ee
(Info-file-list-for-emacs): Add ("Info" . "info")
Juri Linkov <juri@jurta.org>
parents:
57672
diff
changeset
|
3501 `Info-goto-emacs-command-node'), and 0 for the rest elements of a list." |
c7ff2d3a33ee
(Info-file-list-for-emacs): Add ("Info" . "info")
Juri Linkov <juri@jurta.org>
parents:
57672
diff
changeset
|
3502 (let ((where '()) line-number |
21641
1174b1d6cbf6
(Info-menu): Allow extra spaces at start of menu item.
Richard M. Stallman <rms@gnu.org>
parents:
21197
diff
changeset
|
3503 (cmd-desc (concat "^\\* +" (regexp-quote (symbol-name command)) |
57672
d8b07169ce26
(Info-find-emacs-command-nodes): Adapt to Texinfo-4.7 style indexes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
57567
diff
changeset
|
3504 "\\( <[0-9]+>\\)?:\\s *\\(.*\\)\\." |
57770
c7ff2d3a33ee
(Info-file-list-for-emacs): Add ("Info" . "info")
Juri Linkov <juri@jurta.org>
parents:
57672
diff
changeset
|
3505 "\\(?:[ \t\n]+(line +\\([0-9]+\\))\\)?")) |
12889
d912ac1e1f00
(Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12779
diff
changeset
|
3506 (info-file "emacs")) ;default |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
3507 ;; Determine which Info file this command is documented in. |
12889
d912ac1e1f00
(Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12779
diff
changeset
|
3508 (if (get command 'info-file) |
d912ac1e1f00
(Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12779
diff
changeset
|
3509 (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
|
3510 ;; 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
|
3511 ;; various prefixes that we know. |
d912ac1e1f00
(Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12779
diff
changeset
|
3512 (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
|
3513 (while file-list |
d912ac1e1f00
(Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12779
diff
changeset
|
3514 (let* ((elt (car file-list)) |
d912ac1e1f00
(Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12779
diff
changeset
|
3515 (name (if (consp elt) |
d912ac1e1f00
(Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12779
diff
changeset
|
3516 (car elt) |
d912ac1e1f00
(Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12779
diff
changeset
|
3517 elt)) |
d912ac1e1f00
(Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12779
diff
changeset
|
3518 (file (if (consp elt) (cdr elt) elt)) |
57468
478f1e91eac3
(info-xref): Add underlining.
Richard M. Stallman <rms@gnu.org>
parents:
57329
diff
changeset
|
3519 (case-fold-search nil) |
12892
8b902b24d749
(Info-find-emacs-command-nodes): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
12889
diff
changeset
|
3520 (regexp (concat "\\`" (regexp-quote name) |
12889
d912ac1e1f00
(Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12779
diff
changeset
|
3521 "\\(\\'\\|-\\)"))) |
d912ac1e1f00
(Info-file-list-for-emacs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12779
diff
changeset
|
3522 (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
|
3523 (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
|
3524 (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
|
3525 (Info-find-node info-file "Top") |
46173131cdc4
(Info-find-emacs-command-nodes): Rewrite to use
Eli Zaretskii <eliz@gnu.org>
parents:
30738
diff
changeset
|
3526 ;; 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
|
3527 ;; getting into the node history. |
46173131cdc4
(Info-find-emacs-command-nodes): Rewrite to use
Eli Zaretskii <eliz@gnu.org>
parents:
30738
diff
changeset
|
3528 (let ((Info-history nil) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
3529 (Info-history-list nil) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
3530 node (nodes (Info-index-nodes))) |
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
3531 (Info-goto-node (car nodes)) |
30763
46173131cdc4
(Info-find-emacs-command-nodes): Rewrite to use
Eli Zaretskii <eliz@gnu.org>
parents:
30738
diff
changeset
|
3532 (while |
46173131cdc4
(Info-find-emacs-command-nodes): Rewrite to use
Eli Zaretskii <eliz@gnu.org>
parents:
30738
diff
changeset
|
3533 (progn |
46173131cdc4
(Info-find-emacs-command-nodes): Rewrite to use
Eli Zaretskii <eliz@gnu.org>
parents:
30738
diff
changeset
|
3534 (goto-char (point-min)) |
46173131cdc4
(Info-find-emacs-command-nodes): Rewrite to use
Eli Zaretskii <eliz@gnu.org>
parents:
30738
diff
changeset
|
3535 (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
|
3536 (setq where |
46173131cdc4
(Info-find-emacs-command-nodes): Rewrite to use
Eli Zaretskii <eliz@gnu.org>
parents:
30738
diff
changeset
|
3537 (cons (list Info-current-file |
46173131cdc4
(Info-find-emacs-command-nodes): Rewrite to use
Eli Zaretskii <eliz@gnu.org>
parents:
30738
diff
changeset
|
3538 (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
|
3539 0) |
57770
c7ff2d3a33ee
(Info-file-list-for-emacs): Add ("Info" . "info")
Juri Linkov <juri@jurta.org>
parents:
57672
diff
changeset
|
3540 where)) |
c7ff2d3a33ee
(Info-file-list-for-emacs): Add ("Info" . "info")
Juri Linkov <juri@jurta.org>
parents:
57672
diff
changeset
|
3541 (setq line-number (and (match-beginning 3) |
c7ff2d3a33ee
(Info-file-list-for-emacs): Add ("Info" . "info")
Juri Linkov <juri@jurta.org>
parents:
57672
diff
changeset
|
3542 (string-to-number (match-string 3))))) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
3543 (and (setq nodes (cdr nodes) node (car nodes)))) |
30763
46173131cdc4
(Info-find-emacs-command-nodes): Rewrite to use
Eli Zaretskii <eliz@gnu.org>
parents:
30738
diff
changeset
|
3544 (Info-goto-node node))) |
57770
c7ff2d3a33ee
(Info-file-list-for-emacs): Add ("Info" . "info")
Juri Linkov <juri@jurta.org>
parents:
57672
diff
changeset
|
3545 (if (and line-number where) |
c7ff2d3a33ee
(Info-file-list-for-emacs): Add ("Info" . "info")
Juri Linkov <juri@jurta.org>
parents:
57672
diff
changeset
|
3546 (cons (list (nth 0 (car where)) (nth 1 (car where)) line-number) |
c7ff2d3a33ee
(Info-file-list-for-emacs): Add ("Info" . "info")
Juri Linkov <juri@jurta.org>
parents:
57672
diff
changeset
|
3547 (cdr where)) |
c7ff2d3a33ee
(Info-file-list-for-emacs): Add ("Info" . "info")
Juri Linkov <juri@jurta.org>
parents:
57672
diff
changeset
|
3548 where))) |
359 | 3549 |
57770
c7ff2d3a33ee
(Info-file-list-for-emacs): Add ("Info" . "info")
Juri Linkov <juri@jurta.org>
parents:
57672
diff
changeset
|
3550 ;;;###autoload (put 'Info-goto-emacs-command-node 'info-file "emacs") |
359 | 3551 ;;;###autoload |
3552 (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
|
3553 "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
|
3554 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
|
3555 or in another manual found via COMMAND's `info-file' property or |
53246
c07db7df7073
(Info-unescape-quotes, Info-split-parameter-string)
John Paul Wallington <jpw@pobox.com>
parents:
52767
diff
changeset
|
3556 the variable `Info-file-list-for-emacs'. |
c07db7df7073
(Info-unescape-quotes, Info-split-parameter-string)
John Paul Wallington <jpw@pobox.com>
parents:
52767
diff
changeset
|
3557 COMMAND must be a symbol or string." |
359 | 3558 (interactive "CFind documentation for command: ") |
50454
583825022e8f
(Info-goto-emacs-command-node): If command
Masatake YAMATO <jet@gyve.org>
parents:
50072
diff
changeset
|
3559 ;; 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
|
3560 (if (stringp command) |
53246
c07db7df7073
(Info-unescape-quotes, Info-split-parameter-string)
John Paul Wallington <jpw@pobox.com>
parents:
52767
diff
changeset
|
3561 (setq command (intern command))) |
359 | 3562 (or (commandp command) |
3563 (signal 'wrong-type-argument (list 'commandp command))) | |
3564 (let ((where (Info-find-emacs-command-nodes command))) | |
3565 (if where | |
3566 (let ((num-matches (length where))) | |
3567 ;; Get Info running, and pop to it in another window. | |
3568 (save-window-excursion | |
3569 (info)) | |
55074 | 3570 (or (eq major-mode 'Info-mode) (pop-to-buffer "*info*")) |
30763
46173131cdc4
(Info-find-emacs-command-nodes): Rewrite to use
Eli Zaretskii <eliz@gnu.org>
parents:
30738
diff
changeset
|
3571 ;; 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
|
3572 ;; 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
|
3573 ;; pushed onto the history. |
57770
c7ff2d3a33ee
(Info-file-list-for-emacs): Add ("Info" . "info")
Juri Linkov <juri@jurta.org>
parents:
57672
diff
changeset
|
3574 (let ((Info-history nil) (Info-history-list nil) |
c7ff2d3a33ee
(Info-file-list-for-emacs): Add ("Info" . "info")
Juri Linkov <juri@jurta.org>
parents:
57672
diff
changeset
|
3575 (line-number (nth 2 (car where)))) |
c7ff2d3a33ee
(Info-file-list-for-emacs): Add ("Info" . "info")
Juri Linkov <juri@jurta.org>
parents:
57672
diff
changeset
|
3576 (Info-find-node (nth 0 (car where)) (nth 1 (car where))) |
c7ff2d3a33ee
(Info-file-list-for-emacs): Add ("Info" . "info")
Juri Linkov <juri@jurta.org>
parents:
57672
diff
changeset
|
3577 (if (and (integerp line-number) (> line-number 0)) |
c7ff2d3a33ee
(Info-file-list-for-emacs): Add ("Info" . "info")
Juri Linkov <juri@jurta.org>
parents:
57672
diff
changeset
|
3578 (forward-line (1- line-number)))) |
359 | 3579 (if (> num-matches 1) |
3580 (progn | |
30763
46173131cdc4
(Info-find-emacs-command-nodes): Rewrite to use
Eli Zaretskii <eliz@gnu.org>
parents:
30738
diff
changeset
|
3581 ;; (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
|
3582 ;; 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
|
3583 ;; nodes that were found on the history. |
359 | 3584 (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
|
3585 (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
|
3586 (1- num-matches) |
32df2b4d67cf
(Info-build-node-completions): Add a call to widen.
Richard M. Stallman <rms@gnu.org>
parents:
5555
diff
changeset
|
3587 (if (> num-matches 2) "ies" "y") |
59472
1e81e65f3201
(Info-history-forward): New variable.
Juri Linkov <juri@jurta.org>
parents:
59423
diff
changeset
|
3588 (substitute-command-keys "\\[Info-history-back]") |
6049
32df2b4d67cf
(Info-build-node-completions): Add a call to widen.
Richard M. Stallman <rms@gnu.org>
parents:
5555
diff
changeset
|
3589 (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
|
3590 (error "Couldn't find documentation for %s" command)))) |
359 | 3591 |
57770
c7ff2d3a33ee
(Info-file-list-for-emacs): Add ("Info" . "info")
Juri Linkov <juri@jurta.org>
parents:
57672
diff
changeset
|
3592 ;;;###autoload (put 'Info-goto-emacs-key-command-node 'info-file "emacs") |
359 | 3593 ;;;###autoload |
3594 (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
|
3595 "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
|
3596 KEY is a string. |
29621 | 3597 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
|
3598 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
|
3599 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
|
3600 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
|
3601 (interactive "kFind documentation for key: ") |
359 | 3602 (let ((command (key-binding key))) |
3603 (cond ((null command) | |
1484
6c2a714566d3
Rename buffer-flush-undo to buffer-disable-undo.
Richard M. Stallman <rms@gnu.org>
parents:
1477
diff
changeset
|
3604 (message "%s is undefined" (key-description key))) |
359 | 3605 ((and (interactive-p) |
3606 (eq command 'execute-extended-command)) | |
3607 (Info-goto-emacs-command-node | |
3608 (read-command "Find documentation for command: "))) | |
3609 (t | |
3610 (Info-goto-emacs-command-node command))))) | |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
3611 |
45784
95b7f625cdf5
(Info-fontify-node): Compute header line specially
Richard M. Stallman <rms@gnu.org>
parents:
45775
diff
changeset
|
3612 (defvar Info-next-link-keymap |
95b7f625cdf5
(Info-fontify-node): Compute header line specially
Richard M. Stallman <rms@gnu.org>
parents:
45775
diff
changeset
|
3613 (let ((keymap (make-sparse-keymap))) |
95b7f625cdf5
(Info-fontify-node): Compute header line specially
Richard M. Stallman <rms@gnu.org>
parents:
45775
diff
changeset
|
3614 (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
|
3615 (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
|
3616 (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
|
3617 (define-key keymap [mouse-2] 'Info-next) |
59423
3eca2bed63e4
(Info-mode-map, Info-next-link-keymap)
Kim F. Storm <storm@cua.dk>
parents:
58936
diff
changeset
|
3618 (define-key keymap [follow-link] 'mouse-face) |
45784
95b7f625cdf5
(Info-fontify-node): Compute header line specially
Richard M. Stallman <rms@gnu.org>
parents:
45775
diff
changeset
|
3619 keymap) |
95b7f625cdf5
(Info-fontify-node): Compute header line specially
Richard M. Stallman <rms@gnu.org>
parents:
45775
diff
changeset
|
3620 "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
|
3621 |
95b7f625cdf5
(Info-fontify-node): Compute header line specially
Richard M. Stallman <rms@gnu.org>
parents:
45775
diff
changeset
|
3622 (defvar Info-prev-link-keymap |
95b7f625cdf5
(Info-fontify-node): Compute header line specially
Richard M. Stallman <rms@gnu.org>
parents:
45775
diff
changeset
|
3623 (let ((keymap (make-sparse-keymap))) |
95b7f625cdf5
(Info-fontify-node): Compute header line specially
Richard M. Stallman <rms@gnu.org>
parents:
45775
diff
changeset
|
3624 (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
|
3625 (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
|
3626 (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
|
3627 (define-key keymap [mouse-2] 'Info-prev) |
59423
3eca2bed63e4
(Info-mode-map, Info-next-link-keymap)
Kim F. Storm <storm@cua.dk>
parents:
58936
diff
changeset
|
3628 (define-key keymap [follow-link] 'mouse-face) |
45784
95b7f625cdf5
(Info-fontify-node): Compute header line specially
Richard M. Stallman <rms@gnu.org>
parents:
45775
diff
changeset
|
3629 keymap) |
95b7f625cdf5
(Info-fontify-node): Compute header line specially
Richard M. Stallman <rms@gnu.org>
parents:
45775
diff
changeset
|
3630 "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
|
3631 |
95b7f625cdf5
(Info-fontify-node): Compute header line specially
Richard M. Stallman <rms@gnu.org>
parents:
45775
diff
changeset
|
3632 (defvar Info-up-link-keymap |
95b7f625cdf5
(Info-fontify-node): Compute header line specially
Richard M. Stallman <rms@gnu.org>
parents:
45775
diff
changeset
|
3633 (let ((keymap (make-sparse-keymap))) |
95b7f625cdf5
(Info-fontify-node): Compute header line specially
Richard M. Stallman <rms@gnu.org>
parents:
45775
diff
changeset
|
3634 (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
|
3635 (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
|
3636 (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
|
3637 (define-key keymap [mouse-2] 'Info-up) |
59423
3eca2bed63e4
(Info-mode-map, Info-next-link-keymap)
Kim F. Storm <storm@cua.dk>
parents:
58936
diff
changeset
|
3638 (define-key keymap [follow-link] 'mouse-face) |
45784
95b7f625cdf5
(Info-fontify-node): Compute header line specially
Richard M. Stallman <rms@gnu.org>
parents:
45775
diff
changeset
|
3639 keymap) |
95b7f625cdf5
(Info-fontify-node): Compute header line specially
Richard M. Stallman <rms@gnu.org>
parents:
45775
diff
changeset
|
3640 "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
|
3641 |
4410
25fb71fc2643
(Info-fontify-node): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4261
diff
changeset
|
3642 (defun Info-fontify-node () |
54754 | 3643 "Fontify the node." |
3644 (save-excursion | |
3645 (let* ((inhibit-read-only t) | |
3646 (case-fold-search t) | |
3647 paragraph-markers | |
3648 (not-fontified-p ; the node hasn't already been fontified | |
3649 (not (let ((where (next-property-change (point-min)))) | |
3650 (and where (not (= where (point-max))))))) | |
3651 (fontify-visited-p ; visited nodes need to be re-fontified | |
3652 (and Info-fontify-visited-nodes | |
3653 ;; Don't take time to refontify visited nodes in huge nodes | |
57567
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3654 (< (- (point-max) (point-min)) Info-fontify-maximum-menu-size))) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3655 rbeg rend) |
54754 | 3656 |
3657 ;; Fontify header line | |
3658 (goto-char (point-min)) | |
3659 (when (and not-fontified-p (looking-at "^\\(File: [^,: \t]+,?[ \t]+\\)?")) | |
3660 (goto-char (match-end 0)) | |
3661 (while (looking-at "[ \t]*\\([^:, \t\n]+\\):[ \t]+\\([^:,\t\n]+\\),?") | |
3662 (goto-char (match-end 0)) | |
3663 (let* ((nbeg (match-beginning 2)) | |
3664 (nend (match-end 2)) | |
3665 (tbeg (match-beginning 1)) | |
3666 (tag (match-string 1))) | |
66604
8c3381fde2cc
(Info-fontify-node): Downcase node header keywords Node,
Juri Linkov <juri@jurta.org>
parents:
66602
diff
changeset
|
3667 (if (string-equal (downcase tag) "node") |
54754 | 3668 (put-text-property nbeg nend 'font-lock-face 'info-header-node) |
3669 (put-text-property nbeg nend 'font-lock-face 'info-header-xref) | |
3670 (put-text-property tbeg nend 'mouse-face 'highlight) | |
3671 (put-text-property tbeg nend | |
3672 'help-echo | |
59423
3eca2bed63e4
(Info-mode-map, Info-next-link-keymap)
Kim F. Storm <storm@cua.dk>
parents:
58936
diff
changeset
|
3673 (concat "mouse-2: Go to node " |
54754 | 3674 (buffer-substring nbeg nend))) |
3675 ;; Always set up the text property keymap. | |
3676 ;; It will either be used in the buffer | |
3677 ;; or copied in the header line. | |
66604
8c3381fde2cc
(Info-fontify-node): Downcase node header keywords Node,
Juri Linkov <juri@jurta.org>
parents:
66602
diff
changeset
|
3678 (put-text-property |
8c3381fde2cc
(Info-fontify-node): Downcase node header keywords Node,
Juri Linkov <juri@jurta.org>
parents:
66602
diff
changeset
|
3679 tbeg nend 'keymap |
8c3381fde2cc
(Info-fontify-node): Downcase node header keywords Node,
Juri Linkov <juri@jurta.org>
parents:
66602
diff
changeset
|
3680 (cond |
8c3381fde2cc
(Info-fontify-node): Downcase node header keywords Node,
Juri Linkov <juri@jurta.org>
parents:
66602
diff
changeset
|
3681 ((string-equal (downcase tag) "prev") Info-prev-link-keymap) |
8c3381fde2cc
(Info-fontify-node): Downcase node header keywords Node,
Juri Linkov <juri@jurta.org>
parents:
66602
diff
changeset
|
3682 ((string-equal (downcase tag) "next") Info-next-link-keymap) |
8c3381fde2cc
(Info-fontify-node): Downcase node header keywords Node,
Juri Linkov <juri@jurta.org>
parents:
66602
diff
changeset
|
3683 ((string-equal (downcase tag) "up" ) Info-up-link-keymap)))))) |
54754 | 3684 (when Info-use-header-line |
3685 (goto-char (point-min)) | |
66057
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3686 (let* ((header-end (line-end-position)) |
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3687 (header |
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3688 ;; If we find neither Next: nor Prev: link, show the entire |
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3689 ;; node header. Otherwise, don't show the File: and Node: |
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3690 ;; parts, to avoid wasting precious space on information that |
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3691 ;; is available in the mode line. |
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3692 (if (re-search-forward |
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3693 "\\(next\\|up\\|prev[ious]*\\): " |
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3694 header-end t) |
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3695 (progn |
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3696 (goto-char (match-beginning 1)) |
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3697 (buffer-substring (point) header-end)) |
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3698 (if (re-search-forward "node:[ \t]*[^ \t]+[ \t]*" |
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3699 header-end t) |
54754 | 3700 (concat "No next, prev or up links -- " |
66057
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3701 (buffer-substring (point) header-end)) |
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3702 (buffer-substring (point) header-end))))) |
54754 | 3703 (put-text-property (point-min) (1+ (point-min)) |
65069
fc42a1decf2d
(Info-insert-dir): Use save-excursion around insert-buffer-substring.
Juri Linkov <juri@jurta.org>
parents:
64961
diff
changeset
|
3704 'header-line |
fc42a1decf2d
(Info-insert-dir): Use save-excursion around insert-buffer-substring.
Juri Linkov <juri@jurta.org>
parents:
64961
diff
changeset
|
3705 (replace-regexp-in-string |
fc42a1decf2d
(Info-insert-dir): Use save-excursion around insert-buffer-substring.
Juri Linkov <juri@jurta.org>
parents:
64961
diff
changeset
|
3706 "%" |
fc42a1decf2d
(Info-insert-dir): Use save-excursion around insert-buffer-substring.
Juri Linkov <juri@jurta.org>
parents:
64961
diff
changeset
|
3707 ;; Preserve text properties on duplicated `%'. |
fc42a1decf2d
(Info-insert-dir): Use save-excursion around insert-buffer-substring.
Juri Linkov <juri@jurta.org>
parents:
64961
diff
changeset
|
3708 (lambda (s) (concat s s)) header)) |
54754 | 3709 ;; Hide the part of the first line |
3710 ;; that is in the header, if it is just part. | |
3711 (unless (bobp) | |
3712 ;; Hide the punctuation at the end, too. | |
3713 (skip-chars-backward " \t,") | |
3714 (put-text-property (point) header-end 'invisible t))))) | |
3715 | |
3716 ;; Fontify titles | |
3717 (goto-char (point-min)) | |
66057
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3718 (when (and font-lock-mode not-fontified-p) |
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3719 (while (and (re-search-forward "\n\\([^ \t\n].+\\)\n\\(\\*\\*+\\|==+\\|--+\\|\\.\\.+\\)$" |
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3720 nil t) |
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3721 ;; Only consider it as an underlined title if the ASCII |
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3722 ;; underline has the same size as the text. A typical |
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3723 ;; counter example is when a continuation "..." is alone |
709ea6d61dbd
(Info-fontify-node): Don't be fooled by a lone "...".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66010
diff
changeset
|
3724 ;; on a line. |
66606
a39846866a71
(Info-fontify-node): Use `string-width' for fontifying underlined titles.
Juri Linkov <juri@jurta.org>
parents:
66604
diff
changeset
|
3725 (= (string-width (match-string 1)) |
a39846866a71
(Info-fontify-node): Use `string-width' for fontifying underlined titles.
Juri Linkov <juri@jurta.org>
parents:
66604
diff
changeset
|
3726 (string-width (match-string 2)))) |
54754 | 3727 (let* ((c (preceding-char)) |
3728 (face | |
63208
0502430a647c
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-378
Miles Bader <miles@gnu.org>
parents:
63065
diff
changeset
|
3729 (cond ((= c ?*) 'info-title-1) |
0502430a647c
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-378
Miles Bader <miles@gnu.org>
parents:
63065
diff
changeset
|
3730 ((= c ?=) 'info-title-2) |
0502430a647c
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-378
Miles Bader <miles@gnu.org>
parents:
63065
diff
changeset
|
3731 ((= c ?-) 'info-title-3) |
0502430a647c
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-378
Miles Bader <miles@gnu.org>
parents:
63065
diff
changeset
|
3732 (t 'info-title-4)))) |
54754 | 3733 (put-text-property (match-beginning 1) (match-end 1) |
3734 'font-lock-face face)) | |
3735 ;; This is a serious problem for trying to handle multiple | |
3736 ;; frame types at once. We want this text to be invisible | |
3737 ;; on frames that can display the font above. | |
3738 (when (memq (framep (selected-frame)) '(x pc w32 mac)) | |
3739 (add-text-properties (1- (match-beginning 2)) (match-end 2) | |
3740 '(invisible t front-sticky nil rear-nonsticky t))))) | |
49424
59c37b87bb18
(Info-try-follow-nearest-node): Add case: Handle menu item
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
49390
diff
changeset
|
3741 |
54754 | 3742 ;; Fontify cross references |
3743 (goto-char (point-min)) | |
3744 (when (or not-fontified-p fontify-visited-p) | |
3745 (while (re-search-forward "\\(\\*Note[ \n\t]+\\)\\([^:]*\\)\\(:[ \t]*\\([^.,:(]*\\)\\(\\(([^)]*)\\)[^.,:]*\\)?[,:]?\n?\\)" nil t) | |
3746 (let ((start (match-beginning 0)) | |
3747 (next (point)) | |
3748 other-tag) | |
3749 (when not-fontified-p | |
3750 (when Info-hide-note-references | |
56882
dca3dbca04cc
(Info-fontify-node): Don't compute other-tag if Info-hide-note-references=hide.
Juri Linkov <juri@jurta.org>
parents:
56866
diff
changeset
|
3751 (when (not (eq Info-hide-note-references 'hide)) |
dca3dbca04cc
(Info-fontify-node): Don't compute other-tag if Info-hide-note-references=hide.
Juri Linkov <juri@jurta.org>
parents:
56866
diff
changeset
|
3752 ;; *Note is often used where *note should have been |
dca3dbca04cc
(Info-fontify-node): Don't compute other-tag if Info-hide-note-references=hide.
Juri Linkov <juri@jurta.org>
parents:
56866
diff
changeset
|
3753 (goto-char start) |
dca3dbca04cc
(Info-fontify-node): Don't compute other-tag if Info-hide-note-references=hide.
Juri Linkov <juri@jurta.org>
parents:
56866
diff
changeset
|
3754 (skip-syntax-backward " ") |
66459
bdc911746f64
(Info-fontify-node): Fix detection of sentence-break before *Note.
Richard M. Stallman <rms@gnu.org>
parents:
66279
diff
changeset
|
3755 (when (memq (char-before) '(?\( ?\[ ?\{)) |
bdc911746f64
(Info-fontify-node): Fix detection of sentence-break before *Note.
Richard M. Stallman <rms@gnu.org>
parents:
66279
diff
changeset
|
3756 ;; Check whether the paren is preceded by |
bdc911746f64
(Info-fontify-node): Fix detection of sentence-break before *Note.
Richard M. Stallman <rms@gnu.org>
parents:
66279
diff
changeset
|
3757 ;; an end of sentence |
bdc911746f64
(Info-fontify-node): Fix detection of sentence-break before *Note.
Richard M. Stallman <rms@gnu.org>
parents:
66279
diff
changeset
|
3758 (skip-syntax-backward " (")) |
56882
dca3dbca04cc
(Info-fontify-node): Don't compute other-tag if Info-hide-note-references=hide.
Juri Linkov <juri@jurta.org>
parents:
56866
diff
changeset
|
3759 (setq other-tag |
66670
d5afffbc0c96
(Info-fontify-node): Don't display extra "see" if there already is one here.
Richard M. Stallman <rms@gnu.org>
parents:
66606
diff
changeset
|
3760 (cond ((save-match-data (looking-back "\\<see")) |
d5afffbc0c96
(Info-fontify-node): Don't display extra "see" if there already is one here.
Richard M. Stallman <rms@gnu.org>
parents:
66606
diff
changeset
|
3761 "") |
d5afffbc0c96
(Info-fontify-node): Don't display extra "see" if there already is one here.
Richard M. Stallman <rms@gnu.org>
parents:
66606
diff
changeset
|
3762 ((memq (char-before) '(nil ?\. ?! ??)) |
56882
dca3dbca04cc
(Info-fontify-node): Don't compute other-tag if Info-hide-note-references=hide.
Juri Linkov <juri@jurta.org>
parents:
56866
diff
changeset
|
3763 "See ") |
66459
bdc911746f64
(Info-fontify-node): Fix detection of sentence-break before *Note.
Richard M. Stallman <rms@gnu.org>
parents:
66279
diff
changeset
|
3764 ((save-match-data |
bdc911746f64
(Info-fontify-node): Fix detection of sentence-break before *Note.
Richard M. Stallman <rms@gnu.org>
parents:
66279
diff
changeset
|
3765 (save-excursion |
bdc911746f64
(Info-fontify-node): Fix detection of sentence-break before *Note.
Richard M. Stallman <rms@gnu.org>
parents:
66279
diff
changeset
|
3766 (search-forward "\n\n" start t))) |
bdc911746f64
(Info-fontify-node): Fix detection of sentence-break before *Note.
Richard M. Stallman <rms@gnu.org>
parents:
66279
diff
changeset
|
3767 "See ") |
bdc911746f64
(Info-fontify-node): Fix detection of sentence-break before *Note.
Richard M. Stallman <rms@gnu.org>
parents:
66279
diff
changeset
|
3768 (t "see ")))) |
54754 | 3769 (goto-char next) |
3770 (add-text-properties | |
3771 (match-beginning 1) | |
3772 (or (save-match-data | |
3773 ;; Don't hide \n after *Note | |
3774 (let ((start1 (match-beginning 1))) | |
3775 (if (string-match "\n" (match-string 1)) | |
3776 (+ start1 (match-beginning 0))))) | |
3777 (match-end 1)) | |
56882
dca3dbca04cc
(Info-fontify-node): Don't compute other-tag if Info-hide-note-references=hide.
Juri Linkov <juri@jurta.org>
parents:
56866
diff
changeset
|
3778 (if other-tag |
54754 | 3779 `(display ,other-tag front-sticky nil rear-nonsticky t) |
3780 '(invisible t front-sticky nil rear-nonsticky t)))) | |
3781 (add-text-properties | |
3782 (match-beginning 2) (match-end 2) | |
3783 (list | |
3784 'help-echo (if (or (match-end 5) | |
3785 (not (equal (match-string 4) ""))) | |
3786 (concat "mouse-2: go to " (or (match-string 5) | |
3787 (match-string 4))) | |
3788 "mouse-2: go to this node") | |
3789 'mouse-face 'highlight))) | |
3790 (when (or not-fontified-p fontify-visited-p) | |
57567
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3791 (setq rbeg (match-beginning 2) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3792 rend (match-end 2)) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3793 (put-text-property |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3794 rbeg rend |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3795 'font-lock-face |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3796 ;; Display visited nodes in a different face |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3797 (if (and Info-fontify-visited-nodes |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3798 (save-match-data |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3799 (let* ((node (replace-regexp-in-string |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3800 "^[ \t]+" "" |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3801 (replace-regexp-in-string |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3802 "[ \t\n]+" " " |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3803 (or (match-string 5) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3804 (and (not (equal (match-string 4) "")) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3805 (match-string 4)) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3806 (match-string 2))))) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3807 (file (file-name-nondirectory |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3808 Info-current-file)) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3809 (hl Info-history-list) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3810 res) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3811 (if (string-match "(\\([^)]+\\))\\([^)]*\\)" node) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3812 (setq file (file-name-nondirectory |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3813 (match-string 1 node)) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3814 node (if (equal (match-string 2 node) "") |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3815 "Top" |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3816 (match-string 2 node)))) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3817 (while hl |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3818 (if (and (string-equal node (nth 1 (car hl))) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3819 (string-equal file |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3820 (file-name-nondirectory |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3821 (nth 0 (car hl))))) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3822 (setq res (car hl) hl nil) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3823 (setq hl (cdr hl)))) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3824 res))) 'info-xref-visited 'info-xref)) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3825 ;; For multiline ref, unfontify newline and surrounding whitespace |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3826 (save-excursion |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3827 (goto-char rbeg) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3828 (save-match-data |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3829 (while (re-search-forward "\\s-*\n\\s-*" rend t nil) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3830 (remove-text-properties (match-beginning 0) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3831 (match-end 0) |
b313796ea830
(Info-fontify-node): For multiline refs,
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
57468
diff
changeset
|
3832 '(font-lock-face t)))))) |
54754 | 3833 (when not-fontified-p |
3834 (when (memq Info-hide-note-references '(t hide)) | |
3835 (add-text-properties (match-beginning 3) (match-end 3) | |
3836 '(invisible t front-sticky nil rear-nonsticky t)) | |
3837 ;; Unhide the file name of the external reference in parens | |
55074 | 3838 (if (and (match-string 6) (not (eq Info-hide-note-references 'hide))) |
54754 | 3839 (remove-text-properties (match-beginning 6) (match-end 6) |
3840 '(invisible t front-sticky nil rear-nonsticky t))) | |
3841 ;; Unhide newline because hidden newlines cause too long lines | |
3842 (save-match-data | |
55074 | 3843 (let ((beg3 (match-beginning 3)) |
3844 (end3 (match-end 3))) | |
3845 (if (and (string-match "\n[ \t]*" (match-string 3)) | |
3846 (not (save-match-data | |
3847 (save-excursion | |
3848 (goto-char (1+ end3)) | |
3849 (looking-at "[.)]*$"))))) | |
3850 (remove-text-properties (+ beg3 (match-beginning 0)) | |
3851 (+ beg3 (match-end 0)) | |
54754 | 3852 '(invisible t front-sticky nil rear-nonsticky t)))))) |
3853 (when (and Info-refill-paragraphs Info-hide-note-references) | |
3854 (push (set-marker (make-marker) start) | |
3855 paragraph-markers)))))) | |
48287
205cb7dc9d47
(Info-fontify-node): New local list paragraph-markers.
Kim F. Storm <storm@cua.dk>
parents:
48161
diff
changeset
|
3856 |
54754 | 3857 ;; Refill paragraphs (experimental feature) |
3858 (when (and not-fontified-p | |
3859 Info-refill-paragraphs | |
3860 paragraph-markers) | |
3861 (let ((fill-nobreak-invisible t) | |
3862 (fill-individual-varying-indent nil) | |
3863 (paragraph-start "\f\\|[ \t]*[-*]\\|[ \t]*$") | |
3864 (paragraph-separate ".*\\.[ \t]*\n[ \t]\\|[ \t]*[-*]\\|[ \t\f]*$") | |
3865 (adaptive-fill-mode nil)) | |
3866 (goto-char (point-max)) | |
66117
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3867 (dolist (m paragraph-markers) |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3868 (when (< m (point)) |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3869 (goto-char m) |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3870 (beginning-of-line) |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3871 (let ((beg (point))) |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3872 (when (zerop (forward-paragraph)) |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3873 (fill-individual-paragraphs beg (point) nil nil) |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3874 (goto-char beg)))) |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3875 (set-marker m nil)))) |
48103
7d7f2b855580
(Info-follow-reference, Info-next-reference)
Kim F. Storm <storm@cua.dk>
parents:
47794
diff
changeset
|
3876 |
54754 | 3877 ;; Fontify menu items |
3878 (goto-char (point-min)) | |
3879 (when (and (or not-fontified-p fontify-visited-p) | |
3880 (search-forward "\n* Menu:" nil t) | |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
3881 (not (Info-index-node)) |
54754 | 3882 ;; Don't take time to annotate huge menus |
3883 (< (- (point-max) (point)) Info-fontify-maximum-menu-size)) | |
3884 (let ((n 0) | |
3885 cont) | |
3886 (while (re-search-forward | |
61450
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3887 (concat "^\\* Menu:\\|\\(?:^\\* +\\(" Info-menu-entry-name-re "\\)\\(:" |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3888 Info-node-spec-re "\\([ \t]*\\)\\)\\)") |
54754 | 3889 nil t) |
61450
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3890 (when (match-beginning 1) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3891 (when not-fontified-p |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3892 (setq n (1+ n)) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3893 (if (and (<= n 9) (zerop (% n 3))) ; visual aids to help with 1-9 keys |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3894 (put-text-property (match-beginning 0) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3895 (1+ (match-beginning 0)) |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
3896 'font-lock-face 'info-menu-star))) |
61450
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3897 (when not-fontified-p |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3898 (add-text-properties |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3899 (match-beginning 1) (match-end 1) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3900 (list |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3901 'help-echo (if (and (match-end 3) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3902 (not (equal (match-string 3) ""))) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3903 (concat "mouse-2: go to " (match-string 3)) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3904 "mouse-2: go to this node") |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3905 'mouse-face 'highlight))) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3906 (when (or not-fontified-p fontify-visited-p) |
66117
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3907 (put-text-property |
61450
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3908 (match-beginning 1) (match-end 1) |
66117
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3909 'font-lock-face |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3910 ;; Display visited menu items in a different face |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3911 (if (and Info-fontify-visited-nodes |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3912 (save-match-data |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3913 (let ((node (if (equal (match-string 3) "") |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3914 (match-string 1) |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3915 (match-string 3))) |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3916 (file (file-name-nondirectory Info-current-file)) |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3917 (hl Info-history-list) |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3918 res) |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3919 (if (string-match "(\\([^)]+\\))\\([^)]*\\)" node) |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3920 (setq file (file-name-nondirectory |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3921 (match-string 1 node)) |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3922 node (if (equal (match-string 2 node) "") |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3923 "Top" |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3924 (match-string 2 node)))) |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3925 (while hl |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3926 (if (and (string-equal node (nth 1 (car hl))) |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3927 (string-equal file |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3928 (file-name-nondirectory |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3929 (nth 0 (car hl))))) |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3930 (setq res (car hl) hl nil) |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3931 (setq hl (cdr hl)))) |
634ee145589e
(Info-fontify-node): Use dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66057
diff
changeset
|
3932 res))) 'info-xref-visited 'info-xref))) |
61450
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3933 (when (and not-fontified-p (memq Info-hide-note-references '(t hide))) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3934 (put-text-property (match-beginning 2) (1- (match-end 6)) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3935 'invisible t) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3936 ;; Unhide the file name in parens |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3937 (if (and (match-end 4) (not (eq (char-after (match-end 4)) ?.))) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3938 (remove-text-properties (match-beginning 4) (match-end 4) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3939 '(invisible t))) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3940 ;; We need a stretchable space like :align-to but with |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3941 ;; a minimum value. |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3942 (put-text-property (1- (match-end 6)) (match-end 6) 'display |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3943 (if (>= 22 (- (match-end 1) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3944 (match-beginning 0))) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3945 '(space :align-to 24) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3946 '(space :width 2))) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3947 (setq cont (looking-at ".")) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3948 (while (and (= (forward-line 1) 0) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3949 (looking-at "\\([ \t]+\\)[^*\n]")) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3950 (put-text-property (match-beginning 1) (1- (match-end 1)) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3951 'invisible t) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3952 (put-text-property (1- (match-end 1)) (match-end 1) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3953 'display |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3954 (if cont |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3955 '(space :align-to 26) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3956 '(space :align-to 24))) |
4ccc4c9adf16
(Info-fontify-node): Handle fontification of multiple * Menu lines in one node.
Richard M. Stallman <rms@gnu.org>
parents:
61394
diff
changeset
|
3957 (setq cont t))))))) |
48103
7d7f2b855580
(Info-follow-reference, Info-next-reference)
Kim F. Storm <storm@cua.dk>
parents:
47794
diff
changeset
|
3958 |
54754 | 3959 ;; Fontify menu headers |
3960 ;; Add the face `info-menu-header' to any header before a menu entry | |
3961 (goto-char (point-min)) | |
3962 (when (and not-fontified-p (re-search-forward "^\\* Menu:" nil t)) | |
3963 (put-text-property (match-beginning 0) (match-end 0) | |
3964 'font-lock-face 'info-menu-header) | |
3965 (while (re-search-forward "\n\n\\([^*\n ].*\\)\n\n?[*]" nil t) | |
3966 (put-text-property (match-beginning 1) (match-end 1) | |
3967 'font-lock-face 'info-menu-header))) | |
3968 | |
55174
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
3969 ;; Hide index line numbers |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
3970 (goto-char (point-min)) |
55751
450a4292b3b7
(Info-index-nodes): New var and fun.
Juri Linkov <juri@jurta.org>
parents:
55200
diff
changeset
|
3971 (when (and not-fontified-p (Info-index-node)) |
55174
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
3972 (while (re-search-forward "[ \t\n]*(line +[0-9]+)" nil t) |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
3973 (put-text-property (match-beginning 0) (match-end 0) |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
3974 'invisible t))) |
084cf910857b
Add *info*<[0-9]+> to same-window-regexps instead of
Juri Linkov <juri@jurta.org>
parents:
55153
diff
changeset
|
3975 |
54754 | 3976 ;; Fontify http and ftp references |
3977 (goto-char (point-min)) | |
3978 (when not-fontified-p | |
3979 (while (re-search-forward "[hf]t?tp://[^ \t\n\"`({<>})']+" nil t) | |
3980 (add-text-properties (match-beginning 0) (match-end 0) | |
3981 '(font-lock-face info-xref | |
3982 mouse-face highlight | |
3983 help-echo "mouse-2: go to this URL")))) | |
3984 | |
3985 (set-buffer-modified-p nil)))) | |
16981
643e0f90e153
Handle multiple Info buffers.
Richard M. Stallman <rms@gnu.org>
parents:
16790
diff
changeset
|
3986 |
20755
0ceaf8e0782b
Added speedbar support function `Info-speedbar-buttons',
Eric M. Ludlam <zappo@gnu.org>
parents:
20514
diff
changeset
|
3987 ;;; Speedbar support: |
0ceaf8e0782b
Added speedbar support function `Info-speedbar-buttons',
Eric M. Ludlam <zappo@gnu.org>
parents:
20514
diff
changeset
|
3988 ;; These functions permit speedbar to display the "tags" in the |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
3989 ;; current Info node. |
22733
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
3990 (eval-when-compile (require 'speedbar)) |
20755
0ceaf8e0782b
Added speedbar support function `Info-speedbar-buttons',
Eric M. Ludlam <zappo@gnu.org>
parents:
20514
diff
changeset
|
3991 |
22733
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
3992 (defvar Info-speedbar-key-map nil |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
3993 "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
|
3994 |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
3995 (defun Info-install-speedbar-variables () |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
3996 "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
|
3997 (if Info-speedbar-key-map |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
3998 nil |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
3999 (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
|
4000 |
22733
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4001 ;; Basic tree features |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4002 (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
|
4003 (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
|
4004 (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
|
4005 (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
|
4006 ) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4007 |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4008 (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
|
4009 Info-speedbar-key-map |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4010 Info-speedbar-hierarchy-buttons))) |
20755
0ceaf8e0782b
Added speedbar support function `Info-speedbar-buttons',
Eric M. Ludlam <zappo@gnu.org>
parents:
20514
diff
changeset
|
4011 |
0ceaf8e0782b
Added speedbar support function `Info-speedbar-buttons',
Eric M. Ludlam <zappo@gnu.org>
parents:
20514
diff
changeset
|
4012 (defvar Info-speedbar-menu-items |
22733
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4013 '(["Browse Node" speedbar-edit-line t] |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4014 ["Expand Node" speedbar-expand-line |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4015 (save-excursion (beginning-of-line) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4016 (looking-at "[0-9]+: *.\\+. "))] |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4017 ["Contract Node" speedbar-contract-line |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4018 (save-excursion (beginning-of-line) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4019 (looking-at "[0-9]+: *.-. "))] |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4020 ) |
20755
0ceaf8e0782b
Added speedbar support function `Info-speedbar-buttons',
Eric M. Ludlam <zappo@gnu.org>
parents:
20514
diff
changeset
|
4021 "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
|
4022 |
22733
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4023 ;; 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
|
4024 (if (featurep 'speedbar) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4025 (Info-install-speedbar-variables) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4026 (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
|
4027 |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4028 ;;; Info hierarchy display method |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4029 ;;;###autoload |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4030 (defun Info-speedbar-browser () |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
4031 "Initialize speedbar to display an Info node browser. |
22733
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4032 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
|
4033 (interactive) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4034 (require 'speedbar) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4035 ;; Make sure that speedbar is active |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4036 (speedbar-frame-mode 1) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4037 ;; 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
|
4038 (speedbar-change-initial-expansion-list "Info") |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4039 ) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4040 |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4041 (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
|
4042 "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
|
4043 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
|
4044 DEPTH is the current indentation depth. |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4045 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
|
4046 specific node to expand." |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4047 (if (and (not node) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4048 (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
|
4049 (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
|
4050 (looking-at "Info Nodes:")))) |
22733
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4051 ;; Update our "current node" maybe? |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4052 nil |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4053 ;; 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
|
4054 ;; being known at creation time. |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4055 (if (not node) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4056 (speedbar-with-writable (insert "Info Nodes:\n"))) |
65780
6e229fd94815
* speedbar.el: Remove RCS tag.
Chong Yidong <cyd@stupidchicken.com>
parents:
65680
diff
changeset
|
4057 (let ((completions nil)) |
6e229fd94815
* speedbar.el: Remove RCS tag.
Chong Yidong <cyd@stupidchicken.com>
parents:
65680
diff
changeset
|
4058 (speedbar-select-attached-frame) |
22894
186b2098dcd8
(Info-speedbar-hierarchy-buttons): Improved the speedbar frame management.
Eric M. Ludlam <zappo@gnu.org>
parents:
22863
diff
changeset
|
4059 (save-window-excursion |
186b2098dcd8
(Info-speedbar-hierarchy-buttons): Improved the speedbar frame management.
Eric M. Ludlam <zappo@gnu.org>
parents:
22863
diff
changeset
|
4060 (setq completions |
186b2098dcd8
(Info-speedbar-hierarchy-buttons): Improved the speedbar frame management.
Eric M. Ludlam <zappo@gnu.org>
parents:
22863
diff
changeset
|
4061 (Info-speedbar-fetch-file-nodes (or node '"(dir)top")))) |
65825
b89d9c4d5386
* info.el (Info-next, Info-prev, Info-up): Select info buffer, in
Chong Yidong <cyd@stupidchicken.com>
parents:
65780
diff
changeset
|
4062 (select-frame (speedbar-current-frame)) |
22733
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4063 (if completions |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4064 (speedbar-with-writable |
51434
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
4065 (dolist (completion completions) |
22733
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4066 (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
|
4067 (cdr completion) |
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
4068 (car completion) |
22733
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4069 'Info-speedbar-goto-node |
51434
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
4070 (cdr completion) |
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
4071 'info-xref depth)) |
22733
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4072 t) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4073 nil)))) |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28559
diff
changeset
|
4074 |
22733
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4075 (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
|
4076 "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
|
4077 The INDENT level is ignored." |
65780
6e229fd94815
* speedbar.el: Remove RCS tag.
Chong Yidong <cyd@stupidchicken.com>
parents:
65680
diff
changeset
|
4078 (speedbar-select-attached-frame) |
29446
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
4079 (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
|
4080 (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
|
4081 (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
|
4082 (if bwin |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
4083 (progn |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
4084 (select-window bwin) |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
4085 (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
|
4086 (if speedbar-power-click |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
4087 (let ((pop-up-frames t)) (select-window (display-buffer buff))) |
65780
6e229fd94815
* speedbar.el: Remove RCS tag.
Chong Yidong <cyd@stupidchicken.com>
parents:
65680
diff
changeset
|
4088 (speedbar-select-attached-frame) |
29446
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
4089 (switch-to-buffer buff))) |
51434
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
4090 (if (not (string-match "^(\\([^)]+\\))\\([^.]+\\)$" node)) |
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
4091 (error "Invalid node %s" node) |
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
4092 (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
|
4093 ;; 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
|
4094 ;; 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
|
4095 ;; 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
|
4096 (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
|
4097 (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
|
4098 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
|
4099 |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4100 (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
|
4101 "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
|
4102 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
|
4103 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
|
4104 INDENT is the current indentation depth." |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4105 (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
|
4106 (speedbar-change-expand-button-char ?-) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4107 (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
|
4108 (save-excursion |
009f1caf830f
Bind case-fold-search to t when searching in case
Gerd Moellmann <gerd@gnu.org>
parents:
29410
diff
changeset
|
4109 (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
|
4110 (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
|
4111 (speedbar-change-expand-button-char ?-) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4112 (speedbar-change-expand-button-char ??))) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4113 ((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
|
4114 (speedbar-change-expand-button-char ?+) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4115 (speedbar-delete-subblock indent)) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4116 (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
|
4117 (speedbar-center-buffer-smartly)) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4118 |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4119 (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
|
4120 "Fetch the subnodes from the info NODESPEC. |
64071
5a1b36dec43a
(Info-history, Info-history-forward, Info-history-list,
Juanma Barranquero <lekktu@gmail.com>
parents:
64013
diff
changeset
|
4121 NODESPEC is a string of the form: (file)node." |
22733
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4122 (save-excursion |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4123 ;; 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
|
4124 (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
|
4125 (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
|
4126 (Info-mode)) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4127 ;; 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
|
4128 (if (not (string-match "^(\\([^)]+\\))\\([^.]+\\)$" nodespec)) |
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
4129 (error "Invalid node specification %s" nodespec) |
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
4130 (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
|
4131 ;; Scan the created buffer |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4132 (goto-char (point-min)) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4133 (let ((completions nil) |
22951
19b3899582b4
Bind case-fold-search to t in many functions.
Richard M. Stallman <rms@gnu.org>
parents:
22902
diff
changeset
|
4134 (case-fold-search t) |
22733
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4135 (thisfile (progn (string-match "^(\\([^)]+\\))" nodespec) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4136 (match-string 1 nodespec)))) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4137 ;; Always skip the first one... |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4138 (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
|
4139 (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
|
4140 (let ((name (match-string 1))) |
51434
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
4141 (push (cons name |
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
4142 (if (looking-at " *\\(([^)]+)[^.\n]+\\)\\.") |
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
4143 (match-string 1) |
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
4144 (if (looking-at " *\\(([^)]+)\\)\\.") |
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
4145 (concat (match-string 1) "Top") |
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
4146 (concat "(" thisfile ")" |
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
4147 (if (looking-at " \\([^.]+\\).") |
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
4148 (match-string 1) |
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
4149 name))))) |
4c85e6a5a9d2
(Info-mode-hook): Obey obsolete `Info-fontify'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51310
diff
changeset
|
4150 completions))) |
22733
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4151 (nreverse completions)))) |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4152 |
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4153 ;;; Info mode node listing |
65780
6e229fd94815
* speedbar.el: Remove RCS tag.
Chong Yidong <cyd@stupidchicken.com>
parents:
65680
diff
changeset
|
4154 ;; This is called by `speedbar-add-localized-speedbar-support' |
20755
0ceaf8e0782b
Added speedbar support function `Info-speedbar-buttons',
Eric M. Ludlam <zappo@gnu.org>
parents:
20514
diff
changeset
|
4155 (defun Info-speedbar-buttons (buffer) |
0ceaf8e0782b
Added speedbar support function `Info-speedbar-buttons',
Eric M. Ludlam <zappo@gnu.org>
parents:
20514
diff
changeset
|
4156 "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
|
4157 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
|
4158 (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
|
4159 (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
|
4160 (not (looking-at "Info Nodes:")))) |
22733
8d8e664f1f6c
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22692
diff
changeset
|
4161 (erase-buffer)) |
65780
6e229fd94815
* speedbar.el: Remove RCS tag.
Chong Yidong <cyd@stupidchicken.com>
parents:
65680
diff
changeset
|
4162 (Info-speedbar-hierarchy-buttons nil 0)) |
584 | 4163 |
60626
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
4164 (dolist (mess '("^First node in file$" |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
4165 "^No `.*' in index$" |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
4166 "^No cross-reference named" |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
4167 "^No cross.references in this node$" |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
4168 "^No current Info node$" |
28558 | 4169 "^No menu in this node$" |
60626
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
4170 "^No more items in menu$" |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
4171 "^No more nodes$" |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
4172 "^No pointer \\(?:forward\\|backward\\) from this node$" |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
4173 "^No previous `i' command$" |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
4174 "^No previous items in menu$" |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
4175 "^No previous nodes$" |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
4176 "^No such item in menu$" |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
4177 "^No such node or anchor" |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
4178 "^Node has no" |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
4179 "^Point neither on reference nor in menu item description$" |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
4180 "^This is the \\(?:first\\|last\\) Info node you looked at$" |
20a8e6e5ae57
Update error messages for `debug-ignored-errors'.
Juri Linkov <juri@jurta.org>
parents:
60615
diff
changeset
|
4181 search-failed)) |
28558 | 4182 (add-to-list 'debug-ignored-errors mess)) |
4183 | |
55057
8ac1373b947e
(Info-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54971
diff
changeset
|
4184 ;;;; Desktop support |
8ac1373b947e
(Info-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54971
diff
changeset
|
4185 |
8ac1373b947e
(Info-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54971
diff
changeset
|
4186 (defun Info-desktop-buffer-misc-data (desktop-dirname) |
8ac1373b947e
(Info-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54971
diff
changeset
|
4187 "Auxiliary information to be saved in desktop file." |
55797
954cec4917f6
(Info-desktop-buffer-misc-data): Don't save information
Juri Linkov <juri@jurta.org>
parents:
55774
diff
changeset
|
4188 (if (not (member Info-current-file '("apropos" "history" "toc"))) |
954cec4917f6
(Info-desktop-buffer-misc-data): Don't save information
Juri Linkov <juri@jurta.org>
parents:
55774
diff
changeset
|
4189 (list Info-current-file Info-current-node))) |
55057
8ac1373b947e
(Info-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54971
diff
changeset
|
4190 |
8ac1373b947e
(Info-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54971
diff
changeset
|
4191 (defun Info-restore-desktop-buffer (desktop-buffer-file-name |
8ac1373b947e
(Info-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54971
diff
changeset
|
4192 desktop-buffer-name |
8ac1373b947e
(Info-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54971
diff
changeset
|
4193 desktop-buffer-misc) |
64812
0d6aa987778c
Replace `info' with upper-case `Info' where appropriate.
Juri Linkov <juri@jurta.org>
parents:
64795
diff
changeset
|
4194 "Restore an Info buffer specified in a desktop file." |
55057
8ac1373b947e
(Info-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54971
diff
changeset
|
4195 (let ((first (nth 0 desktop-buffer-misc)) |
8ac1373b947e
(Info-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54971
diff
changeset
|
4196 (second (nth 1 desktop-buffer-misc))) |
8ac1373b947e
(Info-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54971
diff
changeset
|
4197 (when (and first second) |
55797
954cec4917f6
(Info-desktop-buffer-misc-data): Don't save information
Juri Linkov <juri@jurta.org>
parents:
55774
diff
changeset
|
4198 (when desktop-buffer-name |
954cec4917f6
(Info-desktop-buffer-misc-data): Don't save information
Juri Linkov <juri@jurta.org>
parents:
55774
diff
changeset
|
4199 (set-buffer (get-buffer-create desktop-buffer-name)) |
954cec4917f6
(Info-desktop-buffer-misc-data): Don't save information
Juri Linkov <juri@jurta.org>
parents:
55774
diff
changeset
|
4200 (Info-mode)) |
55084
b8934c440dd6
(Info-restore-desktop-buffer): Delete with-no-warnings.
Lars Hansen <larsh@soem.dk>
parents:
55074
diff
changeset
|
4201 (Info-find-node first second) |
55057
8ac1373b947e
(Info-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54971
diff
changeset
|
4202 (current-buffer)))) |
8ac1373b947e
(Info-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54971
diff
changeset
|
4203 |
64961 | 4204 (add-to-list 'desktop-buffer-mode-handlers |
4205 '(Info-mode . Info-restore-desktop-buffer)) | |
64896
a7d19794a559
Add handler to desktop-buffer-mode-handlers.
Lars Hansen <larsh@soem.dk>
parents:
64812
diff
changeset
|
4206 |
584 | 4207 (provide 'info) |
4208 | |
62822
7f11f471aa34
(Info-goto-node): Revert autoload addition (2004-06-12).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62733
diff
changeset
|
4209 ;; arch-tag: f2480fe2-2139-40c1-a49b-6314991164ac |
660
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
4210 ;;; info.el ends here |