Update of /cvsroot/tramp/tramp/lisp
In directory usw-pr-cvs1:/tmp/cvs-serv2718/tramp/lisp
Modified Files:
ChangeLog tramp.el
Log Message:
* tramp.el (tramp-send-linewise): Wait 0.1s instead of 0.001s.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/tramp/tramp/lisp/ChangeLog,v
retrieving revision 2.98
retrieving revision 2.99
diff -C2 -d -r2.98 -r2.99
*** ChangeLog 19 May 2002 21:30:15 -0000 2.98
--- ChangeLog 20 May 2002 10:16:41 -0000 2.99
***************
*** 1,2 ****
--- 1,6 ----
+ 2002-05-20 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
+
+ * tramp.el (tramp-send-linewise): Wait 0.1s instead of 0.001s.
+
2002-05-19 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
Index: tramp.el
===================================================================
RCS file: /cvsroot/tramp/tramp/lisp/tramp.el,v
retrieving revision 2.98
retrieving revision 2.99
diff -C2 -d -r2.98 -r2.99
*** tramp.el 19 May 2002 21:30:15 -0000 2.98
--- tramp.el 20 May 2002 10:16:42 -0000 2.99
***************
*** 4162,4166 ****
(setq proc (get-buffer-process (current-buffer)))
(mapcar (lambda (x)
! (sit-for 0.001)
(process-send-string proc
(concat x tramp-rsh-end-of-line)))
--- 4162,4166 ----
(setq proc (get-buffer-process (current-buffer)))
(mapcar (lambda (x)
! (sit-for 0.1)
(process-send-string proc
(concat x tramp-rsh-end-of-line)))
|