mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-02 10:11:05 -08: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue