diff options
| author | Stephen Berman | 2016-07-12 10:43:24 +0200 |
|---|---|---|
| committer | Stephen Berman | 2016-07-12 10:43:24 +0200 |
| commit | 2f67f8a145af8f185f644b1d094a03895a124ef1 (patch) | |
| tree | 1a6f58527e9ebedb4200bf9763617cf7fb516f1a | |
| parent | 20038f8ab75dd1551412a43cd58520c483c22921 (diff) | |
| download | emacs-2f67f8a145af8f185f644b1d094a03895a124ef1.tar.gz emacs-2f67f8a145af8f185f644b1d094a03895a124ef1.zip | |
* lisp/mouse.el (mouse-select-region-move-to-beginning): Add :group.
| -rw-r--r-- | lisp/mouse.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/mouse.el b/lisp/mouse.el index 44462385b6c..f5953265ff0 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el | |||
| @@ -542,9 +542,10 @@ must be one of the symbols `header', `mode', or `vertical'." | |||
| 542 | "Effect of selecting a region extending backward from double click. | 542 | "Effect of selecting a region extending backward from double click. |
| 543 | Nil means keep point at the position clicked (region end); | 543 | Nil means keep point at the position clicked (region end); |
| 544 | non-nil means move point to beginning of region." | 544 | non-nil means move point to beginning of region." |
| 545 | :version "25.2" | ||
| 546 | :type '(choice (const :tag "Don't move point" nil) | 545 | :type '(choice (const :tag "Don't move point" nil) |
| 547 | (const :tag "Move point to beginning of region" t))) | 546 | (const :tag "Move point to beginning of region" t)) |
| 547 | :group 'mouse | ||
| 548 | :version "25.2") | ||
| 548 | 549 | ||
| 549 | (defun mouse-set-point (event &optional promote-to-region) | 550 | (defun mouse-set-point (event &optional promote-to-region) |
| 550 | "Move point to the position clicked on with the mouse. | 551 | "Move point to the position clicked on with the mouse. |