]> git.eshelyaron.com Git - emacs.git/commitdiff
Sync with Tramp.
authorKai Großjohann <kgrossjo@eu.uu.net>
Sun, 30 May 2004 21:00:53 +0000 (21:00 +0000)
committerKai Großjohann <kgrossjo@eu.uu.net>
Sun, 30 May 2004 21:00:53 +0000 (21:00 +0000)
(tramp-let-maybe): ReportReverse args of `get'.
(tramp-let-maybe): Move to an earlier spot in the file.  Patch by
Andreas Schwab.

lisp/ChangeLog
lisp/net/tramp.el

index d23005ed0bdc92c764c7db4492399ecab010d0e2..dc5913c467c558e11c0e41eb5db196c44d863cd1 100644 (file)
@@ -1,3 +1,10 @@
+2004-05-30  Kai Grossjohann  <kai.grossjohann@gmx.net>
+       Sync with Tramp.
+
+       * net/tramp.el (tramp-let-maybe): ReportReverse args of `get'.
+       (tramp-let-maybe): Move to an earlier spot in the file.  Patch by
+       Andreas Schwab.
+
 2004-05-30  Andreas Schwab  <schwab@suse.de>
 
        * dired.el (dired-get-filename): Don't use dired-re-dot.
index 1350774dbaa6853771b583f7b429ca63a3cbefb4..769ad3f51f6aab3b5c61250dba9502cdfa9694b2 100644 (file)
@@ -1885,6 +1885,16 @@ If VAR is nil, then we bind `v' to the structure and `multi-method',
 ;; To be activated for debugging containing this macro
 (def-edebug-spec with-parsed-tramp-file-name t)
 
+(defmacro tramp-let-maybe (variable value &rest body)
+  "Let-bind VARIABLE to VALUE in BODY, but only if VARIABLE is not obsolete.
+BODY is executed whether or not the variable is obsolete.
+The intent is to protect against `obsolete variable' warnings."
+  `(if (get ',variable 'byte-obsolete-variable)
+       (progn ,@body)
+     (let ((,variable ,value))
+       ,@body)))
+(put 'tramp-let-maybe 'lisp-indent-function 2)
+
 ;;; Config Manipulation Functions:
 
 (defun tramp-set-completion-function (method function-list)
@@ -6790,16 +6800,6 @@ exiting if process is running."
     (funcall (symbol-function 'process-kill-without-query)
             process flag)))
 
-(defmacro tramp-let-maybe (variable value &rest body)
-  "Let-bind VARIABLE to VALUE in BODY, but only if VARIABLE is not obsolete.
-BODY is executed whether or not the variable is obsolete.
-The intent is to protect against `obsolete variable' warnings."
-  `(if (get 'byte-obsolete-variable ',variable)
-       (progn ,@body)
-     (let ((,variable ,value))
-       ,@body)))
-(put 'tramp-let-maybe 'lisp-indent-function 2)
-
 
 ;; ------------------------------------------------------------ 
 ;; -- Kludges section --