aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2007-10-10 04:55:30 +0000
committerMichael Albinus2007-10-10 04:55:30 +0000
commit311dd93fa2834dfcda92b0a80f41eaba54d0b632 (patch)
tree46d0ade187f9e6d6b39c01bc2fecb1749a9144e2
parentd1b3a12299bacfba2918443ba8aa4c604fa4698c (diff)
downloademacs-311dd93fa2834dfcda92b0a80f41eaba54d0b632.tar.gz
emacs-311dd93fa2834dfcda92b0a80f41eaba54d0b632.zip
Sync with Tramp 2.1.11.
-rw-r--r--doc/misc/ChangeLog6
-rw-r--r--doc/misc/trampver.texi4
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/net/tramp.el5
-rw-r--r--lisp/net/trampver.el4
5 files changed, 22 insertions, 6 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 056ad379127..364b2796ac0 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,9 @@
12007-10-10 Michael Albinus <michael.albinus@gmx.de>
2
3 Sync with Tramp 2.1.11.
4
5 * trampver.texi: Update release number.
6
12007-10-06 Michael Albinus <michael.albinus@gmx.de> 72007-10-06 Michael Albinus <michael.albinus@gmx.de>
2 8
3 * tramp.texi (External packages): New section. 9 * tramp.texi (External packages): New section.
diff --git a/doc/misc/trampver.texi b/doc/misc/trampver.texi
index 4ed196a80f0..179af979c06 100644
--- a/doc/misc/trampver.texi
+++ b/doc/misc/trampver.texi
@@ -4,12 +4,12 @@
4@c In the Tramp CVS, the version number is auto-frobbed from 4@c In the Tramp CVS, the version number is auto-frobbed from
5@c configure.ac, so you should edit that file and run 5@c configure.ac, so you should edit that file and run
6@c "autoconf && ./configure" to change the version number. 6@c "autoconf && ./configure" to change the version number.
7@set trampver 2.1.11-pre 7@set trampver 2.1.11
8 8
9@c Other flags from configuration 9@c Other flags from configuration
10@set instprefix /usr/local 10@set instprefix /usr/local
11@set lispdir /usr/local/share/emacs/site-lisp 11@set lispdir /usr/local/share/emacs/site-lisp
12@set infodir /usr/local/info 12@set infodir /usr/local/share/info
13 13
14@c Formatting of the tramp program name consistent. 14@c Formatting of the tramp program name consistent.
15@set tramp @sc{tramp} 15@set tramp @sc{tramp}
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0161024abb5..8bf8c4a9342 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,12 @@
12007-10-10 Michael Albinus <michael.albinus@gmx.de>
2
3 Sync with Tramp 2.1.11.
4
5 * net/tramp.el (tramp-open-connection-setup-interactive-shell):
6 Pacify byte compiler.
7
8 * net/trampver.el: Update release number.
9
12007-10-09 Juanma Barranquero <lekktu@gmail.com> 102007-10-09 Juanma Barranquero <lekktu@gmail.com>
2 11
3 * follow.el: Require easymenu. 12 * follow.el: Require easymenu.
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el
index 26846f562f5..c8b2a72aad0 100644
--- a/lisp/net/tramp.el
+++ b/lisp/net/tramp.el
@@ -5695,7 +5695,7 @@ process to set up. VEC specifies the connection."
5695 (if (featurep 'mule) 5695 (if (featurep 'mule)
5696 ;; Use MULE to select the right EOL convention for communicating 5696 ;; Use MULE to select the right EOL convention for communicating
5697 ;; with the process. 5697 ;; with the process.
5698 (let* ((cs (or (process-coding-system proc) 5698 (let* ((cs (or (funcall (symbol-function 'process-coding-system) proc)
5699 (cons 'undecided 'undecided))) 5699 (cons 'undecided 'undecided)))
5700 cs-decode cs-encode) 5700 cs-decode cs-encode)
5701 (when (symbolp cs) (setq cs (cons cs cs))) 5701 (when (symbolp cs) (setq cs (cons cs cs)))
@@ -5708,7 +5708,8 @@ process to set up. VEC specifies the connection."
5708 (when (search-forward "\r" nil t) 5708 (when (search-forward "\r" nil t)
5709 (setq cs-decode (tramp-coding-system-change-eol-conversion 5709 (setq cs-decode (tramp-coding-system-change-eol-conversion
5710 cs-decode 'dos))) 5710 cs-decode 'dos)))
5711 (set-buffer-process-coding-system cs-decode cs-encode)) 5711 (funcall (symbol-function 'set-buffer-process-coding-system)
5712 cs-decode cs-encode))
5712 ;; Look for ^M and do something useful if found. 5713 ;; Look for ^M and do something useful if found.
5713 (when (search-forward "\r" nil t) 5714 (when (search-forward "\r" nil t)
5714 ;; We have found a ^M but cannot frob the process coding system 5715 ;; We have found a ^M but cannot frob the process coding system
diff --git a/lisp/net/trampver.el b/lisp/net/trampver.el
index c8da0add016..a83d81966a8 100644
--- a/lisp/net/trampver.el
+++ b/lisp/net/trampver.el
@@ -30,14 +30,14 @@
30;; "autoconf && ./configure" to change them. (X)Emacs version check is defined 30;; "autoconf && ./configure" to change them. (X)Emacs version check is defined
31;; in macro AC_EMACS_INFO of aclocal.m4; should be changed only there. 31;; in macro AC_EMACS_INFO of aclocal.m4; should be changed only there.
32 32
33(defconst tramp-version "2.1.11-pre" 33(defconst tramp-version "2.1.11"
34 "This version of Tramp.") 34 "This version of Tramp.")
35 35
36(defconst tramp-bug-report-address "tramp-devel@gnu.org" 36(defconst tramp-bug-report-address "tramp-devel@gnu.org"
37 "Email address to send bug reports to.") 37 "Email address to send bug reports to.")
38 38
39;; Check for (X)Emacs version. 39;; Check for (X)Emacs version.
40(let ((x (if (or (< emacs-major-version 21) (and (featurep 'xemacs) (< emacs-minor-version 4))) (format "Tramp 2.1.11-pre is not fit for %s" (when (string-match "^.*$" (emacs-version)) (match-string 0 (emacs-version)))) "ok"))) 40(let ((x (if (or (< emacs-major-version 21) (and (featurep 'xemacs) (< emacs-minor-version 4))) (format "Tramp 2.1.11 is not fit for %s" (when (string-match "^.*$" (emacs-version)) (match-string 0 (emacs-version)))) "ok")))
41 (unless (string-match "\\`ok\\'" x) (error x))) 41 (unless (string-match "\\`ok\\'" x) (error x)))
42 42
43(provide 'trampver) 43(provide 'trampver)