changeset 18576:ff3876f9e299

(delete-selection-mode): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Thu, 03 Jul 1997 20:03:04 +0000
parents c87b0767a179
children 975351f5fc53
files lisp/delsel.el
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/delsel.el	Thu Jul 03 19:07:26 1997 +0000
+++ b/lisp/delsel.el	Thu Jul 03 20:03:04 1997 +0000
@@ -91,7 +91,10 @@
 (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)