From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Jason Rumney Newsgroups: gmane.emacs.devel Subject: Re: emacs crash Date: Thu, 04 Nov 2004 10:31:46 +0000 Message-ID: <418A0512.3000901@gnu.org> References: <4188AB08.2000206@freemail.hu> <4188B2DB.9050005@gnu.org> <68c73b1a04110303066eac8188@mail.gmail.com> <4188F2F8.3000105@freemail.hu> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1099564348 17095 80.91.229.6 (4 Nov 2004 10:32:28 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 4 Nov 2004 10:32:28 +0000 (UTC) Cc: "B. Anyos" , emacs-devel@gnu.org, chenggao@gmail.com Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Nov 04 11:32:20 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CPeuh-0000zA-00 for ; Thu, 04 Nov 2004 11:32:19 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CPf2p-0005M2-3E for ged-emacs-devel@m.gmane.org; Thu, 04 Nov 2004 05:40:43 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CPf1V-00051K-IR for emacs-devel@gnu.org; Thu, 04 Nov 2004 05:39:21 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CPf1O-00050M-Dh for emacs-devel@gnu.org; Thu, 04 Nov 2004 05:39:14 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CPf1O-00050H-3u for emacs-devel@gnu.org; Thu, 04 Nov 2004 05:39:14 -0500 Original-Received: from [217.207.198.106] (helo=exchange.integrasp.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CPetC-0000qx-Ta; Thu, 04 Nov 2004 05:30:47 -0500 Original-Received: from ASSP-nospam (localhost [127.0.0.1]) by exchange.integrasp.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id SBWN703W; Thu, 4 Nov 2004 10:30:36 -0000 Original-Received: from 192.168.111.196 ([192.168.111.196] helo=[192.168.111.196]) by ASSP-nospam ; 4 Nov 04 10:30:36 -0000 User-Agent: Mozilla Thunderbird 0.8 (Windows/20040913) X-Accept-Language: en-us, en Original-To: rms@gnu.org In-Reply-To: X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:29427 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:29427 Richard Stallman wrote: >For instance, there is something really strange here: > > funcall_lambda(int -2128849612, int 1, int * 0x0082f980) line 2946 + 17 bytes > Ffuncall(int -2147483648, int * 0x0082f980) line 2814 + 12 bytes > call1(int 556794192, int -2127346688) line 2547 + 11 bytes > Fx_create_frame(int 0) line 4355 > >There is no call to Fx_create_frame in line 4355; in fact, line 4355 >is far after the end of Fx_create_frame. What's going on? > I think the user is on Windows, so that would be line 4355 of w32fns.c, which is in Fx_create_frame. My line numbers are slightly out, but I suspect this line (4350 in my version): /* Set up faces after all frame parameters are known. This call also merges in face attributes specified for new frames. If we don't do this, the `menu' face for instance won't have the right colors, and the menu bar won't appear in the specified colors for new frames. */ call1 (Qface_set_after_frame_default, frame); It appears to be outside the BLOCK_INPUT blocks within x_create_frame.