tramp-devel
[Top][All Lists]
Advanced

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

Re: tramp /NT-Emacs problems


From: Kai Großjohann
Subject: Re: tramp /NT-Emacs problems
Date: Tue, 14 Jan 2003 09:10:13 +0100
User-agent: Gnus/5.090012 (Oort Gnus v0.12) Emacs/21.3.50 (i686-pc-linux-gnu)

Patrik Jonsson <address@hidden> writes:

> Hi again,
>
> I figured out what the problem was. If I change the tramp-md5-function from
>
> (defvar tramp-md5-function
>    (cond ((fboundp 'md5) 'md5)
>       ( (and (require 'md5) (fboundp 'md5-encode)) 'md5-encode)
>       (t (error "Coulnd't find an `md5' function")))
>    "Function to call for running the MD5 algorithm.")
>
> to
>
> (defvar tramp-md5-function
>    (cond ((and (require 'md5)(fboundp 'md5)) 'md5)
>       ( (fboundp 'md5-encode) 'md5-encode)
>       (t (error "Coulnd't find an `md5' function")))
>    "Function to call for running the MD5 algorithm.")
>
> it works.

Hm?  What's the difference?  Ah, you're moving the require to another
spot.  Yes, I'll do that.

So, maybe I should avoid ever using md5-encode?  Where is this
function needed?
-- 
Ambibibentists unite!




reply via email to

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