diff options
| author | Richard M. Stallman | 1997-07-03 20:03:04 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-07-03 20:03:04 +0000 |
| commit | e51ba7017259025dad86abbe3f4f7720a7528dc0 (patch) | |
| tree | 29f3d1fd3a2e21b59212ea0363ffa78f8d522fa8 | |
| parent | 4d5b8182e9e2b640ea9795d1418b233db2907e11 (diff) | |
| download | emacs-e51ba7017259025dad86abbe3f4f7720a7528dc0.tar.gz emacs-e51ba7017259025dad86abbe3f4f7720a7528dc0.zip | |
(delete-selection-mode): Doc fix.
| -rw-r--r-- | lisp/delsel.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/delsel.el b/lisp/delsel.el index b1903985b1a..ffd7a3982ec 100644 --- a/lisp/delsel.el +++ b/lisp/delsel.el | |||
| @@ -91,7 +91,10 @@ insertion commands first delete the region and then insert.") | |||
| 91 | (defun delete-selection-mode (arg) | 91 | (defun delete-selection-mode (arg) |
| 92 | "Toggle Delete Selection mode. | 92 | "Toggle Delete Selection mode. |
| 93 | When ON, typed text replaces the selection if the selection is active. | 93 | When ON, typed text replaces the selection if the selection is active. |
| 94 | When OFF, typed text is just inserted at point." | 94 | When OFF, typed text is just inserted at point. |
| 95 | |||
| 96 | A positive argument turns the mode on, negative argument turns it off, | ||
| 97 | and no argument (or nil) toggles the mode." | ||
| 95 | (interactive "P") | 98 | (interactive "P") |
| 96 | (setq delete-selection-mode | 99 | (setq delete-selection-mode |
| 97 | (if (null arg) (not delete-selection-mode) | 100 | (if (null arg) (not delete-selection-mode) |