aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2012-09-12 18:36:25 +0200
committerMichael Albinus2012-09-12 18:36:25 +0200
commitfbbcaf1b249f7eba5ac53a3b380e1692ca1dbff9 (patch)
tree9b9c8dc695320603c45972bd6dab6c236b0c074f
parente210dac49f20de277b81d2298e6be8f98f8ac738 (diff)
downloademacs-fbbcaf1b249f7eba5ac53a3b380e1692ca1dbff9.tar.gz
emacs-fbbcaf1b249f7eba5ac53a3b380e1692ca1dbff9.zip
Sync with Tramp 2.2.6.
* net/tramp.el (tramp-accept-process-output): Don't use JUST-THIS-ONE in the XEmacs case. * net/trampver.el: Update release number.
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/net/tramp.el4
-rw-r--r--lisp/net/trampver.el4
3 files changed, 14 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0345c922a15..56311198831 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,12 @@
12012-09-12 Michael Albinus <michael.albinus@gmx.de>
2
3 Sync with Tramp 2.2.6.
4
5 * net/tramp.el (tramp-accept-process-output): Don't use
6 JUST-THIS-ONE in the XEmacs case.
7
8 * net/trampver.el: Update release number.
9
12012-09-12 Martin Rudalics <rudalics@gmx.at> 102012-09-12 Martin Rudalics <rudalics@gmx.at>
2 11
3 * emacs-lisp/debug.el (debugger-previous-window-height): New 12 * emacs-lisp/debug.el (debugger-previous-window-height): New
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el
index a17bbfa0d14..019ab1eef0f 100644
--- a/lisp/net/tramp.el
+++ b/lisp/net/tramp.el
@@ -3293,7 +3293,9 @@ for process communication also."
3293 ;; Under Windows XP, accept-process-output doesn't return 3293 ;; Under Windows XP, accept-process-output doesn't return
3294 ;; sometimes. So we add an additional timeout. 3294 ;; sometimes. So we add an additional timeout.
3295 (with-timeout ((or timeout 1)) 3295 (with-timeout ((or timeout 1))
3296 (accept-process-output proc timeout timeout-msecs (and proc t)))) 3296 (if (featurep 'xemacs)
3297 (accept-process-output proc timeout timeout-msecs)
3298 (accept-process-output proc timeout timeout-msecs (and proc t)))))
3297 (tramp-message proc 10 "\n%s" (buffer-string)))) 3299 (tramp-message proc 10 "\n%s" (buffer-string))))
3298 3300
3299(defun tramp-check-for-regexp (proc regexp) 3301(defun tramp-check-for-regexp (proc regexp)
diff --git a/lisp/net/trampver.el b/lisp/net/trampver.el
index 499af730788..2d0a8e3d23d 100644
--- a/lisp/net/trampver.el
+++ b/lisp/net/trampver.el
@@ -31,7 +31,7 @@
31;; should be changed only there. 31;; should be changed only there.
32 32
33;;;###tramp-autoload 33;;;###tramp-autoload
34(defconst tramp-version "2.2.6-pre" 34(defconst tramp-version "2.2.6"
35 "This version of Tramp.") 35 "This version of Tramp.")
36 36
37;;;###tramp-autoload 37;;;###tramp-autoload
@@ -44,7 +44,7 @@
44 (= emacs-major-version 21) 44 (= emacs-major-version 21)
45 (>= emacs-minor-version 4))) 45 (>= emacs-minor-version 4)))
46 "ok" 46 "ok"
47 (format "Tramp 2.2.6-pre is not fit for %s" 47 (format "Tramp 2.2.6 is not fit for %s"
48 (when (string-match "^.*$" (emacs-version)) 48 (when (string-match "^.*$" (emacs-version))
49 (match-string 0 (emacs-version))))))) 49 (match-string 0 (emacs-version)))))))
50 (unless (string-match "\\`ok\\'" x) (error "%s" x))) 50 (unless (string-match "\\`ok\\'" x) (error "%s" x)))