Patrik Jonsson <[EMAIL PROTECTED]> 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! _______________________________________________ Tramp-devel mailing list [EMAIL PROTECTED] http://mail.nongnu.org/mailman/listinfo/tramp-devel
