aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2001-06-26 13:21:07 +0000
committerRichard M. Stallman2001-06-26 13:21:07 +0000
commitd6921e352a20f7b0a19f04738da4a5f882fd07b7 (patch)
treeb5a8c73a88477059a426bc1795b6c54715dc6fe5
parentee6038a695769219caa434d95c7aea30bcab05ed (diff)
downloademacs-d6921e352a20f7b0a19f04738da4a5f882fd07b7.tar.gz
emacs-d6921e352a20f7b0a19f04738da4a5f882fd07b7.zip
Say "expression" instead of "sexp". Update xref, Sexps -> Expressions.
-rw-r--r--man/fixit.texi16
1 files changed, 8 insertions, 8 deletions
diff --git a/man/fixit.texi b/man/fixit.texi
index d7bfa1c9923..bbe53f157c8 100644
--- a/man/fixit.texi
+++ b/man/fixit.texi
@@ -103,15 +103,15 @@ punctuation characters between the words do not move. For example,
103@w{@samp{FOO, BAR}} transposes into @w{@samp{BAR, FOO}} rather than 103@w{@samp{FOO, BAR}} transposes into @w{@samp{BAR, FOO}} rather than
104@samp{@w{BAR FOO,}}. 104@samp{@w{BAR FOO,}}.
105 105
106 @kbd{C-M-t} (@code{transpose-sexps}) is a similar command for transposing 106 @kbd{C-M-t} (@code{transpose-sexps}) is a similar command for
107two expressions (@pxref{Lists}), and @kbd{C-x C-t} (@code{transpose-lines}) 107transposing two expressions (@pxref{Expressions}), and @kbd{C-x C-t}
108exchanges lines. They work like @kbd{M-t} except in determining the 108(@code{transpose-lines}) exchanges lines. They work like @kbd{M-t}
109division of the text into syntactic units. 109except in determining the division of the text into syntactic units.
110 110
111 A numeric argument to a transpose command serves as a repeat count: it 111 A numeric argument to a transpose command serves as a repeat count: it
112tells the transpose command to move the character (word, sexp, line) 112tells the transpose command to move the character (word, expression, line)
113before or containing point across several other characters (words, 113before or containing point across several other characters (words,
114sexps, lines). For example, @kbd{C-u 3 C-t} moves the character before 114expressions, lines). For example, @kbd{C-u 3 C-t} moves the character before
115point forward across three other characters. It would change 115point forward across three other characters. It would change
116@samp{f@point{}oobar} into @samp{oobf@point{}ar}. This is equivalent to 116@samp{f@point{}oobar} into @samp{oobf@point{}ar}. This is equivalent to
117repeating @kbd{C-t} three times. @kbd{C-u - 4 M-t} moves the word 117repeating @kbd{C-t} three times. @kbd{C-u - 4 M-t} moves the word
@@ -120,8 +120,8 @@ the effect of plain @kbd{C-M-t}.@refill
120 120
121 A numeric argument of zero is assigned a special meaning (because 121 A numeric argument of zero is assigned a special meaning (because
122otherwise a command with a repeat count of zero would do nothing): to 122otherwise a command with a repeat count of zero would do nothing): to
123transpose the character (word, sexp, line) ending after point with the 123transpose the character (word, expression, line) ending after point
124one ending after the mark. 124with the one ending after the mark.
125 125
126@node Fixing Case 126@node Fixing Case
127@section Case Conversion 127@section Case Conversion