all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* flymake: don't query to kill process
@ 2010-03-26 16:17 Karl Chen
  0 siblings, 0 replies; only message in thread
From: Karl Chen @ 2010-03-26 16:17 UTC (permalink / raw)
  To: Emacs Developement List


I suggest not querying to kill flymake processes when killing the buffer:

diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el
index 2a19821..e0801de 100644
--- a/lisp/progmodes/flymake.el
+++ b/lisp/progmodes/flymake.el
@@ -1153,6 +1153,7 @@ For the format of LINE-ERR-INFO, see `flymake-ler-make-ler'."
       (let ((default-directory dir))
             (flymake-log 3 "starting process on dir %s" default-directory)))
               (setq process (apply 'start-process "flymake-proc" (current-buffer) cmd args))
+          (set-process-query-on-exit-flag process nil)
             (set-process-sentinel process 'flymake-process-sentinel)
               (set-process-filter process 'flymake-process-filter)
           (push process flymake-processes)




^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2010-03-26 16:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-26 16:17 flymake: don't query to kill process Karl Chen

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.