diff options
| author | Tino Calancha | 2017-05-04 19:47:45 +0900 |
|---|---|---|
| committer | Tino Calancha | 2017-05-04 19:47:45 +0900 |
| commit | fed13bd8c81fa20f1a67386a13d1ba3a9daaed8c (patch) | |
| tree | 1c0b60c7c47ab7593aa8cac8af2ee9a92250a3e5 | |
| parent | b0370a89f6dd57b95be30b8218e17c12d886c27a (diff) | |
| download | emacs-fed13bd8c81fa20f1a67386a13d1ba3a9daaed8c.tar.gz emacs-fed13bd8c81fa20f1a67386a13d1ba3a9daaed8c.zip | |
Inherit incompatible/obsolete package faces from error
Don't use the same face for installed packages as for incompatible
or obsolete ones.
* lisp/emacs-lisp/package.el (package-status-incompat): Inherit from error.
| -rw-r--r-- | lisp/emacs-lisp/package.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index bef1e8dd59b..7ae7ffff1a7 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el | |||
| @@ -2904,7 +2904,7 @@ Return (PKG-DESC [NAME VERSION STATUS DOC])." | |||
| 2904 | :version "25.1") | 2904 | :version "25.1") |
| 2905 | 2905 | ||
| 2906 | (defface package-status-incompat | 2906 | (defface package-status-incompat |
| 2907 | '((t :inherit font-lock-comment-face)) | 2907 | '((t :inherit error)) |
| 2908 | "Face used on the status and version of incompat packages." | 2908 | "Face used on the status and version of incompat packages." |
| 2909 | :version "25.1") | 2909 | :version "25.1") |
| 2910 | 2910 | ||