1
0
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:
Mattias Engdegård 2020-01-10 18:12:32 +01:00
parent 16eaaa07e6
commit ff8996a337

View File

@ -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)