diff options
| author | Richard M. Stallman | 2001-06-26 13:22:49 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-06-26 13:22:49 +0000 |
| commit | 46497336e1b27dca1d4abbf0e0464357eb952728 (patch) | |
| tree | 86ec9d208d08d1ad661e2bea25bf16235d59a799 | |
| parent | 57d28eadef63418c65991573ee50fffb23148839 (diff) | |
| download | emacs-46497336e1b27dca1d4abbf0e0464357eb952728.tar.gz emacs-46497336e1b27dca1d4abbf0e0464357eb952728.zip | |
Say "expression" instead of "sexp". Update xref, Sexps -> Expressions.
| -rw-r--r-- | man/killing.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/man/killing.texi b/man/killing.texi index 2becedb6147..37460f0ff60 100644 --- a/man/killing.texi +++ b/man/killing.texi | |||
| @@ -224,7 +224,7 @@ Kill back to beginning of sentence (@code{backward-kill-sentence}). | |||
| 224 | @item M-k | 224 | @item M-k |
| 225 | Kill to end of sentence (@code{kill-sentence}). | 225 | Kill to end of sentence (@code{kill-sentence}). |
| 226 | @item C-M-k | 226 | @item C-M-k |
| 227 | Kill sexp (@code{kill-sexp}). @xref{Lists}. | 227 | Kill the following balanced expression (@code{kill-sexp}). @xref{Expressions}. |
| 228 | @item M-z @var{char} | 228 | @item M-z @var{char} |
| 229 | Kill through the next occurrence of @var{char} (@code{zap-to-char}). | 229 | Kill through the next occurrence of @var{char} (@code{zap-to-char}). |
| 230 | @end table | 230 | @end table |
| @@ -242,10 +242,10 @@ including) the next occurrence of that character in the buffer. A | |||
| 242 | numeric argument acts as a repeat count. A negative argument means to | 242 | numeric argument acts as a repeat count. A negative argument means to |
| 243 | search backward and kill text before point. | 243 | search backward and kill text before point. |
| 244 | 244 | ||
| 245 | Other syntactic units can be killed: words, with @kbd{M-@key{DEL}} and | 245 | Other syntactic units can be killed: words, with @kbd{M-@key{DEL}} |
| 246 | @kbd{M-d} (@pxref{Words}); sexps, with @kbd{C-M-k} (@pxref{Lists}); and | 246 | and @kbd{M-d} (@pxref{Words}); balanced expressions, with @kbd{C-M-k} |
| 247 | sentences, with @kbd{C-x @key{DEL}} and @kbd{M-k} | 247 | (@pxref{Expressions}); and sentences, with @kbd{C-x @key{DEL}} and |
| 248 | (@pxref{Sentences}).@refill | 248 | @kbd{M-k} (@pxref{Sentences}).@refill |
| 249 | 249 | ||
| 250 | You can use kill commands in read-only buffers. They don't actually | 250 | You can use kill commands in read-only buffers. They don't actually |
| 251 | change the buffer, and they beep to warn you of that, but they do copy | 251 | change the buffer, and they beep to warn you of that, but they do copy |