From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Alan Mackenzie Newsgroups: gmane.emacs.bugs Subject: bug#61579: master branch: Byte compilation: Warning messages inside eval-and-compile lose their positions. Date: Fri, 17 Feb 2023 17:37:55 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="14957"; mail-complaints-to="usenet@ciao.gmane.io" To: 61579-done@debbugs.gnu.org Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Fri Feb 17 18:39:17 2023 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pT4hY-0003dv-LO for geb-bug-gnu-emacs@m.gmane-mx.org; Fri, 17 Feb 2023 18:39:16 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pT4hM-0006dC-D0; Fri, 17 Feb 2023 12:39:04 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pT4hK-0006cS-Md for bug-gnu-emacs@gnu.org; Fri, 17 Feb 2023 12:39:02 -0500 Original-Received: from debbugs.gnu.org ([209.51.188.43]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1pT4hK-00051z-CB for bug-gnu-emacs@gnu.org; Fri, 17 Feb 2023 12:39:02 -0500 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1pT4hJ-00030j-VR for bug-gnu-emacs@gnu.org; Fri, 17 Feb 2023 12:39:01 -0500 Resent-From: Alan Mackenzie Original-Sender: "Debbugs-submit" Resent-To: bug-gnu-emacs@gnu.org Resent-Date: Fri, 17 Feb 2023 17:39:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: cc-closed 61579 X-GNU-PR-Package: emacs Mail-Followup-To: 61579@debbugs.gnu.org, acm@muc.de, acm@muc.de Original-Received: via spool by 61579-done@debbugs.gnu.org id=D61579.167665548311503 (code D ref 61579); Fri, 17 Feb 2023 17:39:01 +0000 Original-Received: (at 61579-done) by debbugs.gnu.org; 17 Feb 2023 17:38:03 +0000 Original-Received: from localhost ([127.0.0.1]:41503 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pT4gN-0002zT-8w for submit@debbugs.gnu.org; Fri, 17 Feb 2023 12:38:03 -0500 Original-Received: from mx3.muc.de ([193.149.48.5]:23627) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pT4gM-0002yy-39 for 61579-done@debbugs.gnu.org; Fri, 17 Feb 2023 12:38:02 -0500 Original-Received: (qmail 4636 invoked by uid 3782); 17 Feb 2023 18:37:56 +0100 Original-Received: from acm.muc.de (pd953aad7.dip0.t-ipconnect.de [217.83.170.215]) (using STARTTLS) by colin.muc.de (tmda-ofmipd) with ESMTP; Fri, 17 Feb 2023 18:37:55 +0100 Original-Received: (qmail 26759 invoked by uid 1000); 17 Feb 2023 17:37:55 -0000 Content-Disposition: inline In-Reply-To: X-Submission-Agent: TMDA/1.3.x (Ph3nix) X-Primary-Address: acm@muc.de X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list 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-mx.org@gnu.org Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.bugs:255897 Archived-At: Hello, Emacs. This bug has been fixed in the master branch. On Fri, Feb 17, 2023 at 17:08:56 +0000, Alan Mackenzie wrote: > In buffer *scratch*, enter the following: > (eval-and-compile > (defvar foo "foo") > (make-variable-buffer-local 'foo)) > .. With point inside that form, do M-x compile-defun. This causes these > warnings in *Compile-Log*: > Buffer *scratch*:4:2: Warning: global/dynamic var `foo' lacks a prefix > Buffer *scratch*:4:2: Warning: `make-variable-buffer-local' not called at > toplevel > .. The position 4:2 is the position of eval-and-compile, not the correct > positions of the two warning messages. This is a bug. > [Side note: When eval-and-compile is replaced by eval-when-compile, > correct warning positions are generated thus: > Buffer *scratch*:5:11: Warning: global/dynamic var `foo' lacks a prefix > Buffer *scratch*:6:4: Warning: `make-variable-buffer-local' not called at > toplevel > ..] -- Alan Mackenzie (Nuremberg, Germany).