aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2000-11-03 22:13:18 +0000
committerStefan Monnier2000-11-03 22:13:18 +0000
commit82fdafde11cc2495cc0d4e263579aeb8b470dd11 (patch)
tree3bc84a3858965bf44d9dcc5ea95491d9e3992378
parent44e70da297567b5a98739d7357a81752b0d44155 (diff)
downloademacs-82fdafde11cc2495cc0d4e263579aeb8b470dd11.tar.gz
emacs-82fdafde11cc2495cc0d4e263579aeb8b470dd11.zip
(delete-selection-mode): Drop unneeded positional args.
-rw-r--r--lisp/delsel.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/delsel.el b/lisp/delsel.el
index f0749eefe77..52819206810 100644
--- a/lisp/delsel.el
+++ b/lisp/delsel.el
@@ -65,7 +65,7 @@ When Delete Selection mode is enabled, Transient Mark mode is also
65enabled and typed text replaces the selection if the selection is 65enabled and typed text replaces the selection if the selection is
66active. Otherwise, typed text is just inserted at point regardless of 66active. Otherwise, typed text is just inserted at point regardless of
67any selection." 67any selection."
68 nil nil nil :global t :group 'editing-basics 68 :global t :group 'editing-basics
69 (if (not delete-selection-mode) 69 (if (not delete-selection-mode)
70 (remove-hook 'pre-command-hook 'delete-selection-pre-hook) 70 (remove-hook 'pre-command-hook 'delete-selection-pre-hook)
71 (add-hook 'pre-command-hook 'delete-selection-pre-hook) 71 (add-hook 'pre-command-hook 'delete-selection-pre-hook)