diff options
author | Richard M. Stallman <rms@gnu.org> | 2004-06-21 03:16:28 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2004-06-21 03:16:28 +0000 |
commit | eb630d4b6b23c5c989b48233881c61f31a9a7386 (patch) | |
tree | 64d1e40f73250455d4e54c5fa5ea1066ea66e089 /lisp/mouse.el | |
parent | 512bfd85dfb32d139c6be2440654f9db8e305ac5 (diff) | |
download | emacs-eb630d4b6b23c5c989b48233881c61f31a9a7386.tar.gz |
(mouse-set-region-1): Set transient-mark-mode to `only'.
Diffstat (limited to 'lisp/mouse.el')
-rw-r--r-- | lisp/mouse.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mouse.el b/lisp/mouse.el index 621b517e2fe..7f9d080478a 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -625,7 +625,7 @@ This should be bound to a mouse drag event." (defun mouse-set-region-1 () ;; Set transient-mark-mode for a little while. - (setq transient-mark-mode (or transient-mark-mode 'lambda)) + (setq transient-mark-mode (or transient-mark-mode 'only)) (setq mouse-last-region-beg (region-beginning)) (setq mouse-last-region-end (region-end)) (setq mouse-last-region-tick (buffer-modified-tick))) |