From: Michael Albinus Date: Tue, 18 Apr 2023 09:10:12 +0000 (+0200) Subject: Fix :package-version in flymake.el X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0c99254a3d0979826b605ae7f55132bb7071e1c5;p=emacs.git 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. --- 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."