diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2011-07-14 16:01:16 +0200 |
---|---|---|
committer | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2011-07-14 16:01:16 +0200 |
commit | 43f5740b71b90057bf18013245eb906286b3a334 (patch) | |
tree | 47f50fde294557128a49505d89ca2661f93c05de | |
parent | f2182a765ac9c71d0d55ed27b097f8025db0d252 (diff) | |
download | emacs-43f5740b71b90057bf18013245eb906286b3a334.tar.gz |
mouse-set-region doc fix
* mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
the doc string (bug#7015).
-rw-r--r-- | lisp/ChangeLog | 3 | ||||
-rw-r--r-- | lisp/mouse.el | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1edb18ecb4c..068f1f6cb47 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org> + * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in + the doc string (bug#7015). + * font-lock.el (font-lock-maximum-decoration): Mention what numeric levels mean (bug#6935). diff --git a/lisp/mouse.el b/lisp/mouse.el index 4de3e175a4a..63395619f44 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -687,7 +687,9 @@ This should be bound to a mouse click event type." (defun mouse-set-region (click) "Set the region to the text dragged over, and copy to kill ring. -This should be bound to a mouse drag event." +This should be bound to a mouse drag event. +See the `mouse-drag-copy-region' variable to control whether this +command alters the kill ring or not." (interactive "e") (mouse-minibuffer-check click) (select-window (posn-window (event-start click))) |