Matthew Donaldson <[EMAIL PROTECTED]> writes: > Hi Michael,
Hi Matthew, > The trace is enclosed. Not sure if you wanted me to trace all of > this, but what I did was basically this: Thanks a lot for the trace, it is interesting, indeed. I believe I've found the problem. Could you, please, test the appended patch? It is towards Tramp 2.1.11-pre, so you might need to adapt the line numbers. > Cheers > > -Matthew Thanks for your patient testing, and best regards, Michael.
*** /home/albinus/src/emacs/lisp/net/tramp.el 2007-07-29 17:16:56.000000000 +0200 --- /home/albinus/src/tramp/lisp/tramp.el 2007-08-01 17:17:22.000000000 +0200 *************** *** 4177,4184 **** ((and completion (zerop (length localname)) (memq operation '(file-name-as-directory))) filename) ! ;; Call the backend function. ! (foreign (apply foreign operation args)) ;; Nothing to do for us. (t (tramp-run-real-handler operation args))))))) --- 4177,4187 ---- ((and completion (zerop (length localname)) (memq operation '(file-name-as-directory))) filename) ! ;; Call the backend function. Set a connection property ! ;; first, it will be reused for user/host name completion. ! (foreign ! (tramp-set-connection-property v "started" nil) ! (apply foreign operation args)) ;; Nothing to do for us. (t (tramp-run-real-handler operation args)))))))
_______________________________________________ Tramp-devel mailing list [email protected] http://lists.gnu.org/mailman/listinfo/tramp-devel
