mercurial/HGCommand.st
branchhg-command-server-support
changeset 243 c665ef80dacc
parent 241 a88be6ca202a
child 247 bf5bfe409ff8
--- a/mercurial/HGCommand.st	Wed Mar 06 11:19:50 2013 -0800
+++ b/mercurial/HGCommand.st	Wed Mar 06 11:47:34 2013 -0800
@@ -770,10 +770,12 @@
 
 spawnErrorReaderOn: stderr
     errorReader isNil ifTrue:[
-        errorReader := self spawn: [ self parseError:  stderr ] name: 'Error reader'
+        errorReader := self spawn: [ self parseError:  stderr ] name: 'Error reader'.
+        errorReader priority: errorReader priority + 1.
     ].
 
     "Created: / 03-03-2013 / 16:59:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 06-03-2013 / 11:42:28 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 spawnOutputReaderOn: stdout