From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: David Ponce Newsgroups: gmane.emacs.devel Subject: Re: dolist? Date: Sat, 02 Jul 2005 23:01:45 +0200 Message-ID: <42C700B9.3040400@wanadoo.fr> References: <42C67DD0.4060006@student.lu.se> <42C6DDF3.4070605@student.lu.se> <42C6F47D.9040703@student.lu.se> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1120339793 15898 80.91.229.2 (2 Jul 2005 21:29:53 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 2 Jul 2005 21:29:53 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jul 02 23:29:45 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DopYW-00034X-Ax for ged-emacs-devel@m.gmane.org; Sat, 02 Jul 2005 23:29:44 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DopZd-0007Ee-U4 for ged-emacs-devel@m.gmane.org; Sat, 02 Jul 2005 17:30:53 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DopWb-0005fp-S7 for emacs-devel@gnu.org; Sat, 02 Jul 2005 17:27:46 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DopWZ-0005e2-IM for emacs-devel@gnu.org; Sat, 02 Jul 2005 17:27:45 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DopUl-0004j1-Gr for emacs-devel@gnu.org; Sat, 02 Jul 2005 17:25:51 -0400 Original-Received: from [193.252.22.22] (helo=smtp9.wanadoo.fr) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DopBT-00082f-CI for emacs-devel@gnu.org; Sat, 02 Jul 2005 17:05:55 -0400 Original-Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf0902.wanadoo.fr (SMTP Server) with ESMTP id 2660B1C001F5 for ; Sat, 2 Jul 2005 23:00:19 +0200 (CEST) Original-Received: from [192.168.1.2] (unknown [86.193.124.33]) by mwinf0902.wanadoo.fr (SMTP Server) with ESMTP id BD7CD1C001EB; Sat, 2 Jul 2005 23:00:18 +0200 (CEST) X-ME-UUID: 20050702210018776.BD7CD1C001EB@mwinf0902.wanadoo.fr User-Agent: Mozilla Thunderbird 1.0.2-1.3.3 (X11/20050513) X-Accept-Language: en-us, en Original-To: Lennart Borgman In-Reply-To: <42C6F47D.9040703@student.lu.se> 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:40142 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:40142 Lennart Borgman wrote: > Lennart Borgman wrote: > >> Here is a better example for testing. Please test this with the marked >> message commented out and not commented out. Just put it in a buffer >> and eval it. >> >> Am I doing something seriously silly? Has someone checked this or >> should I file a bug? > > > Got some time to make an even simpler test, see below: It looks there is a problem with the function `message' when the message string starts with "...". trying this (emacs -Q): (dolist (i '(1 2 3 4)) (message "... %d" i)) The *message* buffer received: ... 4 With this: (dolist (i '(1 2 3 4)) (message ".. %d" i)) .. 1 .. 2 .. 3 .. 4 Weird. David