aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-02-25 13:45:59 +0000
committerRichard M. Stallman2005-02-25 13:45:59 +0000
commita751f299868ee27997734432994d067405b14bc4 (patch)
treebb25e37543d0649cf2074d50f94f15c4e082d95a
parenta0b497c53be2edd8140e4e61fa455f2c051aa66f (diff)
downloademacs-a751f299868ee27997734432994d067405b14bc4.tar.gz
emacs-a751f299868ee27997734432994d067405b14bc4.zip
(Fixit): Mention C-/ for undo.
(Spelling): Mention ESC TAB like M-TAB. Replacement words with r and R are rechecked. Say where C-g leaves point. Mention ? as input.
-rw-r--r--man/fixit.texi27
1 files changed, 17 insertions, 10 deletions
diff --git a/man/fixit.texi b/man/fixit.texi
index 0982b0856ef..104297b974e 100644
--- a/man/fixit.texi
+++ b/man/fixit.texi
@@ -11,12 +11,12 @@ the times when you catch a mistake in your text just after you have made
11it, or change your mind while composing text on the fly. 11it, or change your mind while composing text on the fly.
12 12
13 The most fundamental command for correcting erroneous editing is the 13 The most fundamental command for correcting erroneous editing is the
14undo command, @kbd{C-x u} or @kbd{C-_}. This command undoes a single 14undo command, @kbd{C-x u} or @kbd{C-_} or @kbd{C-/}. This command
15command (usually), a part of a command (in the case of 15undoes a single command (usually), a part of a command (in the case of
16@code{query-replace}), or several consecutive self-inserting characters. 16@code{query-replace}), or several consecutive self-inserting
17Consecutive repetitions of @kbd{C-_} or @kbd{C-x u} undo earlier and 17characters. Consecutive repetitions of the undo command undo earlier
18earlier changes, back to the limit of the undo information available. 18and earlier changes, back to the limit of the undo information
19@xref{Undo}, for more information. 19available. @xref{Undo}, for more information.
20 20
21@menu 21@menu
22* Kill Errors:: Commands to kill a batch of recently entered text. 22* Kill Errors:: Commands to kill a batch of recently entered text.
@@ -164,6 +164,7 @@ Enable Flyspell mode for comments and strings only.
164@item M-$ 164@item M-$
165Check and correct spelling of the word at point (@code{ispell-word}). 165Check and correct spelling of the word at point (@code{ispell-word}).
166@item M-@key{TAB} 166@item M-@key{TAB}
167@itemx @key{ESC} @key{TAB}
167Complete the word before point based on the spelling dictionary 168Complete the word before point based on the spelling dictionary
168(@code{ispell-complete-word}). 169(@code{ispell-complete-word}).
169@item M-x ispell 170@item M-x ispell
@@ -239,11 +240,13 @@ Skip this word---continue to consider it incorrect, but don't change it
239here. 240here.
240 241
241@item r @var{new} @key{RET} 242@item r @var{new} @key{RET}
242Replace the word (just this time) with @var{new}. 243Replace the word (just this time) with @var{new}. (The replacement
244string will be rescanned for more spelling errors.)
243 245
244@item R @var{new} @key{RET} 246@item R @var{new} @key{RET}
245Replace the word with @var{new}, and do a @code{query-replace} so you 247Replace the word with @var{new}, and do a @code{query-replace} so you
246can replace it elsewhere in the buffer if you wish. 248can replace it elsewhere in the buffer if you wish. (The replacements
249will be rescanned for more spelling errors.)
247 250
248@item @var{digit} 251@item @var{digit}
249Replace the word (just this time) with one of the displayed 252Replace the word (just this time) with one of the displayed
@@ -277,8 +280,9 @@ the replacement by typing a digit. You can use @samp{*} in @var{word} as a
277wildcard. 280wildcard.
278 281
279@item C-g 282@item C-g
280Quit interactive spell checking. You can restart it again afterward 283Quit interactive spell checking, leaving point at the word that was
281with @kbd{C-u M-$}. 284being checked. You can restart checking again afterward with @kbd{C-u
285M-$}.
282 286
283@item X 287@item X
284Same as @kbd{C-g}. 288Same as @kbd{C-g}.
@@ -296,6 +300,9 @@ Refresh the screen.
296@item C-z 300@item C-z
297This key has its normal command meaning (suspend Emacs or iconify this 301This key has its normal command meaning (suspend Emacs or iconify this
298frame). 302frame).
303
304@item ?
305Show the list of options.
299@end table 306@end table
300 307
301@findex ispell-complete-word 308@findex ispell-complete-word