[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] scratch/flymake-diagnostics-buffer 200f7ef 1/2: Fix flymak
From: |
Jo�o T�vora |
Subject: |
[Emacs-diffs] scratch/flymake-diagnostics-buffer 200f7ef 1/2: Fix flymake-goto-next-error when message has %-constructs |
Date: |
Sat, 7 Oct 2017 12:00:00 -0400 (EDT) |
branch: scratch/flymake-diagnostics-buffer
commit 200f7ef1521b0f8a68ec83ad92499d15fdc75ae8
Author: João Távora <address@hidden>
Commit: João Távora <address@hidden>
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.
---
lisp/progmodes/flymake.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el
index 45f0adf..4c4d6ae 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