From: Robert Pluim Date: Wed, 30 Apr 2025 08:52:28 +0000 (+0200) Subject: Fix custom type of 'flymake-show-diagnostics-at-end-of-line' X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4ed9cc61711ff7bd10484c48845393d857fc33ca;p=emacs.git Fix custom type of 'flymake-show-diagnostics-at-end-of-line' * lisp/progmodes/flymake.el (flymake-show-diagnostics-at-end-of-line): Add 'fancy' value to custom type. * etc/NEWS: "variable" -> "user option". (Bug#78148) (cherry picked from commit 9b560a54c3b5c04c683124db44b53ae005b36729) --- diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el index 32a78918fae..116d2964880 100644 --- a/lisp/progmodes/flymake.el +++ b/lisp/progmodes/flymake.el @@ -546,6 +546,7 @@ Any other non-nil value means show all diagnostic summaries at end-of-line." :type '(choice (const :tag "Display most severe diagnostic" short) (const :tag "Display all diagnostics" t) + (const :tag "Display all diagnostics using Unicode" fancy) (const :tag "Don't display diagnostics at end-of-line" nil)) :package-version '(Flymake . "1.3.6"))