]> git.eshelyaron.com Git - emacs.git/commitdiff
Sync with Tramp 2.1.19.
authorMichael Albinus <michael.albinus@gmx.de>
Thu, 26 Aug 2010 07:33:16 +0000 (09:33 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Thu, 26 Aug 2010 07:33:16 +0000 (09:33 +0200)
* net/trampver.el: Update release number.

lisp/ChangeLog
lisp/net/tramp-uu.el
lisp/net/tramp.el
lisp/net/trampver.el

index 28bc8123501967bba5c07414f135943c669048d7..cb2ea814c147659b53ae4afd2b04eb4d8e1d9ace 100644 (file)
@@ -1,3 +1,9 @@
+2010-08-26  Michael Albinus  <michael.albinus@gmx.de>
+
+       Sync with Tramp 2.1.19.
+
+       * net/trampver.el: Update release number.
+
 2010-08-26  Chong Yidong  <cyd@stupidchicken.com>
 
        * help.el (help-map): Bind `C-h P' to describe-package.
index 4b64387a8ba3fe51cfd3581b30e2306022360837..897a87b0134b7741698a1f62a3b6b5ab6c225f98 100644 (file)
@@ -1,7 +1,7 @@
 ;;; tramp-uu.el --- uuencode in Lisp
 
-;; Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007,
-;;   2008, 2009, 2010 Free Software Foundation, Inc.
+;; Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008,
+;;   2009, 2010 Free Software Foundation, Inc.
 
 ;; Author: Kai Großjohann <kai.grossjohann@gmx.net>
 ;; Keywords: comm, terminals
index 052dc7d757563829c0390c0f8e687e45e9ff5aa5..d5d1606c617b914177c778043e37ef36bfc02543 100644 (file)
@@ -8995,6 +8995,13 @@ Only works for Bourne-like shells."
 ;; * Try telnet+curl as new method.  It might be useful for busybox,
 ;;   without built-in uuencode/uudecode.
 ;; * Load ~/.emacs_SHELLNAME on the remote host for `shell'.
+;; * I was wondering it it would be possible to use tramp even if I'm
+;;   actually using sshfs.  But when I launch a command I would like
+;;   to get it executed on the remote machine where the files really
+;;   are.  (Andrea Crotti)
+;; * Run emerge on two remote files.  Bug is described here:
+;;   <http://www.mail-archive.com/tramp-devel@nongnu.org/msg01041.html>.
+;;   (Bug#6850)
 
 ;; Functions for file-name-handler-alist:
 ;; diff-latest-backup-file -- in diff.el
index 471a344b860697671c1881906b454b4c3a89f4c3..a002ebebbf247a6234f0d371c8a92224c158cad2 100644 (file)
 ;; version check is defined in macro AC_EMACS_INFO of aclocal.m4;
 ;; should be changed only there.
 
-(defconst tramp-version "2.1.19-pre"
+(defconst tramp-version "2.1.19"
   "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 22)   (and (featurep 'xemacs)      (= emacs-major-version 21)      (>= emacs-minor-version 4)))    "ok"    (format "Tramp 2.1.19-pre is not fit for %s"           (when (string-match "^.*$" (emacs-version))       (match-string 0 (emacs-version)))))))
+(let ((x (if (or (>= emacs-major-version 22)   (and (featurep 'xemacs)      (= emacs-major-version 21)      (>= emacs-minor-version 4)))    "ok"    (format "Tramp 2.1.19 is not fit for %s"       (when (string-match "^.*$" (emacs-version))       (match-string 0 (emacs-version)))))))
   (unless (string-match "\\`ok\\'" x) (error "%s" x)))
 
 (provide 'trampver)