# HG changeset patch # User Michael Albinus # Date 1282155892 -7200 # Node ID dbb2115db9d9f6bce24dcc7d15d54b130afd4774 # Parent 9c1bdb509bdaa1dabc450d63a9486c6856dc07a6 * progmodes/flymake.el (flymake-start-syntax-check-process): Use `start-file-process' in order to let it run also on remote hosts. diff -r 9c1bdb509bda -r dbb2115db9d9 lisp/ChangeLog --- a/lisp/ChangeLog Wed Aug 18 17:10:05 2010 +0900 +++ b/lisp/ChangeLog Wed Aug 18 20:24:52 2010 +0200 @@ -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 -r 9c1bdb509bda -r dbb2115db9d9 lisp/progmodes/flymake.el --- a/lisp/progmodes/flymake.el Wed Aug 18 17:10:05 2010 +0900 +++ b/lisp/progmodes/flymake.el Wed Aug 18 20:24:52 2010 +0200 @@ -1152,7 +1152,8 @@ (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)