From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/78144 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.gnus.general Subject: Re: message-yank-original issue Date: Mon, 28 Mar 2011 16:35:12 -0400 Message-ID: References: <871v2ako4c.fsf@fencepost.gnu.org> <87lj0ha52s.fsf@lifelogs.com> <87y64g6833.fsf@lifelogs.com> <87ei5tzneu.fsf@turtle.gmx.de> <877hbjkquz.fsf@lifelogs.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1301358758 7541 80.91.229.12 (29 Mar 2011 00:32:38 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 29 Mar 2011 00:32:38 +0000 (UTC) Cc: , David Kastrup , Katsumi Yamaoka To: Ted Zlatanov Original-X-From: ding-owner+M26454@lists.math.uh.edu Tue Mar 29 02:32:33 2011 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Q4MrJ-0000qS-2i for ding-account@gmane.org; Tue, 29 Mar 2011 02:32:33 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1Q4MqF-000713-Gr; Mon, 28 Mar 2011 19:31:27 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1Q4MqD-00070s-C5 for ding@lists.math.uh.edu; Mon, 28 Mar 2011 19:31:25 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.72) (envelope-from ) id 1Q4MqC-0006ft-MJ for ding@lists.math.uh.edu; Mon, 28 Mar 2011 19:31:25 -0500 Original-Received: from chene.dit.umontreal.ca ([132.204.246.20]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1Q4MqB-0007zM-NJ for ding@gnus.org; Tue, 29 Mar 2011 02:31:23 +0200 Original-Received: from ceviche.home (lechon.iro.umontreal.ca [132.204.27.242]) by chene.dit.umontreal.ca (8.14.1/8.14.1) with ESMTP id p2T0WXvo028592; Mon, 28 Mar 2011 20:32:33 -0400 Original-Received: by ceviche.home (Postfix, from userid 20848) id 720356680E; Mon, 28 Mar 2011 16:35:12 -0400 (EDT) In-Reply-To: <877hbjkquz.fsf@lifelogs.com> (Ted Zlatanov's message of "Mon, 28 Mar 2011 14:05:40 -0500") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) X-NAI-Spam-Flag: NO X-NAI-Spam-Threshold: 5 X-NAI-Spam-Score: 0 X-NAI-Spam-Rules: 1 Rules triggered RV3810=0 X-NAI-Spam-Version: 2.2.0.9286 : core <3810> : streams <614374> : uri <837526> X-Spam-Score: -0.3 (/) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:78144 Archived-At: > I'm not sure what's going on with message.el. It clearly says > (eval-when-compile > (require 'cl)) > so it should not be erroring out. Stefan wanted to go back to using > `case' instead of `cond' so I'll defer to him. I see what's going on: (defun message-yank-original (&optional arg) [...] (eval `(let ,message-cite-style [...] (case message-cite-reply-position [...] Now, why on earth is this code using the evil `eval'? Stefan