emacs-devel
[Top][All Lists]
Advanced

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

Re: rcirc bug


From: Stefan Monnier
Subject: Re: rcirc bug
Date: Thu, 07 Sep 2006 17:11:34 -0400
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux)

>                  (dolist (type rcirc-activity-types)
>                    (rcirc-add-face 0 (length s)
>                                    (case type
> !                                    ('nick 'rcirc-track-nick)
> !                                    ('keyword 'rcirc-track-keyword))
>                                    s)))
>                s))
>            buffers ","))

Indeed, this was wrong.  It was equivalent to:

                   (dolist (type rcirc-activity-types)
                     (rcirc-add-face 0 (length s)
                                     (cond
                                      ((or (eq type 'nick)
                                           (eq type 'quote))
                                       'rcirc-track-nick)
                                      ((or (eq type 'keyword)
                                           (eq type 'quote))
                                       'rcirc-track-keyword))
                                     s)))
                 s))
             buffers ","))


-- Stefan




reply via email to

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