From 0c99254a3d0979826b605ae7f55132bb7071e1c5 Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Tue, 18 Apr 2023 11:10:12 +0200 Subject: [PATCH] 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." -- 2.39.2