diff options
| author | Stefan Monnier | 2000-11-03 22:13:18 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2000-11-03 22:13:18 +0000 |
| commit | 82fdafde11cc2495cc0d4e263579aeb8b470dd11 (patch) | |
| tree | 3bc84a3858965bf44d9dcc5ea95491d9e3992378 | |
| parent | 44e70da297567b5a98739d7357a81752b0d44155 (diff) | |
| download | emacs-82fdafde11cc2495cc0d4e263579aeb8b470dd11.tar.gz emacs-82fdafde11cc2495cc0d4e263579aeb8b470dd11.zip | |
(delete-selection-mode): Drop unneeded positional args.
| -rw-r--r-- | lisp/delsel.el | 2 |
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 | |||
| 65 | enabled and typed text replaces the selection if the selection is | 65 | enabled and typed text replaces the selection if the selection is |
| 66 | active. Otherwise, typed text is just inserted at point regardless of | 66 | active. Otherwise, typed text is just inserted at point regardless of |
| 67 | any selection." | 67 | any 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) |