From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Is this fallout from the end-of-defun changes? Date: Thu, 19 Feb 2009 11:01:04 +0100 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1235037704 29082 80.91.229.12 (19 Feb 2009 10:01:44 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 19 Feb 2009 10:01:44 +0000 (UTC) To: Emacs developers Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Feb 19 11:02:59 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1La5jp-0006UM-PM for ged-emacs-devel@m.gmane.org; Thu, 19 Feb 2009 11:02:38 +0100 Original-Received: from localhost ([127.0.0.1]:49225 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1La5iV-0005yn-2C for ged-emacs-devel@m.gmane.org; Thu, 19 Feb 2009 05:01:15 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1La5iP-0005yg-3g for emacs-devel@gnu.org; Thu, 19 Feb 2009 05:01:09 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1La5iN-0005xB-0E for emacs-devel@gnu.org; Thu, 19 Feb 2009 05:01:08 -0500 Original-Received: from [199.232.76.173] (port=54945 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1La5iM-0005ww-NG for emacs-devel@gnu.org; Thu, 19 Feb 2009 05:01:06 -0500 Original-Received: from mail-ew0-f20.google.com ([209.85.219.20]:42119) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1La5iM-0000zN-4k for emacs-devel@gnu.org; Thu, 19 Feb 2009 05:01:06 -0500 Original-Received: by ewy13 with SMTP id 13so300650ewy.18 for ; Thu, 19 Feb 2009 02:01:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=FC+lsRh59xCkEI/OM8zswoyNHQBmaNJMooV7zhrVMPA=; b=qVVffVnzaNmaVAlkPWPq/avItUkkxVBWC+HfFSEUE8lr/9apbSt/FG/pssheSmFN6f iEe/lMpsso3uExCezW9fl9nMl+F17HrOYySluHNDsfYUoGROKVxmvjvU1DIDuT7eoDVl R+80et7eX3pkItsPMfWoqWA6/z5XPITDSYjrY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=D+73jLTq2AkgI+scyZHKikwxZ4M2+u+yTQ7Uwpl7+j9eENly/8lR1V/hTtfc5tltCQ cCH17Xa8RtPfeaKHXtC/Ter4IVRyUmj8R2JsnWr0ygbSI57CT+1vdyIBGaPlpa7tWjHe sDuF0Ees+85wDVJa8KZ4T5NMwh3dBi3SAzJKI= Original-Received: by 10.210.35.17 with SMTP id i17mr4359994ebi.140.1235037664131; Thu, 19 Feb 2009 02:01:04 -0800 (PST) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) 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:109211 Archived-At: ;;; bug.el ;;; (defun function1 () nil) (defun function2 () nil) ;;; end ;;; Doing emacs -Q bug.el --eval "(progn (forward-list) (eval-defun nil))" With 22.3 => function1 With the pretest => function1 With the current trunk => function2 I'll file a bug report as soon as Stefan confirms that it is one (it should, it's quite weird to be on a line of function1 and get function2 evalled). Juanma