diff options
author | Johan Bockgård <bojohan@gnu.org> | 2011-07-12 23:59:09 +0200 |
---|---|---|
committer | Johan Bockgård <bojohan@gnu.org> | 2011-07-12 23:59:09 +0200 |
commit | 460c0fbaf95afc285c0d5f34c7a514bd56292902 (patch) | |
tree | 58859619a3ab22966797c2e65bdb844ea3325a79 /lisp/mouse-sel.el | |
parent | bc985c877c5b4d8cc87976a834cede666edc0ed5 (diff) | |
download | emacs-460c0fbaf95afc285c0d5f34c7a514bd56292902.tar.gz |
* mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
Diffstat (limited to 'lisp/mouse-sel.el')
-rw-r--r-- | lisp/mouse-sel.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mouse-sel.el b/lisp/mouse-sel.el index 8f27b0e162b..50d221b6fa0 100644 --- a/lisp/mouse-sel.el +++ b/lisp/mouse-sel.el @@ -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.") |