aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2001-09-12 21:03:47 +0000
committerRichard M. Stallman2001-09-12 21:03:47 +0000
commit47d7776cc60c0e163f40799f7f2bd2ba63218c46 (patch)
treea35afebc643d6fa5f6804449ffbad6040bcf8533
parent6eb5fac3a2820843ac9a9fb0fa3ad699092147bd (diff)
downloademacs-47d7776cc60c0e163f40799f7f2bd2ba63218c46.tar.gz
emacs-47d7776cc60c0e163f40799f7f2bd2ba63218c46.zip
Spelling corrections.
-rw-r--r--man/anti.texi2
-rw-r--r--man/cc-mode.texi6
-rw-r--r--man/cmdargs.texi6
-rw-r--r--man/display.texi2
-rw-r--r--man/emacs.texi2
-rw-r--r--man/eudc.texi27
-rw-r--r--man/frames.texi6
-rw-r--r--man/maintaining.texi4
-rw-r--r--man/reftex.texi28
-rw-r--r--man/sc.texi4
-rw-r--r--man/speedbar.texi36
-rw-r--r--man/text.texi6
-rw-r--r--man/viper.texi20
13 files changed, 75 insertions, 74 deletions
diff --git a/man/anti.texi b/man/anti.texi
index 95debe1fb83..b12340ac060 100644
--- a/man/anti.texi
+++ b/man/anti.texi
@@ -93,7 +93,7 @@ line with @kbd{C-n} or a down-arrow.
93@item 93@item
94The variable @code{show-trailing-whitespace} has no special meaning, so 94The variable @code{show-trailing-whitespace} has no special meaning, so
95trailing whitespace on a line is now always displayed correctly: as 95trailing whitespace on a line is now always displayed correctly: as
96empty space. To see if a line ends with spaces or TABs, type @kbd{C-e} 96empty space. To see if a line ends with spaces or tabs, type @kbd{C-e}
97on that line. Likewise, empty lines at the end of the buffer are not 97on that line. Likewise, empty lines at the end of the buffer are not
98marked in any way; use @kbd{M->} to see where the end of the buffer is. 98marked in any way; use @kbd{M->} to see where the end of the buffer is.
99 99
diff --git a/man/cc-mode.texi b/man/cc-mode.texi
index bb730cf6cd2..3e81ad1aa97 100644
--- a/man/cc-mode.texi
+++ b/man/cc-mode.texi
@@ -622,7 +622,7 @@ you'd see @samp{C/ah}.
622@findex toggle-hungry-state (c-) 622@findex toggle-hungry-state (c-)
623@findex toggle-auto-state (c-) 623@findex toggle-auto-state (c-)
624@findex toggle-auto-hungry-state (c-) 624@findex toggle-auto-hungry-state (c-)
625@ccmode{} provides keybindings which allow you to toggle the minor 625@ccmode{} provides key bindings which allow you to toggle the minor
626modes on the fly while editing code. To toggle just the auto-newline 626modes on the fly while editing code. To toggle just the auto-newline
627state, hit @kbd{C-c C-a} (@code{c-toggle-auto-state}). When you do 627state, hit @kbd{C-c C-a} (@code{c-toggle-auto-state}). When you do
628this, you should see the @samp{a} indicator either appear or disappear 628this, you should see the @samp{a} indicator either appear or disappear
@@ -1838,7 +1838,7 @@ empty, so that all syntactic symbols are set by the style system.
1838@findex set-offset (c-) 1838@findex set-offset (c-)
1839You can use the command @kbd{C-c C-o} (@code{c-set-offset}) as the way 1839You can use the command @kbd{C-c C-o} (@code{c-set-offset}) as the way
1840to set offsets, both interactively and from your mode 1840to set offsets, both interactively and from your mode
1841hook@footnote{Obviously, you use the keybinding interactively, and the 1841hook@footnote{Obviously, you use the key binding interactively, and the
1842function call programmatically!}. 1842function call programmatically!}.
1843 1843
1844@vindex c-basic-offset 1844@vindex c-basic-offset
@@ -4568,7 +4568,7 @@ will also be posted to the Usenet newsgroups @code{gnu.emacs.sources},
4568 indent-tabs-mode nil) 4568 indent-tabs-mode nil)
4569 ;; we like auto-newline and hungry-delete 4569 ;; we like auto-newline and hungry-delete
4570 (c-toggle-auto-hungry-state 1) 4570 (c-toggle-auto-hungry-state 1)
4571 ;; keybindings for all supported languages. We can put these in 4571 ;; key bindings for all supported languages. We can put these in
4572 ;; c-mode-base-map because c-mode-map, c++-mode-map, objc-mode-map, 4572 ;; c-mode-base-map because c-mode-map, c++-mode-map, objc-mode-map,
4573 ;; java-mode-map, idl-mode-map, and pike-mode-map inherit from it. 4573 ;; java-mode-map, idl-mode-map, and pike-mode-map inherit from it.
4574 (define-key c-mode-base-map "\C-m" 'c-context-line-break) 4574 (define-key c-mode-base-map "\C-m" 'c-context-line-break)
diff --git a/man/cmdargs.texi b/man/cmdargs.texi
index 4204fb2934d..dfabae71231 100644
--- a/man/cmdargs.texi
+++ b/man/cmdargs.texi
@@ -526,9 +526,9 @@ The value of this variable should be the two-character encoding of the
526foreground (the first character) and the background (the second 526foreground (the first character) and the background (the second
527character) colors of the default face. Each character should be the 527character) colors of the default face. Each character should be the
528hexadecimal code for the desired color on a standard PC text-mode 528hexadecimal code for the desired color on a standard PC text-mode
529display. For example, to get blue text on a lightgray backgraound, 529display. For example, to get blue text on a light gray background,
530specify @samp{EMACSCOLORS=17}, since 1 is the code of the blue color and 530specify @samp{EMACSCOLORS=17}, since 1 is the code of the blue color and
5317 is the code of the lightgray color. 5317 is the code of the light gray color.
532 532
533The PC display usually supports only eight background colors. However, 533The PC display usually supports only eight background colors. However,
534Emacs switches the DOS display to a mode where all 16 colors can be used 534Emacs switches the DOS display to a mode where all 16 colors can be used
@@ -1126,7 +1126,7 @@ Color of the mouse cursor.
1126 1126
1127@ignore 1127@ignore
1128@item @code{privateColormap} (class @code{PrivateColormap}) 1128@item @code{privateColormap} (class @code{PrivateColormap})
1129If @samp{on}, use a private colormap, in the case where the ``default 1129If @samp{on}, use a private color map, in the case where the ``default
1130visual'' of class PseudoColor and Emacs is using it. 1130visual'' of class PseudoColor and Emacs is using it.
1131@end ignore 1131@end ignore
1132 1132
diff --git a/man/display.texi b/man/display.texi
index 5c691498c73..beccaabba47 100644
--- a/man/display.texi
+++ b/man/display.texi
@@ -737,7 +737,7 @@ an icon instead of @samp{Mail} by customizing
737line. You can customize @code{display-time-mail-face} to make the mail 737line. You can customize @code{display-time-mail-face} to make the mail
738indicator prominent. 738indicator prominent.
739 739
740@cindex mode line, 3D appearence 740@cindex mode line, 3D appearance
741@cindex attributes of mode line, changing 741@cindex attributes of mode line, changing
742@cindex non-integral number of lines in a window 742@cindex non-integral number of lines in a window
743 By default, the mode line is drawn on graphics displays with 743 By default, the mode line is drawn on graphics displays with
diff --git a/man/emacs.texi b/man/emacs.texi
index a136ae17e1d..0cb26ced7c2 100644
--- a/man/emacs.texi
+++ b/man/emacs.texi
@@ -382,7 +382,7 @@ Using Multiple Buffers
382 382
383* Select Buffer:: Creating a new buffer or reselecting an old one. 383* Select Buffer:: Creating a new buffer or reselecting an old one.
384* List Buffers:: Getting a list of buffers that exist. 384* List Buffers:: Getting a list of buffers that exist.
385* Misc Buffer:: Renaming; changing read-onlyness; copying text. 385* Misc Buffer:: Renaming; changing read-onliness; copying text.
386* Kill Buffer:: Killing buffers you no longer need. 386* Kill Buffer:: Killing buffers you no longer need.
387* Several Buffers:: How to go through the list of all buffers 387* Several Buffers:: How to go through the list of all buffers
388 and operate variously on several of them. 388 and operate variously on several of them.
diff --git a/man/eudc.texi b/man/eudc.texi
index 380be396edd..400de151a12 100644
--- a/man/eudc.texi
+++ b/man/eudc.texi
@@ -203,11 +203,11 @@ and news readers.
203 203
204It is often used as an enhanced email address book. 204It is often used as an enhanced email address book.
205 205
206EUDC considers BBDB as a directory server backend just like LDAP or 206EUDC considers BBDB as a directory server back end just like LDAP or
207PH/QI servers though BBDB has no client/server protocol and thus always 207PH/QI servers, though BBDB has no client/server protocol and thus always
208resides locally on your machine. The point in this is not to offer an 208resides locally on your machine. The point in this is not to offer an
209alternate way to query your BBDB database (BBDB itself provides much 209alternate way to query your BBDB database (BBDB itself provides much
210more flexible ways to do that) but rather to offer an interface to your 210more flexible ways to do that), but rather to offer an interface to your
211local directory that is consistent with the interface to external 211local directory that is consistent with the interface to external
212directories (LDAP, PH/QI). This is particularly interesting when 212directories (LDAP, PH/QI). This is particularly interesting when
213performing queries on multiple servers. 213performing queries on multiple servers.
@@ -278,7 +278,7 @@ submenu of the @samp{Tools} submenu.
278* Display of Query Results:: Controlling how query results are presented 278* Display of Query Results:: Controlling how query results are presented
279* Inline Query Expansion:: How to use and customize inline queries 279* Inline Query Expansion:: How to use and customize inline queries
280* The Server Hotlist:: How to use and manage the server hotlist 280* The Server Hotlist:: How to use and manage the server hotlist
281* Multi-server Queries:: How to query multiple servers sucessively 281* Multi-server Queries:: How to query multiple servers successively
282* Creating BBDB Records:: How to insert query results into your BBDB 282* Creating BBDB Records:: How to insert query results into your BBDB
283* Server/Protocol Locals:: Customizing on a per server/protocol basis 283* Server/Protocol Locals:: Customizing on a per server/protocol basis
284@end menu 284@end menu
@@ -324,7 +324,7 @@ may be specified by appending a colon and a number to the name of the
324server. You will not need this unless your server runs on a port other 324server. You will not need this unless your server runs on a port other
325than the default (which depends on the protocol). 325than the default (which depends on the protocol).
326If the directory server resides on your own computer (which is the case 326If the directory server resides on your own computer (which is the case
327if you use the BBDB backend) then `localhost' is a reasonable value but 327if you use the BBDB back end) then `localhost' is a reasonable value but
328it will be ignored anyway. 328it will be ignored anyway.
329@end defvar 329@end defvar
330 330
@@ -407,11 +407,11 @@ default method for all fields or a method for each individual field.
407 407
408@defvar eudc-duplicate-attribute-handling-method 408@defvar eudc-duplicate-attribute-handling-method
409A method to handle entries containing duplicate attributes. This is 409A method to handle entries containing duplicate attributes. This is
410either an alist @code{(@var{attr} . @var{method})} or a symbol 410either an alist of elements @code{(@var{attr} . @var{method})}, or a symbol
411@var{method}. The alist form of the variable associates a method to an 411@var{method}. The alist form of the variable associates a method to an
412individual attribute name, the second form specifies a method applicable 412individual attribute name; the second form specifies a method applicable
413to all attribute names. Available methods are: @code{list}, 413to all attribute names. Available methods are: @code{list},
414@code{first}, @code{concat}, @code{duplicate} (see above). Defaults to 414@code{first}, @code{concat}, and @code{duplicate} (see above). The default is
415@code{list}. 415@code{list}.
416@end defvar 416@end defvar
417 417
@@ -483,8 +483,9 @@ are controlled by @code{eudc-default-return-attributes} (@pxref{Return
483Attributes}). 483Attributes}).
484 484
485The display of each individual field can be performed by an arbitrary 485The display of each individual field can be performed by an arbitrary
486function which allows specific processing for binary values like images 486function which allows specific processing for binary values, such as
487or audio samples as well as values with computer semantics like URLs. 487images or audio samples, as well as values with semantics, such as
488URLs.
488 489
489@defvar eudc-attribute-display-method-alist 490@defvar eudc-attribute-display-method-alist
490An alist specifying methods to display attribute values. Each member of 491An alist specifying methods to display attribute values. Each member of
@@ -695,7 +696,7 @@ loaded.
695The hotlist edit buffer offers a means to manage a list of frequently 696The hotlist edit buffer offers a means to manage a list of frequently
696used servers. Commands are available in the context pop-up menu 697used servers. Commands are available in the context pop-up menu
697generally bound to the right mouse button. Those commands also have 698generally bound to the right mouse button. Those commands also have
698equivalent keybindings. 699equivalent key bindings.
699 700
700@deffn Command eudc-hotlist-add-server 701@deffn Command eudc-hotlist-add-server
701Bound to @kbd{a}. 702Bound to @kbd{a}.
@@ -766,7 +767,7 @@ With EUDC, you can automatically create BBDB records
766directory server. You do this by moving point to the appropriate 767directory server. You do this by moving point to the appropriate
767record in a query result display buffer and invoking the command 768record in a query result display buffer and invoking the command
768@kbd{M-x eudc-insert-record-at-point-into-bbdb} with the 769@kbd{M-x eudc-insert-record-at-point-into-bbdb} with the
769keyboard binding @kbd{b} @footnote{This keybinding does not actually 770keyboard binding @kbd{b} @footnote{This key binding does not actually
770call @code{eudc-insert-record-at-point-into-bbdb} but uses 771call @code{eudc-insert-record-at-point-into-bbdb} but uses
771@code{eudc-try-bbdb-insert} instead.}, or with the menu. EUDC 772@code{eudc-try-bbdb-insert} instead.}, or with the menu. EUDC
772cannot update an existing BBDB record and will signal an error if you 773cannot update an existing BBDB record and will signal an error if you
@@ -902,7 +903,7 @@ Return non-@code{nil} if @var{var} has protocol-local bindings
902@end defun 903@end defun
903 904
904The following functions allow you to set the value of a variable with 905The following functions allow you to set the value of a variable with
905various degrees of localness. 906various degrees of locality.
906 907
907@defun eudc-default-set var val 908@defun eudc-default-set var val
908Set the EUDC default value of @var{var} to @var{val}. 909Set the EUDC default value of @var{var} to @var{val}.
diff --git a/man/frames.texi b/man/frames.texi
index a64c3cd907f..33ef446bfd2 100644
--- a/man/frames.texi
+++ b/man/frames.texi
@@ -52,7 +52,7 @@ available in Emacs version 21.1 on MS-Windows.
52* Menu Bars:: Enabling and disabling the menu bar. 52* Menu Bars:: Enabling and disabling the menu bar.
53* Tool Bars:: Enabling and disabling the tool bar. 53* Tool Bars:: Enabling and disabling the tool bar.
54* Dialog Boxes:: Controlling use of dialog boxes. 54* Dialog Boxes:: Controlling use of dialog boxes.
55* Tooltips:: Showing "tooltips", AKA "ballon help" for active text. 55* Tooltips:: Showing "tooltips", AKA "balloon help" for active text.
56* Mouse Avoidance:: Moving the mouse pointer out of the way. 56* Mouse Avoidance:: Moving the mouse pointer out of the way.
57* Non-Window Terminals:: Multiple frames on terminals that show only one. 57* Non-Window Terminals:: Multiple frames on terminals that show only one.
58* XTerm Mouse:: Using the mouse in an XTerm terminal emulator. 58* XTerm Mouse:: Using the mouse in an XTerm terminal emulator.
@@ -791,7 +791,7 @@ Menu Bar mode. @xref{Resources X}.
791 Expert users often turn off the menu bar, especially on text-only 791 Expert users often turn off the menu bar, especially on text-only
792terminals, where this makes one additional line available for text. 792terminals, where this makes one additional line available for text.
793If the menu bar is off, you can still pop up a menu of its contents 793If the menu bar is off, you can still pop up a menu of its contents
794with @kbd{C-Mouse-3} on a display which supports popup menus. 794with @kbd{C-Mouse-3} on a display which supports pop-up menus.
795@xref{Menu Mouse Clicks}. 795@xref{Menu Mouse Clicks}.
796 796
797 @xref{Menu Bar}, for information on how to invoke commands with the 797 @xref{Menu Bar}, for information on how to invoke commands with the
@@ -866,7 +866,7 @@ move the mouse in several ways:
866 866
867@table @code 867@table @code
868@item banish 868@item banish
869Move the mouse to the upper-right corner on any keypress; 869Move the mouse to the upper-right corner on any key-press;
870@item exile 870@item exile
871Move the mouse to the corner only if the cursor gets too close, 871Move the mouse to the corner only if the cursor gets too close,
872and allow it to return once the cursor is out of the way; 872and allow it to return once the cursor is out of the way;
diff --git a/man/maintaining.texi b/man/maintaining.texi
index de6a78a5081..bbf56ce6818 100644
--- a/man/maintaining.texi
+++ b/man/maintaining.texi
@@ -309,7 +309,7 @@ In Erlang code, the tags are the functions, records, and macros defined
309in the file. 309in the file.
310 310
311@item 311@item
312In Fortran code, functions, subroutines and blockdata are tags. 312In Fortran code, functions, subroutines and block data are tags.
313 313
314@item 314@item
315In makefiles, targets are tags. 315In makefiles, targets are tags.
@@ -492,7 +492,7 @@ matching, to recognize tags in @file{los.er}.
492 You can specify a regular expression for a particular language, by 492 You can specify a regular expression for a particular language, by
493writing @samp{@{lang@}} in front of it. Then @code{etags} will use 493writing @samp{@{lang@}} in front of it. Then @code{etags} will use
494the regular expression only for files of that language. (@samp{etags 494the regular expression only for files of that language. (@samp{etags
495--help} prints the list of languages recognised by @code{etags}.) The 495--help} prints the list of languages recognized by @code{etags}.) The
496following example tags the @code{DEFVAR} macros in the Emacs source 496following example tags the @code{DEFVAR} macros in the Emacs source
497files, for the C language only: 497files, for the C language only:
498 498
diff --git a/man/reftex.texi b/man/reftex.texi
index 066b4acabb0..b741861c2be 100644
--- a/man/reftex.texi
+++ b/man/reftex.texi
@@ -114,7 +114,7 @@ needed.@refill
114* Viewing Cross-References:: Who references or cites what? 114* Viewing Cross-References:: Who references or cites what?
115 115
116* RefTeXs Menu:: The Ref menu in the menubar. 116* RefTeXs Menu:: The Ref menu in the menubar.
117* Keybindings:: The default keybindings. 117* Key Bindings:: The default key bindings.
118* Faces:: Fontification of RefTeX's buffers. 118* Faces:: Fontification of RefTeX's buffers.
119* Multifile Documents:: Document spread over many files. 119* Multifile Documents:: Document spread over many files.
120* Language Support:: How to support other languages. 120* Language Support:: How to support other languages.
@@ -2550,7 +2550,7 @@ in the variable @code{reftex-view-crossref-extra}.
2550@chapter All the Rest 2550@chapter All the Rest
2551@end iftex 2551@end iftex
2552 2552
2553@node RefTeXs Menu, Keybindings, Viewing Cross-References, Top 2553@node RefTeXs Menu, Key Bindings, Viewing Cross-References, Top
2554@section @b{Ref@TeX{}}'s Menu 2554@section @b{Ref@TeX{}}'s Menu
2555@cindex RefTeXs Menu 2555@cindex RefTeXs Menu
2556@cindex Menu, in the menu bar 2556@cindex Menu, in the menu bar
@@ -2561,11 +2561,11 @@ which support this. From this menu you can access all of
2561@code{Customize} submenu which can be used to access @b{Ref@TeX{}}'s 2561@code{Customize} submenu which can be used to access @b{Ref@TeX{}}'s
2562entire set of options.@refill 2562entire set of options.@refill
2563 2563
2564@node Keybindings, Faces, RefTeXs Menu, Top 2564@node Key Bindings, Faces, RefTeXs Menu, Top
2565@section Default Keybindings 2565@section Default Key Bindings
2566@cindex Keybindings, summary 2566@cindex Key Bindings, summary
2567 2567
2568Here is a summary of the available keybindings. 2568Here is a summary of the available key bindings.
2569 2569
2570@kindex C-c = 2570@kindex C-c =
2571@kindex C-c ( 2571@kindex C-c (
@@ -2601,7 +2601,7 @@ easier access.@refill
2601 2601
2602@c FIXME: Do we need bindings for the Index macros here as well? 2602@c FIXME: Do we need bindings for the Index macros here as well?
2603@c C-c i C-c I or so???? 2603@c C-c i C-c I or so????
2604@c How about keybindings for reftex-reset-mode and reftex-parse-document? 2604@c How about key bindings for reftex-reset-mode and reftex-parse-document?
2605@kindex C-c t 2605@kindex C-c t
2606@kindex C-c l 2606@kindex C-c l
2607@kindex C-c r 2607@kindex C-c r
@@ -2620,7 +2620,7 @@ easier access.@refill
2620@end example 2620@end example
2621 2621
2622@noindent These keys are reserved for the user, so I cannot bind them by 2622@noindent These keys are reserved for the user, so I cannot bind them by
2623default. If you want to have these keybindings available, set in your 2623default. If you want to have these key bindings available, set in your
2624@file{.emacs} file: 2624@file{.emacs} file:
2625 2625
2626@vindex reftex-extra-bindings 2626@vindex reftex-extra-bindings
@@ -2629,11 +2629,11 @@ default. If you want to have these keybindings available, set in your
2629@end lisp 2629@end lisp
2630 2630
2631@vindex reftex-load-hook 2631@vindex reftex-load-hook
2632Changing and adding to @b{Ref@TeX{}}'s keybindings is best done in the hook 2632Changing and adding to @b{Ref@TeX{}}'s key bindings is best done in the hook
2633@code{reftex-load-hook}. For information on the keymaps 2633@code{reftex-load-hook}. For information on the keymaps
2634which should be used to add keys, see @ref{Keymaps and Hooks}. 2634which should be used to add keys, see @ref{Keymaps and Hooks}.
2635 2635
2636@node Faces, AUCTeX, Keybindings, Top 2636@node Faces, AUCTeX, Key Bindings, Top
2637@section Faces 2637@section Faces
2638@cindex Faces 2638@cindex Faces
2639 2639
@@ -3313,7 +3313,7 @@ this bug gets fixed, a real idle timer can be requested with
3313@item 3313@item
3314@b{Viper mode}@* 3314@b{Viper mode}@*
3315@cindex Viper mode 3315@cindex Viper mode
3316@cindex Keybindings, problems with Viper mode 3316@cindex Key bindings, problems with Viper mode
3317@findex viper-harness-minor-mode 3317@findex viper-harness-minor-mode
3318With @i{Viper} mode prior to Vipers version 3.01, you need to protect 3318With @i{Viper} mode prior to Vipers version 3.01, you need to protect
3319@b{Ref@TeX{}}'s keymaps with@refill 3319@b{Ref@TeX{}}'s keymaps with@refill
@@ -3389,7 +3389,7 @@ MicroEmacs at the time).@refill
3389Here is a summary of @b{Ref@TeX{}}'s commands which can be executed from 3389Here is a summary of @b{Ref@TeX{}}'s commands which can be executed from
3390LaTeX files. Command which are executed from the special buffers are 3390LaTeX files. Command which are executed from the special buffers are
3391not described here. All commands are available from the @code{Ref} 3391not described here. All commands are available from the @code{Ref}
3392menu. For keybindings, @pxref{Keybindings}. 3392menu. See @xref{Key Bindings}.
3393 3393
3394@deffn Command reftex-toc 3394@deffn Command reftex-toc
3395Show the table of contents for the current document. When called with 3395Show the table of contents for the current document. When called with
@@ -4796,7 +4796,7 @@ Face name for index entries.
4796@defopt reftex-extra-bindings 4796@defopt reftex-extra-bindings
4797Non-@code{nil} means, make additional key bindings on startup. These 4797Non-@code{nil} means, make additional key bindings on startup. These
4798extra bindings are located in the users @samp{C-c letter} 4798extra bindings are located in the users @samp{C-c letter}
4799map. @xref{Keybindings}.@refill 4799map. @xref{Key Bindings}.@refill
4800@end defopt 4800@end defopt
4801 4801
4802@defopt reftex-plug-into-AUCTeX 4802@defopt reftex-plug-into-AUCTeX
@@ -5391,7 +5391,7 @@ Multiple @code{thebibliography} environments recognized.
5391@itemize @bullet 5391@itemize @bullet
5392@item 5392@item
5393New option @code{reftex-toc-max-level} to limit the depth of the toc. 5393New option @code{reftex-toc-max-level} to limit the depth of the toc.
5394New keybinding @kbd{t} in the @file{*toc*} buffer to change this 5394New key binding @kbd{t} in the @file{*toc*} buffer to change this
5395setting.@refill 5395setting.@refill
5396@item 5396@item
5397RefTeX maintaines an @file{Index Phrases} file in which phrases can be 5397RefTeX maintaines an @file{Index Phrases} file in which phrases can be
diff --git a/man/sc.texi b/man/sc.texi
index c3520af264f..30357640a48 100644
--- a/man/sc.texi
+++ b/man/sc.texi
@@ -1217,13 +1217,13 @@ wide variety of MUAs, it does not install all of its commands directly
1217into the reply buffer's keymap. Instead, it puts its commands on a 1217into the reply buffer's keymap. Instead, it puts its commands on a
1218keymap prefix, then installs this prefix onto the buffer's keymap. What 1218keymap prefix, then installs this prefix onto the buffer's keymap. What
1219this means is that you typically have to type more characters to invoke 1219this means is that you typically have to type more characters to invoke
1220a Supercite command, but Supercite's keybindings can be made much more 1220a Supercite command, but Supercite's key bindings can be made much more
1221consistent across MUAs. 1221consistent across MUAs.
1222 1222
1223You can control what key Supercite uses as its keymap prefix by changing 1223You can control what key Supercite uses as its keymap prefix by changing
1224the variable @code{sc-mode-map-prefix}. By default, this variable is 1224the variable @code{sc-mode-map-prefix}. By default, this variable is
1225set to @code{C-c C-p}; a finger twister perhaps, but unfortunately the 1225set to @code{C-c C-p}; a finger twister perhaps, but unfortunately the
1226best default due to the scarcity of available keybindings in many MUAs. 1226best default due to the scarcity of available key bindings in many MUAs.
1227 1227
1228@item 1228@item
1229@emph{Turns on Supercite minor mode.} 1229@emph{Turns on Supercite minor mode.}
diff --git a/man/speedbar.texi b/man/speedbar.texi
index 088a4a77573..764b1f76153 100644
--- a/man/speedbar.texi
+++ b/man/speedbar.texi
@@ -1,6 +1,6 @@
1\input texinfo @c -*-texinfo-*- 1\input texinfo @c -*-texinfo-*-
2@c 2@c
3@c $Id: speedbar.texi,v 1.7 2001/02/17 17:02:12 rms Exp $ 3@c $Id: speedbar.texi,v 1.8 2001/08/20 01:19:13 rms Exp $
4@c 4@c
5 5
6@c This file is part of GNU Emacs 6@c This file is part of GNU Emacs
@@ -161,18 +161,18 @@ system, and look. If one mode is learned, then the other modes are easy
161to use. 161to use.
162 162
163@menu 163@menu
164* Basic Keybindings:: 164* Basic Key Bindings::
165* Basic Visuals:: 165* Basic Visuals::
166* Mouse Bindings:: 166* Mouse Bindings::
167* Displays Submenu:: 167* Displays Submenu::
168@end menu 168@end menu
169 169
170@node Basic Keybindings, Basic Visuals, Basic Navigation, Basic Navigation 170@node Basic Key Bindings, Basic Visuals, Basic Navigation, Basic Navigation
171@comment node-name, next, previous, up 171@comment node-name, next, previous, up
172@section Basic Keybindings 172@section Basic Key Bindings
173@cindex keybindings 173@cindex key bindings
174 174
175These keybindings are common across all modes: 175These key bindings are common across all modes:
176 176
177@table @kbd 177@table @kbd
178@item delete, SPC 178@item delete, SPC
@@ -244,7 +244,7 @@ flushed. This is similar to a power click. @xref{Mouse Bindings}.
244Contract the current group, hiding sub items. 244Contract the current group, hiding sub items.
245@end table 245@end table
246 246
247@node Basic Visuals, Mouse Bindings, Basic Keybindings, Basic Navigation 247@node Basic Visuals, Mouse Bindings, Basic Key Bindings, Basic Navigation
248@comment node-name, next, previous, up 248@comment node-name, next, previous, up
249@section Basic Visuals 249@section Basic Visuals
250@cindex visuals 250@cindex visuals
@@ -292,7 +292,7 @@ file uses square brackets.
292In all modes, a group can be `edited' by pressing @kbd{RET}, meaning a 292In all modes, a group can be `edited' by pressing @kbd{RET}, meaning a
293file will be opened, or a directory explicitly opened in speedbar. A 293file will be opened, or a directory explicitly opened in speedbar. A
294group can be expanded or contracted using @kbd{+} or 294group can be expanded or contracted using @kbd{+} or
295@kbd{-}. @xref{Basic Keybindings}. 295@kbd{-}. @xref{Basic Key Bindings}.
296 296
297Sometimes groups may have a @samp{?} in its indicator box. This means 297Sometimes groups may have a @samp{?} in its indicator box. This means
298that it is a group type, but there are no contents, or no known way of 298that it is a group type, but there are no contents, or no known way of
@@ -423,7 +423,7 @@ Advanced behavior, like copying and renaming files, is also provided.
423@menu 423@menu
424* Directory Display:: What the display means. 424* Directory Display:: What the display means.
425* Hidden Files:: How to display hidden files. 425* Hidden Files:: How to display hidden files.
426* File Keybindings:: Performing file operations. 426* File Key Bindings:: Performing file operations.
427@end menu 427@end menu
428 428
429@node Directory Display, Hidden Files, File Mode, File Mode 429@node Directory Display, Hidden Files, File Mode, File Mode
@@ -510,7 +510,7 @@ Some group names may say something like @samp{speedbar-t to speedbar-v},
510indicating that all symbols which alphabetically fall between those 510indicating that all symbols which alphabetically fall between those
511categories are included in that sub-group. @xref{Tag Hierarchy Methods}. 511categories are included in that sub-group. @xref{Tag Hierarchy Methods}.
512 512
513@node Hidden Files, File Keybindings, Directory Display, File Mode 513@node Hidden Files, File Key Bindings, Directory Display, File Mode
514@comment node-name, next, previous, up 514@comment node-name, next, previous, up
515@section Hidden Files 515@section Hidden Files
516@cindex hidden files 516@cindex hidden files
@@ -537,12 +537,12 @@ Object files fall into the category of level 2 hidden files. You can
537determine their presence by the @samp{#} and @samp{!} file indicators. 537determine their presence by the @samp{#} and @samp{!} file indicators.
538@xref{Directory Display}. 538@xref{Directory Display}.
539 539
540@node File Keybindings, , Hidden Files, File Mode 540@node File Key Bindings, , Hidden Files, File Mode
541@comment node-name, next, previous, up 541@comment node-name, next, previous, up
542@section File Keybindings 542@section File Key Bindings
543@cindex file keybindings 543@cindex file key bindings
544 544
545File mode has keybindings permitting different file system operations 545File mode has key bindings permitting different file system operations
546such as copy or rename. These commands all operate on the @dfn{current 546such as copy or rename. These commands all operate on the @dfn{current
547file}. In this case, the current file is the file at point, or clicked 547file}. In this case, the current file is the file at point, or clicked
548on when pulling up the menu. 548on when pulling up the menu.
@@ -589,7 +589,7 @@ These buffers can have their tags expanded in the same way as files,
589and uses the same unknown file indicator (@pxref{File Mode}). 589and uses the same unknown file indicator (@pxref{File Mode}).
590 590
591Buffer mode does not have file operation bindings, but the following 591Buffer mode does not have file operation bindings, but the following
592buffer specific keybindings are available: 592buffer specific key bindings are available:
593 593
594@table @kbd 594@table @kbd
595@item k 595@item k
@@ -622,7 +622,7 @@ In these cases, a minor display mode is needed. A minor display mode
622will override any major display mode currently being displayed for the 622will override any major display mode currently being displayed for the
623duration of the specialized buffer's use. Minor display modes 623duration of the specialized buffer's use. Minor display modes
624will follow the general rules of their major counterparts in terms of 624will follow the general rules of their major counterparts in terms of
625keybindings and visuals, but will have specialized behaviors. 625key bindings and visuals, but will have specialized behaviors.
626 626
627@menu 627@menu
628* RMAIL:: Managing folders in speedbar 628* RMAIL:: Managing folders in speedbar
@@ -895,7 +895,7 @@ Hooks run when speedbar is loaded.
895@cindex @code{speedbar-reconfigure-keymaps-hook} 895@cindex @code{speedbar-reconfigure-keymaps-hook}
896@item speedbar-reconfigure-keymaps-hook 896@item speedbar-reconfigure-keymaps-hook
897Hooks run when the keymaps are regenerated. Keymaps are reconfigured 897Hooks run when the keymaps are regenerated. Keymaps are reconfigured
898whenever modes change. This will let you add custom keybindings. 898whenever modes change. This will let you add custom key bindings.
899@cindex @code{speedbar-before-popup-hook} 899@cindex @code{speedbar-before-popup-hook}
900@item speedbar-before-popup-hook 900@item speedbar-before-popup-hook
901Hooks called before popping up the speedbar frame. 901Hooks called before popping up the speedbar frame.
@@ -1279,5 +1279,5 @@ Two good values are @code{nil} and @code{'statictag}.
1279@printindex cp 1279@printindex cp
1280 1280
1281@bye 1281@bye
1282@c LocalWords: speedbar's xref Keybindings slowbar kbd subsubsection 1282@c LocalWords: speedbar's xref slowbar kbd subsubsection
1283@c LocalWords: keybindings 1283@c LocalWords: keybindings
diff --git a/man/text.texi b/man/text.texi
index 9fd4a8c5a7c..cd2aac6c86b 100644
--- a/man/text.texi
+++ b/man/text.texi
@@ -1174,13 +1174,13 @@ visible. Now to look under one of the level-2 headings, position the
1174cursor on it and use @kbd{C-c C-z} again. This exposes the level-2 body 1174cursor on it and use @kbd{C-c C-z} again. This exposes the level-2 body
1175and its level-3 child subheadings and narrows the buffer again. Zooming 1175and its level-3 child subheadings and narrows the buffer again. Zooming
1176in on successive subheadings can be done as much as you like. A string 1176in on successive subheadings can be done as much as you like. A string
1177in the modeline shows how deep you've gone. 1177in the mode line shows how deep you've gone.
1178 1178
1179 When zooming in on a heading, to see only the child subheadings specify 1179 When zooming in on a heading, to see only the child subheadings specify
1180a numeric argument: @kbd{C-u C-c C-z}. The number of levels of children 1180a numeric argument: @kbd{C-u C-c C-z}. The number of levels of children
1181can be specified too (compare @kbd{M-x show-children}), e.g.@: @kbd{M-2 1181can be specified too (compare @kbd{M-x show-children}), e.g.@: @kbd{M-2
1182C-c C-z} exposes two levels of child subheadings. Alternatively, the 1182C-c C-z} exposes two levels of child subheadings. Alternatively, the
1183body can be spcified with a negative argument: @kbd{M-- C-c C-z}. The 1183body can be specified with a negative argument: @kbd{M-- C-c C-z}. The
1184whole subtree can be expanded, similarly to @kbd{C-c C-s} (@kbd{M-x 1184whole subtree can be expanded, similarly to @kbd{C-c C-s} (@kbd{M-x
1185show-subtree}), by specifying a zero argument: @kbd{M-0 C-c C-z}. 1185show-subtree}), by specifying a zero argument: @kbd{M-0 C-c C-z}.
1186 1186
@@ -1561,7 +1561,7 @@ get the cross-references right.
1561@vindex tex-start-options-string 1561@vindex tex-start-options-string
1562 The value of the variable @code{tex-start-options-string} specifies 1562 The value of the variable @code{tex-start-options-string} specifies
1563options for the @TeX{} run. The default value causes @TeX{} to run in 1563options for the @TeX{} run. The default value causes @TeX{} to run in
1564nonstopmode. To run @TeX{} interactively, set the variable to @code{""}. 1564nonstop mode. To run @TeX{} interactively, set the variable to @code{""}.
1565 1565
1566@vindex tex-main-file 1566@vindex tex-main-file
1567 Large @TeX{} documents are often split into several files---one main 1567 Large @TeX{} documents are often split into several files---one main
diff --git a/man/viper.texi b/man/viper.texi
index 142bd78b6b8..2504bb2b539 100644
--- a/man/viper.texi
+++ b/man/viper.texi
@@ -435,7 +435,7 @@ inserts them automatically in front of the Ex command.
435@item Insert state 435@item Insert state
436Insert state is the Vi insertion mode. @key{ESC} will take you back to 436Insert state is the Vi insertion mode. @key{ESC} will take you back to
437Vi state. Insert state editing can be done, including auto-indentation. By 437Vi state. Insert state editing can be done, including auto-indentation. By
438default, Viper disables Emacs keybindings in Insert state. 438default, Viper disables Emacs key bindings in Insert state.
439 439
440@item Replace state 440@item Replace state
441Commands like @kbd{cw} invoke the Replace state. When you cross the 441Commands like @kbd{cw} invoke the Replace state. When you cross the
@@ -462,7 +462,7 @@ those special modes (typing @kbd{C-h m} in a buffer provides
462help with key bindings for the major mode of that buffer). 462help with key bindings for the major mode of that buffer).
463 463
464If you switch to Vi in Dired or similar modes---no harm is done. It is just 464If you switch to Vi in Dired or similar modes---no harm is done. It is just
465that the special keybindings provided by those modes will be temporarily 465that the special key bindings provided by those modes will be temporarily
466overshadowed by Viper's bindings. Switching back to Viper's Emacs state 466overshadowed by Viper's bindings. Switching back to Viper's Emacs state
467will revive the environment provided by the current major mode. 467will revive the environment provided by the current major mode.
468 468
@@ -1608,13 +1608,13 @@ that you can use directly.
1608 1608
1609@menu 1609@menu
1610* Rudimentary Changes:: Simple constant definitions. 1610* Rudimentary Changes:: Simple constant definitions.
1611* Keybindings:: Enabling Emacs Keys, Rebinding keys, etc. 1611* Key Bindings:: Enabling Emacs Keys, Rebinding keys, etc.
1612* Packages that Change Keymaps:: How to deal with such beasts. 1612* Packages that Change Keymaps:: How to deal with such beasts.
1613* Viper Specials:: Special Viper commands. 1613* Viper Specials:: Special Viper commands.
1614* Vi Macros:: How to do Vi style macros. 1614* Vi Macros:: How to do Vi style macros.
1615@end menu 1615@end menu
1616 1616
1617@node Rudimentary Changes,Keybindings,Customization,Customization 1617@node Rudimentary Changes,Key Bindings,Customization,Customization
1618@section Rudimentary Changes 1618@section Rudimentary Changes
1619 1619
1620@cindex setting variables 1620@cindex setting variables
@@ -1979,10 +1979,10 @@ can include a line like this in your @file{.viper} file:
1979@vindex @code{viper-replace-state-hook} 1979@vindex @code{viper-replace-state-hook}
1980@vindex @code{viper-emacs-state-hook} 1980@vindex @code{viper-emacs-state-hook}
1981 1981
1982@node Keybindings, Packages that Change Keymaps, Rudimentary Changes,Customization 1982@node Key Bindings, Packages that Change Keymaps, Rudimentary Changes,Customization
1983@section Keybindings 1983@section Key Bindings
1984 1984
1985@cindex keybindings 1985@cindex key bindings
1986@cindex keymaps 1986@cindex keymaps
1987 1987
1988Viper lets you define hot keys, i.e., you can associate keyboard keys 1988Viper lets you define hot keys, i.e., you can associate keyboard keys
@@ -2214,7 +2214,7 @@ bindings in Emacs.
2214@findex @code{viper-add-local-keys} 2214@findex @code{viper-add-local-keys}
2215@findex @code{viper-zap-local-keys} 2215@findex @code{viper-zap-local-keys}
2216 2216
2217@node Packages that Change Keymaps,Viper Specials,Keybindings,Customization 2217@node Packages that Change Keymaps,Viper Specials,Key Bindings,Customization
2218@subsection Packages that Change Keymaps 2218@subsection Packages that Change Keymaps
2219@cindex C-c and Viper 2219@cindex C-c and Viper
2220@cindex Viper and C-c 2220@cindex Viper and C-c
@@ -2881,7 +2881,7 @@ on a function key, such as @kbd{up} or @kbd{f13}.
2881This is very useful if you run out of function keys on your keyboard; it 2881This is very useful if you run out of function keys on your keyboard; it
2882makes Viper macro facility a @emph{keyboard doubler}, so to speak. 2882makes Viper macro facility a @emph{keyboard doubler}, so to speak.
2883 2883
2884Elsewhere (@xref{Keybindings}, for details), we review 2884Elsewhere (@xref{Key Bindings}, for details), we review
2885the standard Emacs mechanism for binding function keys to commands. 2885the standard Emacs mechanism for binding function keys to commands.
2886For instance, 2886For instance,
2887 2887
@@ -4090,7 +4090,7 @@ is typed in Minibuffer. File completion and history are supported.
4090@node Mapping, Shell Commands, File and Buffer Handling, Commands 4090@node Mapping, Shell Commands, File and Buffer Handling, Commands
4091@section Mapping 4091@section Mapping
4092 4092
4093@cindex keybindings 4093@cindex key bindings
4094@cindex key mapping 4094@cindex key mapping
4095 4095
4096@table @kbd 4096@table @kbd