]> git.eshelyaron.com Git - emacs.git/commitdiff
(delete-selection-mode): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Thu, 3 Jul 1997 20:03:04 +0000 (20:03 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 3 Jul 1997 20:03:04 +0000 (20:03 +0000)
lisp/delsel.el

index b1903985b1a38417ebe89c166daee88eb2d39a65..ffd7a3982ec3a68607f74e63a5a07dd769d8f4ce 100644 (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)