aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/progmodes')
-rw-r--r--lisp/progmodes/flymake.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el
index c6c58ef76dc..b6e71b0a5d6 100644
--- a/lisp/progmodes/flymake.el
+++ b/lisp/progmodes/flymake.el
@@ -583,7 +583,7 @@ It's flymake process filter."
583 583
584 (flymake-log 3 "received %d byte(s) of output from process %d" 584 (flymake-log 3 "received %d byte(s) of output from process %d"
585 (length output) (process-id process)) 585 (length output) (process-id process))
586 (when source-buffer 586 (when (buffer-live-p source-buffer)
587 (with-current-buffer source-buffer 587 (with-current-buffer source-buffer
588 (flymake-parse-output-and-residual output))))) 588 (flymake-parse-output-and-residual output)))))
589 589