1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-28 19:42:02 +00:00

(delete-selection-mode): Doc fix.

This commit is contained in:
Richard M. Stallman 1997-07-03 20:03:04 +00:00
parent 4d5b8182e9
commit e51ba70172

View File

@ -91,7 +91,10 @@ insertion commands first delete the region and then insert.")
(defun delete-selection-mode (arg)
"Toggle Delete Selection mode.
When ON, typed text replaces the selection if the selection is active.
When OFF, typed text is just inserted at point."
When OFF, typed text is just inserted at point.
A positive argument turns the mode on, negative argument turns it off,
and no argument (or nil) toggles the mode."
(interactive "P")
(setq delete-selection-mode
(if (null arg) (not delete-selection-mode)