emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-27 ff8996a: flymake: fix typo in variable binding (bug#38752)


From: Mattias Engdegård
Subject: emacs-27 ff8996a: flymake: fix typo in variable binding (bug#38752)
Date: Fri, 10 Jan 2020 12:15:56 -0500 (EST)

branch: emacs-27
commit ff8996a337377731905a7a3c9bf05e2281df40ef
Author: Mattias Engdegård <address@hidden>
Commit: Mattias Engdegård <address@hidden>

    flymake: fix typo in variable binding (bug#38752)
    
    This mistake was found by an experimental elisp optimiser.
    
    * lisp/progmodes/flymake-proc.el (flymake-proc-stop-all-syntax-checks):
    Add missing brackets.
---
 lisp/progmodes/flymake-proc.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/progmodes/flymake-proc.el b/lisp/progmodes/flymake-proc.el
index e2d9408..62f6d1a 100644
--- a/lisp/progmodes/flymake-proc.el
+++ b/lisp/progmodes/flymake-proc.el
@@ -851,7 +851,7 @@ can also be executed interactively independently of
   (interactive (list "Interrupted by user"))
   (dolist (buf (buffer-list))
     (with-current-buffer buf
-      (let (p flymake-proc--current-process)
+      (let ((p flymake-proc--current-process))
         (when (process-live-p p)
           (kill-process p)
           (process-put p 'flymake-proc--interrupted reason)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]