From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "B. Anyos" Newsgroups: gmane.emacs.devel Subject: Re: emacs crash Date: Wed, 03 Nov 2004 16:02:16 +0100 Message-ID: <4188F2F8.3000105@freemail.hu> References: <4188AB08.2000206@freemail.hu> <4188B2DB.9050005@gnu.org> <68c73b1a04110303066eac8188@mail.gmail.com> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=GB2312 Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1099495453 23123 80.91.229.6 (3 Nov 2004 15:24:13 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 3 Nov 2004 15:24:13 +0000 (UTC) Cc: CHENG Gao Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Nov 03 16:24:07 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 1CPMzW-0004UU-00 for ; Wed, 03 Nov 2004 16:24:06 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CPN7V-0007R8-Ol for ged-emacs-devel@m.gmane.org; Wed, 03 Nov 2004 10:32:21 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CPN72-0007KM-1q for emacs-devel@gnu.org; Wed, 03 Nov 2004 10:31:52 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CPN70-0007JO-Si for emacs-devel@gnu.org; Wed, 03 Nov 2004 10:31:51 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CPN70-0007IR-FU for emacs-devel@gnu.org; Wed, 03 Nov 2004 10:31:50 -0500 Original-Received: from [81.0.70.197] (helo=evo2.evosoft.hu) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.34) id 1CPMxi-0002R8-M4 for emacs-devel@gnu.org; Wed, 03 Nov 2004 10:22:16 -0500 Original-Received: from evosoft.hu (griff.evosoft.hu [172.16.110.26]) by evo2.evosoft.hu (8.12.9p2/8.12.9) with ESMTP id iA3F2QIv092228; Wed, 3 Nov 2004 16:02:26 +0100 (CET) (envelope-from banyos@freemail.hu) Original-Received: from [172.16.111.121] (banyos2.evosoft.hu [172.16.111.121]) by evosoft.hu (8.12.3/8.12.3) with ESMTP id iA3F2ILS049398; Wed, 3 Nov 2004 16:02:19 +0100 (CET) (envelope-from banyos@freemail.hu) User-Agent: Mozilla Thunderbird 0.8 (Windows/20040913) X-Accept-Language: en-us, en Original-To: emacs-devel@gnu.org In-Reply-To: X-Enigmail-Version: 0.86.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime X-evosoft-evo2-MailScanner-Information: Please contact the ISP for more information X-evosoft-evo2-MailScanner: Found to be clean 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:29392 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:29392 Hi, Thanks for the tip. It worked for me, too. Bela CHENG Gao said the following on 11/3/2004 15:09 PM: > I think RMS' latest commit to eval.c caused this. > > ,---- > | CVSROOT: /cvsroot/emacs > | Module name: emacs > | Branch: > | Changes by: Richard M. Stallman 04/11/02 08:59:26 > | > | Modified files: > | src : eval.c > | > | Log message: > | (Fcall_interactive_p): New function. > | (interactive_p): Don't test INTERACTIVE here. > | (Finteractive_p): Doc fix. > | > | (Feval): Abort if INPUT_BLOCKED_P. > | > | CVSWeb URLs: > | http://savannah.gnu.org/cgi-bin/viewcvs/emacs/emacs/src/eval.c.diff?tr1=1.221&tr2=1.222&r1=text&r2=text > `---- > > I have a temp solution: > open src/eval.c, go to line 1999, and change: > > if (handling_signal || INPUT_BLOCKED_P) > > to > > if (handling_signal) > > then rebuild Emacs. > > Maybe it's only a workaround, not a real solution. > > HTH, > >