X-Git-Url: https://git.distorted.org.uk/~mdw/profile/blobdiff_plain/3f32879e21278e45d7350bcaca7bef2a03ee6c9a..c2c256b7c6b49be7c2084ba6028539f3f8640684:/el/dot-emacs.el diff --git a/el/dot-emacs.el b/el/dot-emacs.el index 2fdc9ab..63f6e9d 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -1198,7 +1198,7 @@ doesn't match any of the regular expressions in (mdw-define-face region (((min-colors 64)) :background "grey30") (((class color)) :background "blue") - ((t) :inverse-video t)) + (t :inverse-video t)) (mdw-define-face match (((class color)) :background "blue") (t :inverse-video t)) @@ -1223,7 +1223,8 @@ doesn't match any of the regular expressions in (mdw-define-face fringe (t :foreground "yellow")) (mdw-define-face show-paren-match - (((class color)) :background "darkgreen") + (((min-colors 64)) :background "darkgreen") + (((class color)) :background "green") (t :underline t)) (mdw-define-face show-paren-mismatch (((class color)) :background "red") @@ -1550,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") @@ -1574,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))