diff options
author | Jimmy Aguilar Mena <spacibba@aol.com> | 2019-05-05 16:14:34 +0200 |
---|---|---|
committer | Jimmy Aguilar Mena <spacibba@aol.com> | 2019-05-05 16:59:25 +0200 |
commit | cca81f22d972f4bfc953534104e9e72da421f51e (patch) | |
tree | bd03de18056f37ce1da42b46a792739909202856 /lisp/faces.el | |
parent | a336300ccf024824fbf50298623e04f369952670 (diff) | |
download | emacs-cca81f22d972f4bfc953534104e9e72da421f51e.tar.gz |
Fixed fill-column-indicator face removing background.
*lisp/faces.el: Removed background in default fill-column-indicator
face.
*src/xdisp.c: fill-column-indicator face merged with saved face.
Diffstat (limited to 'lisp/faces.el')
-rw-r--r-- | lisp/faces.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index b9332790642..207b627f251 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -2502,7 +2502,9 @@ unwanted effects." ;; Definition stolen from display-line-numbers. (defface fill-column-indicator - '((t :inherit (shadow default))) + '((t :inherit shadow :weight normal :slant normal + :underline nil :overline nil :strike-through nil + :box nil :invert-video nil :stipple nil)) "Face for displaying fill column indicator. This face is used when `display-fill-column-indicator-mode' is non-nil." |