bug-gnu-emacs
[Top][All Lists]
Advanced

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

bug#3767: 23.0.94; Functions in password-cache should be autoloaded


From: Stefan Monnier
Subject: bug#3767: 23.0.94; Functions in password-cache should be autoloaded
Date: Thu, 23 Jul 2009 14:08:17 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.94 (gnu/linux)

>> I was wondering why jabber.el didn't cache my password, even though I
>> set password-cache and password-cache-expiry correctly, and found the
>> reason: jabber.el checks whether the running Emacs is new enough to have
>> password-cache.el by (fboundp 'password-read), but this function is not
>> autoloaded.  The problem is masked if you use Gnus.
>> 
>> Thus I propose that at least `password-read' be autoloaded, possibly
>> others as well.

> I think jabber.el should use the NOERROR argument to `require':

>   (if (require 'password-cache nil t)
>       use-password-cache
>     do-alternative)

To provide yet another opinion, I'd personally favor


   (ignore-errors (require 'password-cache))
   or
   (require 'password-cache nil t)

followed later on by

   (if (fboundp 'password-read)
       ...
     ...)


-- Stefan





reply via email to

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