1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

* progmodes/flymake.el (flymake-start-syntax-check-process): Use

`start-file-process' in order to let it run also on remote hosts.
This commit is contained in:
Michael Albinus 2010-08-18 20:24:52 +02:00
parent f3cc64f808
commit a67e6f1334
2 changed files with 8 additions and 1 deletions

View file

@ -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.

View file

@ -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)