Mercurial > emacs
changeset 109935:dbb2115db9d9
* progmodes/flymake.el (flymake-start-syntax-check-process): Use
`start-file-process' in order to let it run also on remote hosts.
author | Michael Albinus <albinus@detlef> |
---|---|
date | Wed, 18 Aug 2010 20:24:52 +0200 |
parents | 9c1bdb509bda |
children | e1a5ebb1ce1c |
files | lisp/ChangeLog lisp/progmodes/flymake.el |
diffstat | 2 files changed, 8 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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 <michael.albinus@gmx.de> + + * 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 <handa@m17n.org> * 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 <monnier@iro.umontreal.ca> * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
--- 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)