From 6a2d05aef7b3ab539f1ec2cb0906324d918d6a51 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Tue, 1 Aug 2017 14:48:17 +0100 Subject: [PATCH] el/dot-emacs.el: Fix conflict between face and overlay variable names. --- el/dot-emacs.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/el/dot-emacs.el b/el/dot-emacs.el index 02bf93d..967d8ea 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -1551,7 +1551,7 @@ doesn't match any of the regular expressions in ;;;-------------------------------------------------------------------------- ;;; Where is point? -(mdw-define-face mdw-point-overlay +(mdw-define-face mdw-point-overlay-face (((type graphic))) (((min-colors 64)) :background "darkblue") (((class color)) :background "blue") @@ -1575,7 +1575,7 @@ doesn't match any of the regular expressions in (setq s (concat s ss)))) (when (or left right) (overlay-put ov 'before-string s))) - (overlay-put ov 'face 'mdw-point-overlay) + (overlay-put ov 'face 'mdw-point-overlay-face) (delete-overlay ov) ov)) -- 2.11.0