diff options
| author | Michael Albinus | 2010-08-18 20:24:52 +0200 |
|---|---|---|
| committer | Michael Albinus | 2010-08-18 20:24:52 +0200 |
| commit | a67e6f13345ce7307ada22a8226da192f47299ac (patch) | |
| tree | 986516c4c4b7c0ce271f655e74192653bda82f0f | |
| parent | f3cc64f80843f278814b69bd0a8b2642d31dda77 (diff) | |
| download | emacs-a67e6f13345ce7307ada22a8226da192f47299ac.tar.gz emacs-a67e6f13345ce7307ada22a8226da192f47299ac.zip | |
* progmodes/flymake.el (flymake-start-syntax-check-process): Use
`start-file-process' in order to let it run also on remote hosts.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/progmodes/flymake.el | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7f31ac6a673..45c5fd52d99 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-08-18 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * progmodes/flymake.el (flymake-start-syntax-check-process): Use | ||
| 4 | `start-file-process' in order to let it run also on remote hosts. | ||
| 5 | |||
| 1 | 2010-08-18 Kenichi Handa <handa@m17n.org> | 6 | 2010-08-18 Kenichi Handa <handa@m17n.org> |
| 2 | 7 | ||
| 3 | * files.el: Add `word-wrap' as safe local variable. | 8 | * files.el: Add `word-wrap' as safe local variable. |
| @@ -68,6 +73,7 @@ | |||
| 68 | (ctext-no-compositions): Doc fix. | 73 | (ctext-no-compositions): Doc fix. |
| 69 | (compound-text-with-extensions): Doc fix. | 74 | (compound-text-with-extensions): Doc fix. |
| 70 | 75 | ||
| 76 | >>>>>>> MERGE-SOURCE | ||
| 71 | 2010-08-04 Stefan Monnier <monnier@iro.umontreal.ca> | 77 | 2010-08-04 Stefan Monnier <monnier@iro.umontreal.ca> |
| 72 | 78 | ||
| 73 | * simple.el (exchange-dot-and-mark): Mark obsolete, finally. | 79 | * 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'." | |||
| 1152 | (when dir | 1152 | (when dir |
| 1153 | (let ((default-directory dir)) | 1153 | (let ((default-directory dir)) |
| 1154 | (flymake-log 3 "starting process on dir %s" default-directory))) | 1154 | (flymake-log 3 "starting process on dir %s" default-directory))) |
| 1155 | (setq process (apply 'start-process "flymake-proc" (current-buffer) cmd args)) | 1155 | (setq process (apply 'start-file-process |
| 1156 | "flymake-proc" (current-buffer) cmd args)) | ||
| 1156 | (set-process-sentinel process 'flymake-process-sentinel) | 1157 | (set-process-sentinel process 'flymake-process-sentinel) |
| 1157 | (set-process-filter process 'flymake-process-filter) | 1158 | (set-process-filter process 'flymake-process-filter) |
| 1158 | (push process flymake-processes) | 1159 | (push process flymake-processes) |