[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master 0c99254a3d0: Fix :package-version in flymake.el
From: |
Michael Albinus |
Subject: |
master 0c99254a3d0: Fix :package-version in flymake.el |
Date: |
Tue, 18 Apr 2023 05:10:27 -0400 (EDT) |
branch: master
commit 0c99254a3d0979826b605ae7f55132bb7071e1c5
Author: Michael Albinus <michael.albinus@gmx.de>
Commit: Michael Albinus <michael.albinus@gmx.de>
Fix :package-version in flymake.el
* lisp/progmodes/flymake.el (flymake-end-of-line-diagnostics-face)
(flymake-error-echo-at-eol, flymake-warning-echo-at-eol)
(flymake-note-echo-at-eol): Fix :package-version.
---
lisp/progmodes/flymake.el | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el
index b744a717c5c..3af410683a7 100644
--- a/lisp/progmodes/flymake.el
+++ b/lisp/progmodes/flymake.el
@@ -450,22 +450,22 @@ verify FILTER, a function, and sort them by COMPARE
(using KEY)."
'((t :height 0.7 :box (:line-width 1)))
"Face used for end-of-line diagnostics.
See variable `flymake-show-diagnostics-at-end-of-line'."
- :package-version '("Flymake" . "1.3.5"))
+ :package-version '(Flymake . "1.3.5"))
(defface flymake-error-echo-at-eol
'((t :inherit (flymake-end-of-line-diagnostics-face compilation-error)))
"Face like `flymake-error-echo', but for end-of-line overlays."
- :package-version '("Flymake" . "1.3.5"))
+ :package-version '(Flymake . "1.3.5"))
(defface flymake-warning-echo-at-eol
'((t :inherit (flymake-end-of-line-diagnostics-face compilation-warning)))
"Face like `flymake-warning-echo', but for end-of-line overlays."
- :package-version '("Flymake" . "1.3.5"))
+ :package-version '(Flymake . "1.3.5"))
(defface flymake-note-echo-at-eol
'((t :inherit (flymake-end-of-line-diagnostics-face flymake-note)))
"Face like `flymake-note-echo', but for end-of-line overlays."
- :package-version '("Flymake" . "1.3.5"))
+ :package-version '(Flymake . "1.3.5"))
(defcustom flymake-show-diagnostics-at-end-of-line nil
"If non-nil, add diagnostic summary messages at end-of-line."
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- master 0c99254a3d0: Fix :package-version in flymake.el,
Michael Albinus <=