unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: "Drew Adams" <drew.adams@oracle.com>
Subject: RE: [drew.adams@oracle.com: RE: weirddefadvicebugwithbyte-compilation]
Date: Mon, 12 Dec 2005 13:53:31 -0800	[thread overview]
Message-ID: <DNEMKBNJBGPAOPIJOOICAEBPDAAA.drew.adams@oracle.com> (raw)
In-Reply-To: <ufyoy9fjs.fsf@gnu.org>

    > This makes me wonder now if byte-compiling in defadvice (i.e.
    > on the fly)
    > should display a *Compile Log* buffer at all. I don't know.

    Why not?  It's a byte compilation like any other one, and these
    warnings do serve a purpose: your code, as posted, had a bug.

Where is the bug? The byte-compiler warning presumably arose because it
compiled a defadvice that referred to variable my-mode. That variable is not
bound in the defadvice body and it might not be bound at the point in the
file when the defadvice is compiled. Is that a bug? It is only a warning, so
I don't really mind, but I don't see how the code is bugged. Should people
systematically place defadvice last in a file or do (provide 'x)(require 'x)
just to make sure that all variables in a defadvice body are defined before
it is compiled?

    > In any case, that's clearly the cause of the problem here (but not
    > the explanation of the crash bug).

    The explanation of the crash is that, because the *Backtrace* buffer
    is displayed in its own separate frame, and that separate frame is
    created in the middle of the process of creating the *Compile-Log*'s
    frame's menu, Emacs somehow fails to record the *Backtrace* frame in
    the list of live frames.  And then, when Emacs is killed, the function
    check_glyph_memory, which walks the frame list and releases all the
    glyph matrices it finds in each frame, misses that one frame which is
    not recorded in the list of frames.

Thanks.

    Can someone please try reproducing this in a non-toolkit X build?  I
    think that build might have the same problem as the MS-Windows build.

    > I still have a question, however, about how best to use
    > define-minor-mode to define the mode variable so that it can be
    > used in a put 'menu-enable. Is it necessary to do the
    > define-minor-mode before doing the put? I guess so; but
    > in that case, I prefer the old method of defining a
    > minor-mode function and its variable (defcustom) separately.
    > The problem is the same, but I always place variable definitions
    > at the top, and such a defcustom would be defined before the
    > variable was used in the put 'menu-enable. In the new system, I
    > was calling the minor-mode function first thing (in .emacs),
    > to set the variable, but that function couldn't be called until
    > its defining library was loaded, and that meant that the
    > variable wasn't defined when the *Compile Log* was displayed
    > when byte-compiling a defadvice in the file.

    Sorry, I'm not an expert on minor modes.  Anyone?

I also don't understand, as I mentioned, _why_ the defadvice in foo.el is
byte-compiled - it has no `compile' keyword. Only the defadvice in bar.el
has `compile', and it does not refer to variable my-mode. If the defadvice
in bar.el is removed, the bug is not manifested, presumably because the
defadvice in foo.el is not byte-compiled. I don't see why a `compile' in a
defadvice in one file would cause compilation of a defadvice in another
file. Is that normal?

  reply	other threads:[~2005-12-12 21:53 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-12-05  2:36 [drew.adams@oracle.com: RE: weird defadvice bug with byte-compilation] Richard Stallman
2005-12-07 18:55 ` Chong Yidong
2005-12-08  4:53   ` Richard M. Stallman
2005-12-08 16:14     ` Drew Adams
2005-12-09 13:17       ` Eli Zaretskii
2005-12-09 14:07         ` Chong Yidong
2005-12-09 18:37         ` [drew.adams@oracle.com: RE: weird defadvice bug withbyte-compilation] Drew Adams
2005-12-10  4:14         ` [drew.adams@oracle.com: RE: weird defadvice bug with byte-compilation] Richard M. Stallman
2005-12-11 18:17           ` [drew.adams@oracle.com: RE: weird defadvice bug withbyte-compilation] Drew Adams
2005-12-12  5:23             ` Richard M. Stallman
2005-12-12  5:40               ` [drew.adams@oracle.com: RE: weird defadvice bugwithbyte-compilation] Drew Adams
2005-12-13  3:14                 ` Richard M. Stallman
2005-12-13  3:52                   ` [drew.adams@oracle.com: RE: weird defadvicebugwithbyte-compilation] Drew Adams
2005-12-13 23:33                     ` Richard M. Stallman
2005-12-14  1:05                       ` [drew.adams@oracle.com: RE: weirddefadvicebugwithbyte-compilation] Drew Adams
2005-12-14  1:24                         ` Johan Bockgård
2005-12-14  3:41                           ` [drew.adams@oracle.com: Drew Adams
2005-12-14  3:45                             ` [drew.adams@oracle.com:RE:weirddefadvicebugwithbyte-compilation] Drew Adams
2005-12-14 17:17                             ` [drew.adams@oracle.com: Johan Bockgård
2005-12-14 21:29                               ` [drew.adams@oracle.com:RE:weirddefadvicebugwithbyte-compilation] Drew Adams
2005-12-14 23:43                                 ` [drew.adams@oracle.com:RE:weirddefadvicebugwithbyte-compilation] Johan Bockgård
2005-12-15  1:46                                   ` [drew.adams@oracle.com:RE:weirddefadvicebugwithbyte-compilation] Drew Adams
2005-12-11 20:21         ` [drew.adams@oracle.com: RE: weird defadvice bug with byte-compilation] Eli Zaretskii
2005-12-11 21:35           ` [drew.adams@oracle.com: RE: weird defadvice bug withbyte-compilation] Drew Adams
2005-12-12  5:52             ` Eli Zaretskii
2005-12-12  6:11               ` [drew.adams@oracle.com: RE: weird defadvice bugwithbyte-compilation] Drew Adams
2005-12-12  6:44                 ` [drew.adams@oracle.com: RE: weird defadvicebugwithbyte-compilation] Drew Adams
2005-12-12 21:22                   ` Eli Zaretskii
2005-12-12 21:53                     ` Drew Adams [this message]
2005-12-13  4:30                       ` [drew.adams@oracle.com: RE: weirddefadvicebugwithbyte-compilation] Eli Zaretskii
2005-12-13  4:59                         ` [drew.adams@oracle.com: Drew Adams
2005-12-12  5:23           ` [drew.adams@oracle.com: RE: weird defadvice bug with byte-compilation] Richard M. Stallman
2005-12-12  6:11             ` Eli Zaretskii
2005-12-13  3:14               ` Richard M. Stallman
2005-12-13  4:39                 ` Eli Zaretskii
2005-12-13 23:33                   ` Richard M. Stallman
2005-12-14 19:38                     ` Eli Zaretskii
2005-12-15  2:09                       ` Richard M. Stallman
2005-12-15  4:46                         ` Eli Zaretskii
2005-12-16  1:51                           ` Richard M. Stallman
2005-12-16 19:48                             ` Eli Zaretskii
2005-12-16 20:14                             ` Eli Zaretskii
2005-12-17  1:05                               ` Richard M. Stallman
2005-12-17  8:29                                 ` Eli Zaretskii
2005-12-17 23:59                                   ` Richard M. Stallman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=DNEMKBNJBGPAOPIJOOICAEBPDAAA.drew.adams@oracle.com \
    --to=drew.adams@oracle.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).