aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2008-10-28 00:40:09 +0000
committerChong Yidong2008-10-28 00:40:09 +0000
commita0377cbf230f681b1e57152e2eca28def468359b (patch)
treea5d2909769d9567af356abcc4572e4837f9bfbcc
parent70a9af8178a2381024795d7555bedb80611cb432 (diff)
downloademacs-a0377cbf230f681b1e57152e2eca28def468359b.tar.gz
emacs-a0377cbf230f681b1e57152e2eca28def468359b.zip
Fix last change.
-rw-r--r--doc/emacs/indent.texi10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/emacs/indent.texi b/doc/emacs/indent.texi
index b95f265f56f..4811c522a9c 100644
--- a/doc/emacs/indent.texi
+++ b/doc/emacs/indent.texi
@@ -37,11 +37,11 @@ Indent from point to the next prespecified tab stop column
37Indent from point to under an indentation point in the previous line. 37Indent from point to under an indentation point in the previous line.
38@end table 38@end table
39 39
40 In most major modes, the @key{tab} key runs the command 40 In most major modes, the @key{TAB} key runs the command
41@code{indent-for-tab-command}, which either performs indentation or 41@code{indent-for-tab-command}, which either performs indentation or
42inserts whitespace at point, depending on the situation. 42inserts whitespace at point, depending on the situation.
43 43
44 In programming modes such as Lisp mode and C mode, @key{tab} indents 44 In programming modes such as Lisp mode and C mode, @key{TAB} indents
45the current line if the region is inactive. If the region is active, 45the current line if the region is inactive. If the region is active,
46it indents every line in the region (@pxref{Mark}). Indentation means 46it indents every line in the region (@pxref{Mark}). Indentation means
47adding or removing some combination of space and tab characters 47adding or removing some combination of space and tab characters
@@ -49,12 +49,12 @@ adding or removing some combination of space and tab characters
49makes sense given the text in the preceding lines. Exactly how 49makes sense given the text in the preceding lines. Exactly how
50indentation is performed depends on the major mode. 50indentation is performed depends on the major mode.
51 51
52 In text modes, @key{tab} inserts some whitespace characters to 52 In text modes, @key{TAB} inserts some whitespace characters to
53advance point to the next tab stop (@pxref{Tab Stops}). For the 53advance point to the next tab stop (@pxref{Tab Stops}). For the
54purposes of this command, the position of the first non-whitespace 54purposes of this command, the position of the first non-whitespace
55character on the preceding line is treated as an additional tab stop. 55character on the preceding line is treated as an additional tab stop.
56You can therefore use @key{tab} to ``align'' point with the preceding 56You can therefore use @key{TAB} to ``align'' point with the preceding
57line. If the region is active, @key{tab} performs this action on 57line. If the region is active, @key{TAB} performs this action on
58every line in the region. 58every line in the region.
59 59
60@vindex tab-width 60@vindex tab-width