+2007-10-10 Michael Albinus <michael.albinus@gmx.de>
+
+ Sync with Tramp 2.1.11.
+
+ * trampver.texi: Update release number.
+
2007-10-06 Michael Albinus <michael.albinus@gmx.de>
* tramp.texi (External packages): New section.
@c In the Tramp CVS, the version number is auto-frobbed from
@c configure.ac, so you should edit that file and run
@c "autoconf && ./configure" to change the version number.
-@set trampver 2.1.11-pre
+@set trampver 2.1.11
@c Other flags from configuration
@set instprefix /usr/local
@set lispdir /usr/local/share/emacs/site-lisp
-@set infodir /usr/local/info
+@set infodir /usr/local/share/info
@c Formatting of the tramp program name consistent.
@set tramp @sc{tramp}
+2007-10-10 Michael Albinus <michael.albinus@gmx.de>
+
+ Sync with Tramp 2.1.11.
+
+ * net/tramp.el (tramp-open-connection-setup-interactive-shell):
+ Pacify byte compiler.
+
+ * net/trampver.el: Update release number.
+
2007-10-09 Juanma Barranquero <lekktu@gmail.com>
* follow.el: Require easymenu.
(if (featurep 'mule)
;; Use MULE to select the right EOL convention for communicating
;; with the process.
- (let* ((cs (or (process-coding-system proc)
+ (let* ((cs (or (funcall (symbol-function 'process-coding-system) proc)
(cons 'undecided 'undecided)))
cs-decode cs-encode)
(when (symbolp cs) (setq cs (cons cs cs)))
(when (search-forward "\r" nil t)
(setq cs-decode (tramp-coding-system-change-eol-conversion
cs-decode 'dos)))
- (set-buffer-process-coding-system cs-decode cs-encode))
+ (funcall (symbol-function 'set-buffer-process-coding-system)
+ cs-decode cs-encode))
;; Look for ^M and do something useful if found.
(when (search-forward "\r" nil t)
;; We have found a ^M but cannot frob the process coding system
;; "autoconf && ./configure" to change them. (X)Emacs version check is defined
;; in macro AC_EMACS_INFO of aclocal.m4; should be changed only there.
-(defconst tramp-version "2.1.11-pre"
+(defconst tramp-version "2.1.11"
"This version of Tramp.")
(defconst tramp-bug-report-address "tramp-devel@gnu.org"
"Email address to send bug reports to.")
;; Check for (X)Emacs version.
-(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")))
+(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")))
(unless (string-match "\\`ok\\'" x) (error x)))
(provide 'trampver)