[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: rcirc.el
From: |
David Kastrup |
Subject: |
Re: rcirc.el |
Date: |
Wed, 19 Oct 2005 09:30:31 +0200 |
User-agent: |
Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) |
Ryan Yeske <address@hidden> writes:
> David Kastrup <address@hidden> writes:
>
>> I think the basic entry points (and their aliases) at least should get
>> autoload cookies.
>
> What is the right way to do this given the way I conditionalized the
> defalias:
>
> (unless (fboundp 'irc)
> ;;;###autoload
> (defalias 'irc 'rcirc))
>
> I think that is probably not the right thing to do.
More like
;;;###autoload (unless (fboundb 'irc) (defalias 'irc 'rcirc))
However, it does not make sense to conditionalize the autoload, since
it concerns the state of a virgin Emacs. So either we decide that a
virgin Emacs maps irc to rcirc, in which case we should write just
;;;###autoload (defalias 'irc 'rcirc)
or we decide that it doesn't, in which case we would not want to have
the alias at all.
Richard mentioned that maybe ERC would be installed as well. Then we
should definitely decide which client, if any, should be available as
"irc".
--
David Kastrup, Kriemhildstr. 15, 44793 Bochum
- Re: rcirc.el, (continued)
- Re: rcirc.el, Richard M. Stallman, 2005/10/16
- Re: rcirc.el, Nic Ferrier, 2005/10/16
- Re: rcirc.el, Ryan Yeske, 2005/10/18
- Re: rcirc.el, Romain Francoise, 2005/10/18
- Re: rcirc.el, David Kastrup, 2005/10/18
- Re: rcirc.el, Ryan Yeske, 2005/10/18
- Re: rcirc.el,
David Kastrup <=
- Re: rcirc.el, Richard M. Stallman, 2005/10/19
- Re: rcirc.el, Andreas Schwab, 2005/10/19
- Re: rcirc.el, Richard M. Stallman, 2005/10/19
- Re: rcirc.el, Richard M. Stallman, 2005/10/18
- Re: rcirc.el, Ryan Yeske, 2005/10/19
- Re: rcirc.el, Richard M. Stallman, 2005/10/19
- Re: rcirc.el, Ryan Yeske, 2005/10/19
- Re: rcirc.el, Richard M. Stallman, 2005/10/20
- Re: rcirc.el, Romain Francoise, 2005/10/20
- Re: rcirc.el, Henrik Enberg, 2005/10/20