From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: rcirc bug Date: Thu, 07 Sep 2006 17:11:34 -0400 Message-ID: References: <20060904135111.7ADB544005@Psilocybe.Update.UU.SE> <87mz9eknqm.fsf@cut.bc.hsia.telus.net> <87u03mdm4g.fsf@freemail.hu> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1157663526 29408 80.91.229.2 (7 Sep 2006 21:12:06 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 7 Sep 2006 21:12:06 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Sep 07 23:12:04 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GLRA9-0004hc-51 for ged-emacs-devel@m.gmane.org; Thu, 07 Sep 2006 23:11:54 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GLRA8-0004Jm-B6 for ged-emacs-devel@m.gmane.org; Thu, 07 Sep 2006 17:11:52 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GLR9u-0004CV-2N for emacs-devel@gnu.org; Thu, 07 Sep 2006 17:11:38 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GLR9s-00047G-HU for emacs-devel@gnu.org; Thu, 07 Sep 2006 17:11:37 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GLR9s-00046h-6v for emacs-devel@gnu.org; Thu, 07 Sep 2006 17:11:36 -0400 Original-Received: from [209.226.175.34] (helo=tomts13-srv.bellnexxia.net) by monty-python.gnu.org with esmtp (Exim 4.52) id 1GLRAK-00067o-2H for emacs-devel@gnu.org; Thu, 07 Sep 2006 17:12:04 -0400 Original-Received: from localhost ([70.55.80.224]) by tomts13-srv.bellnexxia.net (InterMail vM.5.01.06.13 201-253-122-130-113-20050324) with ESMTP id <20060907211134.MRPB29052.tomts13-srv.bellnexxia.net@localhost>; Thu, 7 Sep 2006 17:11:34 -0400 Original-Received: by localhost (Postfix, from userid 20848) id 709358B16; Thu, 7 Sep 2006 17:11:34 -0400 (EDT) Original-To: emacs-devel@gnu.org In-Reply-To: <87u03mdm4g.fsf@freemail.hu> (Magnus Henoch's message of "Tue, 05 Sep 2006 23:44:31 +0200") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:59520 Archived-At: > (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