From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Andreas Schwab Newsgroups: gmane.emacs.bugs Subject: bug#11904: 24.1.50; error byte compiling (defvar :foo ':foo), regression from 23.4 Date: Wed, 11 Jul 2012 09:38:33 +0200 Message-ID: References: <87liirw6jk.fsf@maru.md5i.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1341992401 12649 80.91.229.3 (11 Jul 2012 07:40:01 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 11 Jul 2012 07:40:01 +0000 (UTC) Cc: 11904@debbugs.gnu.org To: Michael Welsh Duggan Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Wed Jul 11 09:39:59 2012 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1SorWd-00040w-FY for geb-bug-gnu-emacs@m.gmane.org; Wed, 11 Jul 2012 09:39:55 +0200 Original-Received: from localhost ([::1]:33738 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SorWc-0003yE-Hn for geb-bug-gnu-emacs@m.gmane.org; Wed, 11 Jul 2012 03:39:54 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:44859) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SorWU-0003y0-T6 for bug-gnu-emacs@gnu.org; Wed, 11 Jul 2012 03:39:52 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SorWM-0007o6-6o for bug-gnu-emacs@gnu.org; Wed, 11 Jul 2012 03:39:46 -0400 Original-Received: from debbugs.gnu.org ([140.186.70.43]:51700) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SorWM-0007o2-3y for bug-gnu-emacs@gnu.org; Wed, 11 Jul 2012 03:39:38 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.72) (envelope-from ) id 1Sorba-0007Ht-Fj for bug-gnu-emacs@gnu.org; Wed, 11 Jul 2012 03:45:02 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Andreas Schwab Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Wed, 11 Jul 2012 07:45:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 11904 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: Original-Received: via spool by 11904-submit@debbugs.gnu.org id=B11904.134199267127966 (code B ref 11904); Wed, 11 Jul 2012 07:45:02 +0000 Original-Received: (at 11904) by debbugs.gnu.org; 11 Jul 2012 07:44:31 +0000 Original-Received: from localhost ([127.0.0.1]:33013 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Sorb5-0007H1-3V for submit@debbugs.gnu.org; Wed, 11 Jul 2012 03:44:31 -0400 Original-Received: from mail-out.m-online.net ([212.18.0.9]:49886) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Sorb2-0007Gs-Tm for 11904@debbugs.gnu.org; Wed, 11 Jul 2012 03:44:30 -0400 Original-Received: from frontend4.mail.m-online.net (unknown [192.168.8.180]) by mail-out.m-online.net (Postfix) with ESMTP id 3WXBy51pwzz4KKH2; Wed, 11 Jul 2012 09:39:37 +0200 (CEST) Original-Received: from igel.home (ppp-93-104-136-236.dynamic.mnet-online.de [93.104.136.236]) by mail.mnet-online.de (Postfix) with ESMTPA id 3WXBwV0n4CzbbtQ; Wed, 11 Jul 2012 09:38:34 +0200 (CEST) Original-Received: by igel.home (Postfix, from userid 501) id 8B8BACA2A4; Wed, 11 Jul 2012 09:38:33 +0200 (CEST) X-Yow: Am I elected yet? In-Reply-To: <87liirw6jk.fsf@maru.md5i.com> (Michael Welsh Duggan's message of "Tue, 10 Jul 2012 19:16:47 -0400") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.1 (gnu/linux) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 140.186.70.43 X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:61812 Archived-At: That's because (defvar :foo ':foo) is written as (defvar :foo :foo) in the elc file, which defvar doesn't allow. byte-compile-file-form-defvar no longer calls byte-compile-form via byte-compile-keep-pending which would handle it correctly (and emit a warning). When adding a doc string the bug also happens in emacs < 24. Andreas. -- Andreas Schwab, schwab@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different."