From: Andreas Seltenreich <seltenreich@gmx.de>
To: 558@emacsbugs.donarmstrong.com
Subject: bug#558: (23.0.60; crash on M-x make-frame-on-display)
Date: Mon, 14 Jul 2008 19:34:13 +0200 [thread overview]
Message-ID: <87bq10v08a.fsf@gate450.dyndns.org> (raw)
In-Reply-To: <handler.558.B.12160248746403.ack@emacsbugs.donarmstrong.com> (Emacs bug Tracking System's message of "Mon, 14 Jul 2008 01:50:04 -0700")
Emacs bug Tracking System writes:
> If you wish to submit further information on this problem, please
> send it to 558@emacsbugs.donarmstrong.com, as before.
The patch in the initial report is broken. Sorry for the inconvenience.
Here's a tested version.
--8<---------------cut here---------------start------------->8---
*** xterm.c.~1.1000.~ 2008-07-13 18:20:31.000000000 +0200
--- xterm.c 2008-07-14 19:04:45.000000000 +0200
***************
*** 10125,10135 ****
--- 10125,10140 ----
if (!EQ (XSYMBOL (Qvendor_specific_keysyms)->function, Qunbound))
{
char *vendor = ServerVendor (dpy);
+ /* temporarily hide the partially initialized terminal */
+ xassert(terminal_list == terminal);
+ terminal_list = terminal->next_terminal;
UNBLOCK_INPUT;
terminal->kboard->Vsystem_key_alist
= call1 (Qvendor_specific_keysyms,
vendor ? build_string (vendor) : empty_unibyte_string);
BLOCK_INPUT;
+ terminal->next_terminal = terminal_list;
+ terminal_list = terminal;
}
terminal->kboard->next_kboard = all_kboards;
--8<---------------cut here---------------end--------------->8---
I also found a way to artificially cause a SIGIO at the right time to
trigger the crash more reliably:
1. compiling emacs from CVS using
./configure --with-x-toolkit=no CFLAGS='-O2 -g -fno-crossjumping'
2. running emacs -Q -nw
3. M-x find-function RET vendor-specific-keysyms RET
4. C-u C-M-x
5. crash on M-x make-frame-on-display RET :0 RET
regards,
andreas
next prev parent reply other threads:[~2008-07-14 17:34 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <877ia3nwpz.fsf@cyd.mit.edu>
2008-07-14 8:40 ` bug#558: 23.0.60; crash on M-x make-frame-on-display Andreas Seltenreich
[not found] ` <handler.558.B.12160248746403.ack@emacsbugs.donarmstrong.com>
2008-07-14 17:34 ` Andreas Seltenreich [this message]
2008-08-27 0:15 ` bug#558: marked as done (23.0.60; crash on M-x make-frame-on-display) Emacs bug Tracking System
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87bq10v08a.fsf@gate450.dyndns.org \
--to=seltenreich@gmx.de \
--cc=558@emacsbugs.donarmstrong.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 external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.