From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Chong Yidong Newsgroups: gmane.emacs.devel Subject: Re: rcirc bug Date: Sun, 10 Sep 2006 22:57:26 -0400 Message-ID: <87irjvxg89.fsf@furball.mit.edu> References: <20060904135111.7ADB544005@Psilocybe.Update.UU.SE> <87mz9eknqm.fsf@cut.bc.hsia.telus.net> <20060905213720.A150744004@Psilocybe.Update.UU.SE> <87r6yns1rl.fsf@cut.bc.hsia.telus.net> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1157943483 6762 80.91.229.2 (11 Sep 2006 02:58:03 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 11 Sep 2006 02:58:03 +0000 (UTC) Cc: ams@gnu.org, Ryan Yeske , emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Sep 11 04:58:00 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 1GMbzZ-0007Ul-1n for ged-emacs-devel@m.gmane.org; Mon, 11 Sep 2006 04:57:49 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GMbzY-0002ZS-Me for ged-emacs-devel@m.gmane.org; Sun, 10 Sep 2006 22:57:48 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GMbzM-0002Ya-NN for emacs-devel@gnu.org; Sun, 10 Sep 2006 22:57:36 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GMbzM-0002YC-E8 for emacs-devel@gnu.org; Sun, 10 Sep 2006 22:57:36 -0400 Original-Received: from [18.72.1.2] (helo=south-station-annex.mit.edu) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1GMc0X-0007t6-Ay; Sun, 10 Sep 2006 22:58:49 -0400 Original-Received: from grand-central-station.mit.edu (GRAND-CENTRAL-STATION.MIT.EDU [18.7.21.82]) by south-station-annex.mit.edu (8.13.6/8.9.2) with ESMTP id k8B2vY1h015584; Sun, 10 Sep 2006 22:57:35 -0400 (EDT) Original-Received: from outgoing-legacy.mit.edu (OUTGOING-LEGACY.MIT.EDU [18.7.22.104]) by grand-central-station.mit.edu (8.13.6/8.9.2) with ESMTP id k8B2vYnv028364; Sun, 10 Sep 2006 22:57:34 -0400 (EDT) Original-Received: from furball.mit.edu (SYDNEYPACIFIC-SEVEN-FIFTY-TWO.MIT.EDU [18.95.7.241]) ) by outgoing-legacy.mit.edu (8.13.6/8.12.4) with ESMTP id k8B2vQUj024391; Sun, 10 Sep 2006 22:57:26 -0400 (EDT) Original-Received: from cyd by furball.mit.edu with local (Exim 3.36 #1 (Debian)) id 1GMbzC-00034e-00; Sun, 10 Sep 2006 22:57:26 -0400 Original-To: rms@gnu.org In-Reply-To: (Richard Stallman's message of "Fri\, 08 Sep 2006 11\:11\:50 -0400") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) X-Spam-Score: 1.217 X-Scanned-By: MIMEDefang 2.42 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:59650 Archived-At: Richard Stallman writes: > I think it would be better to change pushnew to expand > into code that does not call any cl functions. Then programs > that load cl at compile time could use pushnew without problems. Is there really a problem? Can someone tell me how to reproduce this with a simple test case? I tried made a file with the following contents: (eval-when-compile (require 'cl)) (defvar foo nil) (defun foobar () (interactive) (pushnew 1 foo)) Upon byte compiling and loading the byte-compiled file, `M-x foobar' seemed to work fine. Didn't the rcirc bug turn out to come from another source (incorrect use of `case')?