tramp-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Help needed from XEmacs gurus (was: Invalid format character: ?m)


From: Pete Forman
Subject: Re: Help needed from XEmacs gurus (was: Invalid format character: ?m)
Date: Tue, 16 Jul 2002 13:56:37 +0100

At 2002-07-16 10:34 +0200, Kai =?iso-8859-15?q?Gro=DFjohann?= wrote:
What's the problem?

Good question.  Here's what I see on XEmacs 21.4.8

(let ((method "scp") (host "alicia") (path "/tmp/teste"))
  (list (cons ?m method)
        (cons ?h host)
        (cons ?p path)))
((?m . "scp") (?h . "alicia") (?p . "/tmp/teste"))


(let ((method "scp") (host "alicia") (path "/tmp/teste"))
  (format-spec tramp-make-tramp-file-user-nil-format
               (list (cons ?m method)
                     (cons ?h host)
                     (cons ?p path))))
"/[scp/alicia]/tmp/teste"


And on Emacs 20.7

(let ((method "scp") (host "alicia") (path "/tmp/teste"))
  (list (cons ?m method)
        (cons ?h host)
        (cons ?p path)))
((109 . "scp") (104 . "alicia") (112 . "/tmp/teste"))

(let ((method "scp") (host "alicia") (path "/tmp/teste"))
  (format-spec tramp-make-tramp-file-user-nil-format
               (list (cons ?m method)
                     (cons ?h host)
                     (cons ?p path))))
"/[scp/alicia]/tmp/teste"


So as far as I can see both XEmacs and Emacs work, with differences in
the intermediate results.

--
Pete Forman                -./\.-  Disclaimer: This post is originated
WesternGeco                  -./\.-   by myself and does not represent
address@hidden    -./\.-   opinion of Schlumberger, Baker
http://petef.port5.com           -./\.-   Hughes or their divisions.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]