mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-05 11:45:45 +00:00
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.
This commit is contained in:
parent
16eaaa07e6
commit
ff8996a337
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user