aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-08-12 23:55:21 -0700
committerGlenn Morris2013-08-12 23:55:21 -0700
commit55f612f03ead76efe6be0e42ca14410f11345c36 (patch)
treee514276d6faa53d5ab8e717fcb2de92e7f44de22
parent72baeef2d9a9899c1158e025141f146b6cfa08b2 (diff)
downloademacs-55f612f03ead76efe6be0e42ca14410f11345c36.tar.gz
emacs-55f612f03ead76efe6be0e42ca14410f11345c36.zip
Rename some doc/misc info nodes to avoid chars that can cause Texinfo problems
* reftex.texi (LaTeX xr Package, Options - Table of Contents) (Options - Defining Label Environments, Options - Creating Labels) (Options - Referencing Labels, Options - Creating Citations) (Options - Index Support, Options - Viewing Cross-References) (Options - Finding Files, Options - Optimizations) (Options - Fontification, Options - Misc): * cc-mode.texi (Sample Init File): * edt.texi (Init file): * epa.texi (Encrypting/decrypting gpg files): * mairix-el.texi (About, Setting up the mairix interface, Using) (Extending): Rename nodes to avoid characters that can cause Texinfo problems.
-rw-r--r--doc/misc/ChangeLog15
-rw-r--r--doc/misc/cc-mode.texi22
-rw-r--r--doc/misc/edt.texi4
-rw-r--r--doc/misc/epa.texi8
-rw-r--r--doc/misc/mairix-el.texi29
-rw-r--r--doc/misc/reftex.texi119
6 files changed, 104 insertions, 93 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 1ef5730674e..a745b5d547b 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,18 @@
12013-08-13 Glenn Morris <rgm@gnu.org>
2
3 * reftex.texi (LaTeX xr Package, Options - Table of Contents)
4 (Options - Defining Label Environments, Options - Creating Labels)
5 (Options - Referencing Labels, Options - Creating Citations)
6 (Options - Index Support, Options - Viewing Cross-References)
7 (Options - Finding Files, Options - Optimizations)
8 (Options - Fontification, Options - Misc):
9 * cc-mode.texi (Sample Init File):
10 * edt.texi (Init file):
11 * epa.texi (Encrypting/decrypting gpg files):
12 * mairix-el.texi (About, Setting up the mairix interface, Using)
13 (Extending):
14 Rename nodes to avoid characters that can cause Texinfo problems.
15
12013-07-31 Glenn Morris <rgm@gnu.org> 162013-07-31 Glenn Morris <rgm@gnu.org>
2 17
3 * woman.texi (Top): Avoid mailto: in html output. 18 * woman.texi (Top): Avoid mailto: in html output.
diff --git a/doc/misc/cc-mode.texi b/doc/misc/cc-mode.texi
index 52a0cea53c2..a0e335202e4 100644
--- a/doc/misc/cc-mode.texi
+++ b/doc/misc/cc-mode.texi
@@ -241,7 +241,7 @@ functions, classes, etc.; there are other packages for that.
241* Customizing Indentation:: 241* Customizing Indentation::
242* Custom Macros:: 242* Custom Macros::
243* Odds and Ends:: 243* Odds and Ends::
244* Sample .emacs File:: 244* Sample Init File::
245* Performance Issues:: 245* Performance Issues::
246* Limitations and Known Bugs:: 246* Limitations and Known Bugs::
247* FAQ:: 247* FAQ::
@@ -1113,7 +1113,7 @@ valid.}.
1113This function is not bound to a key by default, but it's intended to be 1113This function is not bound to a key by default, but it's intended to be
1114used on the @kbd{RET} key. If you like the behavior of 1114used on the @kbd{RET} key. If you like the behavior of
1115@code{newline-and-indent} on @kbd{RET}, you should consider switching to 1115@code{newline-and-indent} on @kbd{RET}, you should consider switching to
1116this function. @xref{Sample .emacs File}. 1116this function. @xref{Sample Init File}.
1117 1117
1118@item @kbd{M-x c-context-open-line} 1118@item @kbd{M-x c-context-open-line}
1119@findex c-context-open-line 1119@findex c-context-open-line
@@ -1170,7 +1170,7 @@ and @ref{Indentation Engine Basics}.
1170 1170
1171You can toggle each of these minor modes on and off, and you can 1171You can toggle each of these minor modes on and off, and you can
1172configure @ccmode{} so that it starts up with your favorite 1172configure @ccmode{} so that it starts up with your favorite
1173combination of them (@pxref{Sample .emacs File}). By default, when 1173combination of them (@pxref{Sample Init File}). By default, when
1174you initialize a buffer, electric mode and syntactic-indentation mode 1174you initialize a buffer, electric mode and syntactic-indentation mode
1175are enabled but the other two modes are disabled. 1175are enabled but the other two modes are disabled.
1176 1176
@@ -2378,7 +2378,7 @@ those set by @code{c-default-style}.
2378@vindex initialization-hook (c-) 2378@vindex initialization-hook (c-)
2379Hook run only once per Emacs session, when @ccmode{} is initialized. 2379Hook run only once per Emacs session, when @ccmode{} is initialized.
2380This is a good place to change key bindings (or add new ones) in any 2380This is a good place to change key bindings (or add new ones) in any
2381of the @ccmode{} key maps. @xref{Sample .emacs File}. 2381of the @ccmode{} key maps. @xref{Sample Init File}.
2382@end defvar 2382@end defvar
2383 2383
2384@defvar c-mode-common-hook 2384@defvar c-mode-common-hook
@@ -2406,7 +2406,7 @@ overwritten when @ccmode{} gets loaded.
2406Here's a simplified example of what you can add to your @file{.emacs} 2406Here's a simplified example of what you can add to your @file{.emacs}
2407file to do things whenever any @ccmode{} language is edited. See the 2407file to do things whenever any @ccmode{} language is edited. See the
2408Emacs manuals for more information on customizing Emacs via hooks. 2408Emacs manuals for more information on customizing Emacs via hooks.
2409@xref{Sample .emacs File}, for a more complete sample @file{.emacs} 2409@xref{Sample Init File}, for a more complete sample @file{.emacs}
2410file. 2410file.
2411 2411
2412@example 2412@example
@@ -2685,7 +2685,7 @@ create a new @dfn{style definition}, possibly based on an existing
2685style. To do this, put the new style's settings into a list with the 2685style. To do this, put the new style's settings into a list with the
2686following format; the list can then be passed as an argument to the 2686following format; the list can then be passed as an argument to the
2687function @code{c-add-style}. You can see an example of a style 2687function @code{c-add-style}. You can see an example of a style
2688definition in @ref{Sample .emacs File}. 2688definition in @ref{Sample Init File}.
2689 2689
2690@cindex style definition 2690@cindex style definition
2691@c @defvr {List} style definition 2691@c @defvr {List} style definition
@@ -2753,7 +2753,7 @@ deprecated and it might be removed from @ccmode{} in a future release.
2753You should use @code{c-set-style} instead. 2753You should use @code{c-set-style} instead.
2754 2754
2755The sample @file{.emacs} file provides a concrete example of how a new 2755The sample @file{.emacs} file provides a concrete example of how a new
2756style can be added and automatically set. @xref{Sample .emacs File}. 2756style can be added and automatically set. @xref{Sample Init File}.
2757@end defun 2757@end defun
2758 2758
2759@defvar c-style-alist 2759@defvar c-style-alist
@@ -6759,7 +6759,7 @@ initialization code.
6759@end defun 6759@end defun
6760 6760
6761@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 6761@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
6762@node Odds and Ends, Sample .emacs File, Custom Macros, Top 6762@node Odds and Ends, Sample Init File, Custom Macros, Top
6763@comment node-name, next, previous, up 6763@comment node-name, next, previous, up
6764@chapter Odds and Ends 6764@chapter Odds and Ends
6765@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 6765@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@@ -6803,9 +6803,9 @@ anchoring position to indent the line in that case.
6803 6803
6804 6804
6805@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 6805@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
6806@node Sample .emacs File, Performance Issues, Odds and Ends, Top 6806@node Sample Init File, Performance Issues, Odds and Ends, Top
6807@comment node-name, next, previous, up 6807@comment node-name, next, previous, up
6808@appendix Sample .emacs File 6808@appendix Sample Init File
6809@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 6809@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
6810 6810
6811Here's a sample .emacs file fragment that might help you along the way. 6811Here's a sample .emacs file fragment that might help you along the way.
@@ -6862,7 +6862,7 @@ to change some of the actual values.
6862@end verbatim 6862@end verbatim
6863 6863
6864@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 6864@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
6865@node Performance Issues, Limitations and Known Bugs, Sample .emacs File, Top 6865@node Performance Issues, Limitations and Known Bugs, Sample Init File, Top
6866@comment node-name, next, previous, up 6866@comment node-name, next, previous, up
6867@chapter Performance Issues 6867@chapter Performance Issues
6868@cindex performance 6868@cindex performance
diff --git a/doc/misc/edt.texi b/doc/misc/edt.texi
index 339d59bd123..40aeae836ef 100644
--- a/doc/misc/edt.texi
+++ b/doc/misc/edt.texi
@@ -789,13 +789,13 @@ so the above directions may need some modification if your site has such
789special needs. 789special needs.
790 790
791@menu 791@menu
792* edt-user.el:: Creating your own @file{edt-user.el} file. 792* Init file:: Creating your own @file{edt-user.el} file.
793* Words:: Specifying word entities. 793* Words:: Specifying word entities.
794* Control keys:: Enabling EDT control key sequence bindings. 794* Control keys:: Enabling EDT control key sequence bindings.
795* Scroll margins:: Setting scroll margins. 795* Scroll margins:: Setting scroll margins.
796@end menu 796@end menu
797 797
798@node edt-user.el 798@node Init file
799@section Creating your own @file{edt-user.el} File 799@section Creating your own @file{edt-user.el} File
800 800
801A sample @file{edt-user.el} file is provided in the Emacs @file{etc/} 801A sample @file{edt-user.el} file is provided in the Emacs @file{etc/}
diff --git a/doc/misc/epa.texi b/doc/misc/epa.texi
index e21851ef37a..69f1f0baaee 100644
--- a/doc/misc/epa.texi
+++ b/doc/misc/epa.texi
@@ -106,7 +106,7 @@ This chapter introduces various commands for typical use cases.
106* Cryptographic operations on files:: 106* Cryptographic operations on files::
107* Dired integration:: 107* Dired integration::
108* Mail-mode integration:: 108* Mail-mode integration::
109* Encrypting/decrypting *.gpg files:: 109* Encrypting/decrypting gpg files::
110@end menu 110@end menu
111 111
112@node Key management 112@node Key management
@@ -345,8 +345,8 @@ key in the recipient list, use @samp{encrypt-to} option in
345 345
346@end table 346@end table
347 347
348@node Encrypting/decrypting *.gpg files 348@node Encrypting/decrypting gpg files
349@section Encrypting/decrypting *.gpg files 349@section Encrypting/decrypting gpg files
350By default, every file whose name ends with @samp{.gpg} will be 350By default, every file whose name ends with @samp{.gpg} will be
351treated as encrypted. That is, when you open such a file, the 351treated as encrypted. That is, when you open such a file, the
352decrypted text is inserted in the buffer rather than encrypted one. 352decrypted text is inserted in the buffer rather than encrypted one.
@@ -463,7 +463,7 @@ To set up gpg-agent, follow the instruction in GnuPG manual.
463 463
464To set up elisp passphrase cache, set 464To set up elisp passphrase cache, set
465@code{epa-file-cache-passphrase-for-symmetric-encryption}. 465@code{epa-file-cache-passphrase-for-symmetric-encryption}.
466@xref{Encrypting/decrypting *.gpg files}. 466@xref{Encrypting/decrypting gpg files}.
467 467
468@node Bug Reports 468@node Bug Reports
469@chapter Bug Reports 469@chapter Bug Reports
diff --git a/doc/misc/mairix-el.texi b/doc/misc/mairix-el.texi
index ff5b2ca6748..0c71a5f9988 100644
--- a/doc/misc/mairix-el.texi
+++ b/doc/misc/mairix-el.texi
@@ -55,15 +55,15 @@ database.
55@end ifnottex 55@end ifnottex
56 56
57@menu 57@menu
58* About mairix and mairix.el:: About the mairix search engine and mairix.el 58* About:: About the mairix search engine and mairix.el.
59* Configuring mairix:: How to configure mairix 59* Configuring mairix:: How to configure mairix.
60* Setting up mairix.el:: Set up mairix.el 60* Setting up the mairix interface:: Set up mairix.el.
61* Using mairix.el:: List of interactive functions 61* Using:: List of interactive functions
62* Extending mairix.el:: Support your favorite mail reader! 62* Extending:: Support your favorite mail reader!
63* GNU Free Documentation License:: The license for this documentation. 63* GNU Free Documentation License:: The license for this documentation.
64@end menu 64@end menu
65 65
66@node About mairix and mairix.el 66@node About
67@chapter About mairix and mairix.el 67@chapter About mairix and mairix.el
68 68
69Mairix is a tool for indexing and searching words in locally stored 69Mairix is a tool for indexing and searching words in locally stored
@@ -98,7 +98,7 @@ Currently, @code{mairix.el} is only tested with mbox output together
98with RMail, Gnus, or VM as the Emacs mail program. However, it should 98with RMail, Gnus, or VM as the Emacs mail program. However, it should
99also work with Maildir or MH, and it should be very easy to integrate 99also work with Maildir or MH, and it should be very easy to integrate
100other Emacs mail programs into @code{mairix.el} 100other Emacs mail programs into @code{mairix.el}
101(@pxref{Extending mairix.el}). 101(@pxref{Extending}).
102 102
103If you use Gnus with maildir or MH, you should really use the native 103If you use Gnus with maildir or MH, you should really use the native
104Gnus back end @code{nnmairix} instead, since it is more tightly 104Gnus back end @code{nnmairix} instead, since it is more tightly
@@ -165,8 +165,8 @@ Now simply call @code{mairix} to create the index for the first time.
165Note that this may take a few minutes, but every following index will do 165Note that this may take a few minutes, but every following index will do
166the updates incrementally and hence is very fast. 166the updates incrementally and hence is very fast.
167 167
168@node Setting up mairix.el 168@node Setting up the mairix interface
169@chapter Setting up mairix.el 169@chapter Setting up the mairix interface
170 170
171First, put @code{mairix.el} in your Emacs search path and put 171First, put @code{mairix.el} in your Emacs search path and put
172@code{(require 'mairix)} into your @file{.emacs} file. Then, use 172@code{(require 'mairix)} into your @file{.emacs} file. Then, use
@@ -179,13 +179,12 @@ If you use Gnus with maildir or mh, use the native Gnus back end
179nnmairix instead. 179nnmairix instead.
180 180
181If you use another Emacs mail program which is not yet supported by 181If you use another Emacs mail program which is not yet supported by
182mairix.el, it is pretty easy to integrate it. @xref{Extending 182mairix.el, it is pretty easy to integrate it. @xref{Extending},
183mairix.el}, on how to integrate it into mairix.el. 183on how to integrate it into mairix.el.
184 184
185Now you should be ready to go. @xref{Using mairix.el}, for the available 185Now you should be ready to go. @xref{Using}, for the available commands.
186commands.
187 186
188@node Using mairix.el 187@node Using
189@chapter Using mairix.el 188@chapter Using mairix.el
190 189
191There are currently no default key bindings for mairix.el, since those 190There are currently no default key bindings for mairix.el, since those
@@ -314,7 +313,7 @@ will still be usable while the update is done.
314@end table 313@end table
315 314
316 315
317@node Extending mairix.el 316@node Extending
318@chapter Extending mairix.el 317@chapter Extending mairix.el
319 318
320Your favorite Emacs mail program is not supported? Shame on me. But 319Your favorite Emacs mail program is not supported? Shame on me. But
diff --git a/doc/misc/reftex.texi b/doc/misc/reftex.texi
index 2a7a231aa55..d03fe502257 100644
--- a/doc/misc/reftex.texi
+++ b/doc/misc/reftex.texi
@@ -154,7 +154,7 @@ Labels and References
154* Defining Label Environments:: ... and environments it doesn't. 154* Defining Label Environments:: ... and environments it doesn't.
155* Reference Info:: View the label corresponding to a \ref. 155* Reference Info:: View the label corresponding to a \ref.
156* Reference Styles:: Macros to be used instead of \ref. 156* Reference Styles:: Macros to be used instead of \ref.
157* xr (LaTeX package):: References to external documents. 157* LaTeX xr Package:: References to external documents.
158 158
159Defining Label Environments 159Defining Label Environments
160 160
@@ -197,17 +197,17 @@ AUCTeX
197 197
198Options, Keymaps, Hooks 198Options, Keymaps, Hooks
199 199
200* Options (Table of Contents):: 200* Options - Table of Contents::
201* Options (Defining Label Environments):: 201* Options - Defining Label Environments::
202* Options (Creating Labels):: 202* Options - Creating Labels::
203* Options (Referencing Labels):: 203* Options - Referencing Labels::
204* Options (Creating Citations):: 204* Options - Creating Citations::
205* Options (Index Support):: 205* Options - Index Support::
206* Options (Viewing Cross-References):: 206* Options - Viewing Cross-References::
207* Options (Finding Files):: 207* Options - Finding Files::
208* Options (Optimizations):: 208* Options - Optimizations::
209* Options (Fontification):: 209* Options - Fontification::
210* Options (Misc):: 210* Options - Misc::
211 211
212@end detailmenu 212@end detailmenu
213@end menu 213@end menu
@@ -582,8 +582,8 @@ called.
582@item mouse-2 582@item mouse-2
583@vindex reftex-highlight-selection 583@vindex reftex-highlight-selection
584Clicking with mouse button 2 on a line has the same effect as @key{RET}. 584Clicking with mouse button 2 on a line has the same effect as @key{RET}.
585See also variable @code{reftex-highlight-selection}, @ref{Options 585See also variable @code{reftex-highlight-selection},
586(Fontification)}. 586@ref{Options - Fontification}.
587 587
588@item f 588@item f
589@vindex reftex-toc-follow-mode 589@vindex reftex-toc-follow-mode
@@ -702,9 +702,8 @@ buffer.
702 702
703@item x 703@item x
704Switch to the @file{*toc*} buffer of an external document. When the 704Switch to the @file{*toc*} buffer of an external document. When the
705current document is using the @code{xr} package (@pxref{xr (LaTeX 705current document is using the @code{xr} package (@pxref{LaTeX xr Package}),
706package)}), @RefTeX{} will switch to one of the external 706@RefTeX{} will switch to one of the external documents.
707documents.
708 707
709 708
710@tablesubheading{Automatic recentering} 709@tablesubheading{Automatic recentering}
@@ -797,7 +796,7 @@ equation counter.
797* Defining Label Environments:: ... and environments it doesn't. 796* Defining Label Environments:: ... and environments it doesn't.
798* Reference Info:: View the label corresponding to a \ref. 797* Reference Info:: View the label corresponding to a \ref.
799* Reference Styles:: Macros to be used instead of \ref. 798* Reference Styles:: Macros to be used instead of \ref.
800* xr (LaTeX package):: References to external documents. 799* LaTeX xr Package:: References to external documents.
801@end menu 800@end menu
802 801
803@node Creating Labels, Referencing Labels, , Labels and References 802@node Creating Labels, Referencing Labels, , Labels and References
@@ -860,8 +859,8 @@ this label later.
860 859
861@vindex reftex-insert-label-flags 860@vindex reftex-insert-label-flags
862If you want to change the way certain labels are created, check out the 861If you want to change the way certain labels are created, check out the
863variable @code{reftex-insert-label-flags} (@pxref{Options (Creating 862variable @code{reftex-insert-label-flags} (@pxref{Options - Creating
864Labels)}). 863Labels}).
865 864
866If you are using @AUCTeX{} to write your @LaTeX{} documents, you can 865If you are using @AUCTeX{} to write your @LaTeX{} documents, you can
867set it up to delegate the creation of labels to 866set it up to delegate the creation of labels to
@@ -982,7 +981,7 @@ references all marked labels.
982@vindex reftex-highlight-selection 981@vindex reftex-highlight-selection
983Clicking with mouse button 2 on a label will accept it like @key{RET} 982Clicking with mouse button 2 on a label will accept it like @key{RET}
984would. See also variable @code{reftex-highlight-selection}, 983would. See also variable @code{reftex-highlight-selection},
985@ref{Options (Misc)}. 984@ref{Options - Misc}.
986 985
987@vindex reftex-multiref-punctuation 986@vindex reftex-multiref-punctuation
988@item m - + , 987@item m - + ,
@@ -1035,7 +1034,7 @@ buffer.
1035@tablesubheading{Controlling what gets displayed} 1034@tablesubheading{Controlling what gets displayed}
1036@vindex reftex-label-menu-flags 1035@vindex reftex-label-menu-flags
1037The defaults for the following flags can be configured with the variable 1036The defaults for the following flags can be configured with the variable
1038@code{reftex-label-menu-flags} (@pxref{Options (Referencing Labels)}). 1037@code{reftex-label-menu-flags} (@pxref{Options - Referencing Labels}).
1039 1038
1040@item c 1039@item c
1041Toggle the display of the one-line label definition context in the 1040Toggle the display of the one-line label definition context in the
@@ -1083,8 +1082,7 @@ a menu for that category will be shown.
1083Reference a label from an external document. With the @LaTeX{} package 1082Reference a label from an external document. With the @LaTeX{} package
1084@code{xr} it is possible to reference labels defined in another 1083@code{xr} it is possible to reference labels defined in another
1085document. This key will switch to the label menu of an external 1084document. This key will switch to the label menu of an external
1086document and let you select a label from there (@pxref{xr (LaTeX 1085document and let you select a label from there (@pxref{LaTeX xr Package,,xr}).
1087package),,xr}).
1088 1086
1089@end table 1087@end table
1090 1088
@@ -1204,8 +1202,8 @@ them (@pxref{Defining Label Environments}).
1204@vindex reftex-label-alist 1202@vindex reftex-label-alist
1205@RefTeX{} can be configured to recognize additional labeled 1203@RefTeX{} can be configured to recognize additional labeled
1206environments and macros. This is done with the variable 1204environments and macros. This is done with the variable
1207@code{reftex-label-alist} (@pxref{Options (Defining Label 1205@code{reftex-label-alist} (@pxref{Options - Defining Label
1208Environments)}). If you are not familiar with Lisp, you can use the 1206Environments}). If you are not familiar with Lisp, you can use the
1209@code{custom} library to configure this rather complex variable. To do 1207@code{custom} library to configure this rather complex variable. To do
1210this, use 1208this, use
1211 1209
@@ -1303,8 +1301,7 @@ a @code{\macro} or after the @code{\begin} statement). @code{t} is
1303@code{nil} means to use the text right after the label definition. 1301@code{nil} means to use the text right after the label definition.
1304@item 1302@item
1305For more complex ways of getting context, see the variable 1303For more complex ways of getting context, see the variable
1306@code{reftex-label-alist} (@ref{Options (Defining Label 1304@code{reftex-label-alist} (@ref{Options - Defining Label Environments}).
1307Environments)}).
1308@end itemize 1305@end itemize
1309 1306
1310The following list of strings is used to guess the correct label type 1307The following list of strings is used to guess the correct label type
@@ -1357,9 +1354,8 @@ Reftex Label Alist: [Hide]
1357Depending on how you would like the label insertion and selection for 1354Depending on how you would like the label insertion and selection for
1358the new environments to work, you might want to add the letters @samp{a} 1355the new environments to work, you might want to add the letters @samp{a}
1359and @samp{h} to some of the flags in the variables 1356and @samp{h} to some of the flags in the variables
1360@code{reftex-insert-label-flags} (@pxref{Options (Creating Labels)}) 1357@code{reftex-insert-label-flags} (@pxref{Options - Creating Labels})
1361and @code{reftex-label-menu-flags} (@pxref{Options (Referencing 1358and @code{reftex-label-menu-flags} (@pxref{Options - Referencing Labels}).
1362Labels)}).
1363 1359
1364 1360
1365@node Quick Equation, Figure Wrapper, Theorem and Axiom , Defining Label Environments 1361@node Quick Equation, Figure Wrapper, Theorem and Axiom , Defining Label Environments
@@ -1662,7 +1658,7 @@ message.
1662@code{\label} macro. @xref{Viewing Cross-References}, for more 1658@code{\label} macro. @xref{Viewing Cross-References}, for more
1663information. 1659information.
1664 1660
1665@node Reference Styles, xr (LaTeX package), Reference Info, Labels and References 1661@node Reference Styles, LaTeX xr Package, Reference Info, Labels and References
1666@section Reference Styles 1662@section Reference Styles
1667 1663
1668In case you defined your own macros for referencing or you are using 1664In case you defined your own macros for referencing or you are using
@@ -1750,7 +1746,7 @@ and @code{reftex-fref-is-default} respectively. While still working,
1750these variables are deprecated now. Instead of setting them, the 1746these variables are deprecated now. Instead of setting them, the
1751variable @code{reftex-ref-style-default-list} should be adapted now. 1747variable @code{reftex-ref-style-default-list} should be adapted now.
1752 1748
1753@node xr (LaTeX package), , Reference Styles, Labels and References 1749@node LaTeX xr Package, , Reference Styles, Labels and References
1754@section @code{xr}: Cross-Document References 1750@section @code{xr}: Cross-Document References
1755@cindex @code{xr}, LaTeX package 1751@cindex @code{xr}, LaTeX package
1756@cindex LaTeX packages, @code{xr} 1752@cindex LaTeX packages, @code{xr}
@@ -1884,8 +1880,8 @@ which the selection process was started.
1884@item mouse-2 1880@item mouse-2
1885@vindex reftex-highlight-selection 1881@vindex reftex-highlight-selection
1886Clicking with mouse button 2 on a citation will accept it like @key{RET} 1882Clicking with mouse button 2 on a citation will accept it like @key{RET}
1887would. See also variable @code{reftex-highlight-selection}, @ref{Options 1883would. See also variable @code{reftex-highlight-selection},
1888(Misc)}. 1884@ref{Options - Misc}.
1889 1885
1890@item m 1886@item m
1891Mark the current entry. When one or several entries are marked, 1887Mark the current entry. When one or several entries are marked,
@@ -2404,8 +2400,9 @@ Abort the indexing process.
2404 2400
2405The @samp{Find and Index in Document} menu in the phrases buffer also 2401The @samp{Find and Index in Document} menu in the phrases buffer also
2406lists a few options for the indexing process. The options have 2402lists a few options for the indexing process. The options have
2407associated customization variables to set the defaults (@pxref{Options 2403associated customization variables to set the defaults
2408(Index Support)}). Here is a short explanation of what the options do: 2404(@pxref{Options - Index Support}). Here is a short explanation of
2405what the options do:
2409 2406
2410@table @i 2407@table @i
2411@item Match Whole Words 2408@item Match Whole Words
@@ -2760,7 +2757,7 @@ variants@footnote{all macros that start with @samp{ref} or end with
2760@samp{ref} or @samp{refrange}} of the @code{\ref} macro are active for 2757@samp{ref} or @samp{refrange}} of the @code{\ref} macro are active for
2761cross-reference display. This works also for labels defined in an 2758cross-reference display. This works also for labels defined in an
2762external document when the current document refers to them through the 2759external document when the current document refers to them through the
2763@code{xr} interface (@pxref{xr (LaTeX package)}). 2760@code{xr} interface (@pxref{LaTeX xr Package}).
2764 2761
2765@item @code{\label} 2762@item @code{\label}
2766@cindex @code{\label} 2763@cindex @code{\label}
@@ -2906,7 +2903,7 @@ the ones defined in @file{font-lock.el}. Therefore, @RefTeX{} will
2906use faces only when @code{font-lock} is loaded. This seems to be 2903use faces only when @code{font-lock} is loaded. This seems to be
2907reasonable because people who like faces will very likely have it 2904reasonable because people who like faces will very likely have it
2908loaded. If you wish to turn off fontification or change the involved 2905loaded. If you wish to turn off fontification or change the involved
2909faces, see @ref{Options (Fontification)}. 2906faces, see @ref{Options - Fontification}.
2910 2907
2911@node Multifile Documents, Language Support, AUCTeX, Top 2908@node Multifile Documents, Language Support, AUCTeX, Top
2912@section Multifile Documents 2909@section Multifile Documents
@@ -3887,20 +3884,20 @@ Lisp (and even if you are) you might find it more comfortable to use
3887reftex-customize} will get you there. 3884reftex-customize} will get you there.
3888 3885
3889@menu 3886@menu
3890* Options (Table of Contents):: 3887* Options - Table of Contents::
3891* Options (Defining Label Environments):: 3888* Options - Defining Label Environments::
3892* Options (Creating Labels):: 3889* Options - Creating Labels::
3893* Options (Referencing Labels):: 3890* Options - Referencing Labels::
3894* Options (Creating Citations):: 3891* Options - Creating Citations::
3895* Options (Index Support):: 3892* Options - Index Support::
3896* Options (Viewing Cross-References):: 3893* Options - Viewing Cross-References::
3897* Options (Finding Files):: 3894* Options - Finding Files::
3898* Options (Optimizations):: 3895* Options - Optimizations::
3899* Options (Fontification):: 3896* Options - Fontification::
3900* Options (Misc):: 3897* Options - Misc::
3901@end menu 3898@end menu
3902 3899
3903@node Options (Table of Contents), Options (Defining Label Environments), , Options 3900@node Options - Table of Contents, Options - Defining Label Environments, , Options
3904@section Table of Contents 3901@section Table of Contents
3905@cindex Options, table of contents 3902@cindex Options, table of contents
3906@cindex Table of contents, options 3903@cindex Table of contents, options
@@ -4024,7 +4021,7 @@ The keymap which is active in the @file{*toc*} buffer.
4024(@pxref{Table of Contents}). 4021(@pxref{Table of Contents}).
4025@end deffn 4022@end deffn
4026 4023
4027@node Options (Defining Label Environments), Options (Creating Labels), Options (Table of Contents), Options 4024@node Options - Defining Label Environments, Options - Creating Labels, Options - Table of Contents, Options
4028@section Defining Label Environments 4025@section Defining Label Environments
4029@cindex Options, defining label environments 4026@cindex Options, defining label environments
4030@cindex Defining label environments, options 4027@cindex Defining label environments, options
@@ -4251,7 +4248,7 @@ labels fn:xxx, you may want to set this variable to the value "^fn:$" or
4251non-footnote labels. 4248non-footnote labels.
4252@end defopt 4249@end defopt
4253 4250
4254@node Options (Creating Labels), Options (Referencing Labels), Options (Defining Label Environments), Options 4251@node Options - Creating Labels, Options - Referencing Labels, Options - Defining Label Environments, Options
4255@section Creating Labels 4252@section Creating Labels
4256@cindex Options, creating labels 4253@cindex Options, creating labels
4257@cindex Creating labels, options 4254@cindex Creating labels, options
@@ -4367,7 +4364,7 @@ Character class after abbrev point in word.
4367@end table 4364@end table
4368@end defopt 4365@end defopt
4369 4366
4370@node Options (Referencing Labels), Options (Creating Citations), Options (Creating Labels), Options 4367@node Options - Referencing Labels, Options - Creating Citations, Options - Creating Labels, Options
4371@section Referencing Labels 4368@section Referencing Labels
4372@cindex Options, referencing labels 4369@cindex Options, referencing labels
4373@cindex Referencing labels, options 4370@cindex Referencing labels, options
@@ -4489,7 +4486,7 @@ The keymap which is active in the labels selection process
4489(@pxref{Referencing Labels}). 4486(@pxref{Referencing Labels}).
4490@end deffn 4487@end deffn
4491 4488
4492@node Options (Creating Citations), Options (Index Support), Options (Referencing Labels), Options 4489@node Options - Creating Citations, Options - Index Support, Options - Referencing Labels, Options
4493@section Creating Citations 4490@section Creating Citations
4494@cindex Options, creating citations 4491@cindex Options, creating citations
4495@cindex Creating citations, options 4492@cindex Creating citations, options
@@ -4668,7 +4665,7 @@ Footer to insert in BibTeX files generated by
4668@end defopt 4665@end defopt
4669 4666
4670 4667
4671@node Options (Index Support), Options (Viewing Cross-References), Options (Creating Citations), Options 4668@node Options - Index Support, Options - Viewing Cross-References, Options - Creating Citations, Options
4672@section Index Support 4669@section Index Support
4673@cindex Options, Index support 4670@cindex Options, Index support
4674@cindex Index support, options 4671@cindex Index support, options
@@ -4888,7 +4885,7 @@ The keymap which is active in the @file{*Index*} buffer
4888(@pxref{Index Support}). 4885(@pxref{Index Support}).
4889@end deffn 4886@end deffn
4890 4887
4891@node Options (Viewing Cross-References), Options (Finding Files), Options (Index Support), Options 4888@node Options - Viewing Cross-References, Options - Finding Files, Options - Index Support, Options
4892@section Viewing Cross-References 4889@section Viewing Cross-References
4893@cindex Options, viewing cross-references 4890@cindex Options, viewing cross-references
4894@cindex Viewing cross-references, options 4891@cindex Viewing cross-references, options
@@ -4947,7 +4944,7 @@ saved along with the parsing information. The cache survives document
4947scans. In order to clear it, use @kbd{M-x reftex-reset-mode}. 4944scans. In order to clear it, use @kbd{M-x reftex-reset-mode}.
4948@end defopt 4945@end defopt
4949 4946
4950@node Options (Finding Files), Options (Optimizations), Options (Viewing Cross-References), Options 4947@node Options - Finding Files, Options - Optimizations, Options - Viewing Cross-References, Options
4951@section Finding Files 4948@section Finding Files
4952@cindex Options, Finding Files 4949@cindex Options, Finding Files
4953@cindex Finding files, options 4950@cindex Finding files, options
@@ -5037,7 +5034,7 @@ non-@code{nil}.
5037@end defopt 5034@end defopt
5038 5035
5039@page 5036@page
5040@node Options (Optimizations), Options (Fontification), Options (Finding Files), Options 5037@node Options - Optimizations, Options - Fontification, Options - Finding Files, Options
5041@section Optimizations 5038@section Optimizations
5042@cindex Options, optimizations 5039@cindex Options, optimizations
5043@cindex Optimizations, options 5040@cindex Optimizations, options
@@ -5146,7 +5143,7 @@ effect when @code{reftex-use-multiple-selection-buffers} is
5146non-@code{nil}. 5143non-@code{nil}.
5147@end defopt 5144@end defopt
5148 5145
5149@node Options (Fontification), Options (Misc), Options (Optimizations), Options 5146@node Options - Fontification, Options - Misc, Options - Optimizations, Options
5150@section Fontification 5147@section Fontification
5151@cindex Options, fontification 5148@cindex Options, fontification
5152@cindex Fontification, options 5149@cindex Fontification, options
@@ -5244,7 +5241,7 @@ Face name for index names (for multiple indices).
5244Face name for index entries. 5241Face name for index entries.
5245@end defopt 5242@end defopt
5246 5243
5247@node Options (Misc), , Options (Fontification), Options 5244@node Options - Misc, , Options - Fontification, Options
5248@section Miscellaneous 5245@section Miscellaneous
5249@cindex Options, misc 5246@cindex Options, misc
5250 5247