1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

* mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.

This commit is contained in:
Johan Bockgård 2011-07-12 23:59:09 +02:00
parent bc985c877c
commit 460c0fbaf9
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2011-07-12 Johan Bockgård <bojohan@gnu.org>
* mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
2011-07-12 Chong Yidong <cyd@stupidchicken.com>
* mouse-sel.el: Hack restoring functionality, while keeping

View File

@ -279,7 +279,7 @@ kill ring; mouse-1 or mouse-3 kills it."
(defconst mouse-sel-primary-overlay
(let ((ol (make-overlay (point-min) (point-min))))
(delete-overlay ol)
(overlay-put ol 'face 'secondary-selection)
(overlay-put ol 'face 'region)
ol)
"An overlay which records the current primary selection.
This is used by Mouse Sel mode only.")