From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: old-style backquotes warnings Date: Sun, 09 Sep 2007 16:47:48 -0400 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1189373165 11099 80.91.229.12 (9 Sep 2007 21:26:05 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 9 Sep 2007 21:26:05 +0000 (UTC) Cc: emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Sep 10 07:25:52 2007 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 1IUbBc-00052p-Sc for ged-emacs-devel@m.gmane.org; Mon, 10 Sep 2007 06:47:49 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IUThG-0002Oh-GW for ged-emacs-devel@m.gmane.org; Sun, 09 Sep 2007 16:47:58 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IUThC-0002M0-Iy for emacs-devel@gnu.org; Sun, 09 Sep 2007 16:47:54 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IUThB-0002J0-AP for emacs-devel@gnu.org; Sun, 09 Sep 2007 16:47:53 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IUThB-0002Im-7K for emacs-devel@gnu.org; Sun, 09 Sep 2007 16:47:53 -0400 Original-Received: from tomts40.bellnexxia.net ([209.226.175.97] helo=tomts40-srv.bellnexxia.net) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IUTh7-0000py-47; Sun, 09 Sep 2007 16:47:49 -0400 Original-Received: from pastel.home ([70.55.141.227]) by tomts40-srv.bellnexxia.net (InterMail vM.5.01.06.13 201-253-122-130-113-20050324) with ESMTP id <20070909204748.FPBW29719.tomts40-srv.bellnexxia.net@pastel.home>; Sun, 9 Sep 2007 16:47:48 -0400 Original-Received: by pastel.home (Postfix, from userid 20848) id 581268073; Sun, 9 Sep 2007 16:47:48 -0400 (EDT) In-Reply-To: (Eli Zaretskii's message of "Sun\, 09 Sep 2007 22\:52\:08 +0300") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/23.0.50 (gnu/linux) X-Detected-Kernel: Solaris 8 (1) 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:78350 Archived-At: >> > Why doesn't this warning follow the format of other warnings emitted >> > by the byte compiler? >> >> > Compiling progmodes/cc-subword.el >> > !! File cc-vars.el uses old-style backquotes !! >> >> Probably because I don't know what's the normal format. > I hope this is a joke (though it's way too far from April 1st), > because I think you wrote the code that produces the normal format, > e.g.: > In end of data: > net/browse-url.el:1555:1:Warning: the following functions are not known to be > defined: copy-seq, w3-fetch-other-window, w3-fetch, case, otherwise > In other words a format that `next-error' can parse. Oh sorry, now I see it: the warning you talk about is the one from Fload (a call to Fmessage), not the one from the byte-compiler, which is why it doesn't follow the byte-compiler's format. Stefan