From: João Távora Date: Sat, 7 Oct 2017 15:55:04 +0000 (+0100) Subject: Fix flymake-goto-next-error when message has %-constructs X-Git-Tag: emacs-26.0.90~45^2~4 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=349e0eb5ff;p=emacs.git Fix flymake-goto-next-error when message has %-constructs * lisp/progmodes/flymake.el (flymake-goto-next-error): Fix message call. Add missing period in docstring. --- diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el index 45f0adfeba1..4c4d6aef322 100644 --- a/lisp/progmodes/flymake.el +++ b/lisp/progmodes/flymake.el @@ -795,7 +795,7 @@ Interactively, always move to the next error. With a prefix arg, skip any diagnostics with a severity less than ‘:warning’. If ‘flymake-wrap-around’ is non-nil and no more next errors, -resumes search from top +resumes search from top. FILTER is a list of diagnostic types found in `flymake-diagnostic-types-alist', or nil, if no filter is to be @@ -835,6 +835,7 @@ applied." (goto-char (overlay-start target)) (when interactive (message + "%s" (funcall (overlay-get target 'help-echo) nil nil (point))))) (interactive