mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Sync with Tramp 2.1.11.
This commit is contained in:
parent
d1b3a12299
commit
311dd93fa2
5 changed files with 22 additions and 6 deletions
|
|
@ -1,3 +1,9 @@
|
|||
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.
|
||||
|
|
|
|||
|
|
@ -4,12 +4,12 @@
|
|||
@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}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,12 @@
|
|||
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.
|
||||
|
|
|
|||
|
|
@ -5695,7 +5695,7 @@ process to set up. VEC specifies the connection."
|
|||
(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)))
|
||||
|
|
@ -5708,7 +5708,8 @@ process to set up. VEC specifies the connection."
|
|||
(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
|
||||
|
|
|
|||
|
|
@ -30,14 +30,14 @@
|
|||
;; "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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue