emacs-devel
[Top][All Lists]
Advanced

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

Re: Abort when creating frame


From: Eli Zaretskii
Subject: Re: Abort when creating frame
Date: Tue, 06 Sep 2011 03:09:04 -0400

> Date: Tue, 06 Sep 2011 08:57:29 +0200
> From: martin rudalics <address@hidden>
> CC: address@hidden
> 
>  > Anyway, it looks like Emacs is unable to load uni-mirrored.el, I get
>  > the same crash if I rename the file.  So perhaps put a breakpoint in
>  > Fload and see what's going on there when it tries to load
>  > uni-mirrored.el.
> 
> How?  I don't know when it tries to load uni-mirrored.el.

Like this:

 (gdb) break bidi_iniialize
 (gdb) r -Q

When this breakpoint breaks, step through bidi_iniialize until you get
to the 2nd uniprop_table call.  Then type at GDB prompt:

 (gdb) break Fload
 (gdb) continue

The next break in Fload should show that Emacs is loading
uni-mirrored.el.  You can verify that once Fload breaks like this:

 (gdb) pp file

Then step through Fload and see which line fails there.

Note that in order for "pp" to work, you will need to start GDB in the
src directory.  But you probably already know that.



reply via email to

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