emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r99986: * progmodes/flymake.el (fl


From: Michael Albinus
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r99986: * progmodes/flymake.el (flymake-start-syntax-check-process): Use
Date: Wed, 18 Aug 2010 20:24:52 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99986
committer: Michael Albinus <address@hidden>
branch nick: emacs-23
timestamp: Wed 2010-08-18 20:24:52 +0200
message:
  * progmodes/flymake.el (flymake-start-syntax-check-process): Use
  `start-file-process' in order to let it run also on remote hosts.
modified:
  lisp/ChangeLog
  lisp/progmodes/flymake.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-08-18 08:07:58 +0000
+++ b/lisp/ChangeLog    2010-08-18 18:24:52 +0000
@@ -1,3 +1,8 @@
+2010-08-18  Michael Albinus  <address@hidden>
+
+       * 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  <address@hidden>
 
        * 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  <address@hidden>
 
        * simple.el (exchange-dot-and-mark): Mark obsolete, finally.

=== modified file 'lisp/progmodes/flymake.el'
--- a/lisp/progmodes/flymake.el 2010-01-28 19:53:11 +0000
+++ b/lisp/progmodes/flymake.el 2010-08-18 18:24:52 +0000
@@ -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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]