From: Mark Wooding Date: Tue, 1 Aug 2017 13:48:17 +0000 (+0100) Subject: el/dot-emacs.el: Fix conflict between face and overlay variable names. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/commitdiff_plain/6a2d05aef7b3ab539f1ec2cb0906324d918d6a51?ds=sidebyside el/dot-emacs.el: Fix conflict between face and overlay variable names. --- 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 @@ (let ((dollar (make-glyph-code ?$ 'mdw-ellipsis-face)) ;;;-------------------------------------------------------------------------- ;;; 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 @@ (defun mdw-configure-point-overlay () (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))