From: Mattias EngdegÄrd Date: Fri, 10 Jan 2020 17:12:32 +0000 (+0100) Subject: flymake: fix typo in variable binding (bug#38752) X-Git-Tag: emacs-27.0.90~187 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ff8996a337377731905a7a3c9bf05e2281df40ef;p=emacs.git 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. --- diff --git a/lisp/progmodes/flymake-proc.el b/lisp/progmodes/flymake-proc.el index e2d9408e20a..62f6d1aaea2 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)