From ff8996a337377731905a7a3c9bf05e2281df40ef Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mattias=20Engdeg=C3=A5rd?= Date: Fri, 10 Jan 2020 18:12:32 +0100 Subject: [PATCH] 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 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) -- 2.39.2