bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#21963: Spurious byte compile message: "Warning: the function `bar' m


From: Alan Mackenzie
Subject: bug#21963: Spurious byte compile message: "Warning: the function `bar' might not be defined at runtime."
Date: Fri, 20 Nov 2015 15:26:38 +0000
User-agent: Mutt/1.5.23 (2014-03-12)

Hello, Eli.

On Fri, Nov 20, 2015 at 04:48:13PM +0200, Eli Zaretskii wrote:
> > Date: Fri, 20 Nov 2015 11:40:50 +0000
> > Cc: 21963@debbugs.gnu.org
> > From: Alan Mackenzie <acm@muc.de>

> > > eval-when-compile has no effect at run time, and the warning is
> > > explicitly about what might happen at runtime.

> > > IOW, I don't think this is a bug.

> > It is, at the very least, puzzling behaviour.  The warning is issued for
> > a function that most definitely has been defined at runtime.

> No, it was not (or, more accurately, will not be).  'eval-when-compile'
> does nothing to make sure it will be defined at runtime; you need
> either 'require' or 'eval-and-compile'.

The first two lines of the file are:

   (eval-when-compile (require 'warning-bar))
   (require 'warning-bar)
 
The second line will define the function `bar' at run time.

The byte-compiler has already decided after the first line that `bar' is
not defined at run time (fair enough), but seems unwilling to change its
mind after the second line.

This isn't just an academic problem.  CC Mode uses such sequences (in
effect), producing warnings in the Emacs build.

-- 
Alan Mackenzie (Nuremberg, Germany).





reply via email to

[Prev in Thread] Current Thread [Next in Thread]