diff options
| author | Richard M. Stallman | 1995-08-05 06:17:38 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-08-05 06:17:38 +0000 |
| commit | 68002b5f39ab3a5b3060d7f36f987af7df1bddff (patch) | |
| tree | 47443556708ac11656c66a9ba781049470f92641 | |
| parent | efb57f43ab5ba5f188c9554b1502f0f54bee52eb (diff) | |
| download | emacs-68002b5f39ab3a5b3060d7f36f987af7df1bddff.tar.gz emacs-68002b5f39ab3a5b3060d7f36f987af7df1bddff.zip | |
Explain how delete-region alters point.
| -rw-r--r-- | lispref/text.texi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lispref/text.texi b/lispref/text.texi index 6b165e18287..176edf1f74d 100644 --- a/lispref/text.texi +++ b/lispref/text.texi | |||
| @@ -450,7 +450,9 @@ be compared with that of the former text. | |||
| 450 | 450 | ||
| 451 | @deffn Command delete-region start end | 451 | @deffn Command delete-region start end |
| 452 | This command deletes the text in the current buffer in the region | 452 | This command deletes the text in the current buffer in the region |
| 453 | defined by @var{start} and @var{end}. The value is @code{nil}. | 453 | defined by @var{start} and @var{end}. The value is @code{nil}. If |
| 454 | point was inside the deleted region, its value afterward is @var{start}. | ||
| 455 | Otherwise, point relocates with the surrounding text, as markers do. | ||
| 454 | @end deffn | 456 | @end deffn |
| 455 | 457 | ||
| 456 | @deffn Command delete-char count &optional killp | 458 | @deffn Command delete-char count &optional killp |