From a67e6f13345ce7307ada22a8226da192f47299ac Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Wed, 18 Aug 2010 20:24:52 +0200 Subject: [PATCH] * progmodes/flymake.el (flymake-start-syntax-check-process): Use `start-file-process' in order to let it run also on remote hosts. --- lisp/ChangeLog | 6 ++++++ lisp/progmodes/flymake.el | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7f31ac6a673..45c5fd52d99 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2010-08-18 Michael Albinus + + * progmodes/flymake.el (flymake-start-syntax-check-process): Use + `start-file-process' in order to let it run also on remote hosts. + 2010-08-18 Kenichi Handa * files.el: Add `word-wrap' as safe local variable. @@ -68,6 +73,7 @@ (ctext-no-compositions): Doc fix. (compound-text-with-extensions): Doc fix. +>>>>>>> MERGE-SOURCE 2010-08-04 Stefan Monnier * simple.el (exchange-dot-and-mark): Mark obsolete, finally. diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el index 2a198215536..712af6fd288 100644 --- a/lisp/progmodes/flymake.el +++ b/lisp/progmodes/flymake.el @@ -1152,7 +1152,8 @@ For the format of LINE-ERR-INFO, see `flymake-ler-make-ler'." (when dir (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)) + (setq process (apply 'start-file-process + "flymake-proc" (current-buffer) cmd args)) (set-process-sentinel process 'flymake-process-sentinel) (set-process-filter process 'flymake-process-filter) (push process flymake-processes) -- 2.39.2