From: Michael Albinus Date: Mon, 22 Jun 2009 21:09:25 +0000 (+0000) Subject: * net/trampver.el: Update release number. Make version check fit X-Git-Tag: emacs-pretest-23.1.90~2465 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e3610693bc678479a056dcbcc4afcc20902a57df;p=emacs.git * net/trampver.el: Update release number. Make version check fit for SXEmacs 22. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b9908287613..989237cfe36 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,63 @@ +2009-06-22 Michael Albinus + + Sync with Tramp 2.1.16. + + * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc. + + * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading', + when a loading of a package fails. Completion function for rsync + is `tramp-completion-function-alist-ssh'. + (all): Replace all calls of `split-string' and + `tramp-split-string' by `tramp-compat-split-string'. + (tramp-default-method): Use `tramp-compat-process-running-p'. + (tramp-default-proxies-alist): Allow also Lisp forms. + (tramp-remote-path): Add choice "Private Directories". + (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" + option. + (tramp-domain-regexp): Allow also "-", "_" and ".". + (tramp-end-of-output): Remove newlines, and add "$" at the end. + (tramp-file-name-handler-alist): Add handler for `dired-uncache'. + (tramp-debug-message): Insert header line in debug buffer. + (tramp-handle-directory-files-and-attributes-with-stat): Care + about filenames with spaces, or starting with "-". + (tramp-handle-dired-uncache): New defun. + (tramp-handle-insert-directory): Don't flush the directory from + cache, this is handled by `dired-uncache' now. + (tramp-handle-insert-file-contents): Improve error handling. + (tramp-find-shell, tramp-open-connection-setup-interactive-shell): + Quote `tramp-end-of-output'. + (tramp-action-password): Improve trace message. + (tramp-check-for-regexp): Both echoes must be present, before + removing. + (tramp-open-connection-setup-interactive-shell): Trace coding + system. + (tramp-compute-multi-hops): Eval cons cells of + `tramp-default-proxies-alist'. + (tramp-maybe-open-connection): Use the same command pattern for + first hop and further hops. + (tramp-wait-for-output): Remove handling of newlines. + (tramp-get-remote-path): Handle also `tramp-own-remote-path'. + (tramp-split-string): Remove function. It is handled in + tramp-compat now. + + * net/tramp-cmds.el (tramp-bug): Recommend + `tramp-cleanup-all-connections' in the bug mail. + + * net/tramp-compat.el (tramp-compat-split-string) + (tramp-compat-process-running-p): New defuns. + + * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler + for `dired-uncache'. + + * net/tramp-gvfs.el: New package. + + * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add + handler for `dired-uncache'. + (tramp-smb-handle-file-local-copy): Cleanup in case of error. + + * net/trampver.el: Update release number. Make version check fit + for SXEmacs 22. + 2009-06-22 Jim Meyering Automatically handle .xz suffix (XZ-compressed files), too. diff --git a/lisp/net/trampver.el b/lisp/net/trampver.el index f10f760cac7..dc19550b93e 100644 --- a/lisp/net/trampver.el +++ b/lisp/net/trampver.el @@ -29,14 +29,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.15" +(defconst tramp-version "2.1.16" "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.15 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-major-version 21) (< emacs-minor-version 4))) (format "Tramp 2.1.16 is not fit for %s" (when (string-match "^.*$" (emacs-version)) (match-string 0 (emacs-version)))) "ok"))) (unless (string-match "\\`ok\\'" x) (error "%s" x))) (provide 'trampver)