From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Jason Rumney Newsgroups: gmane.emacs.bugs,gmane.emacs.windows Subject: Re: [h-e-w] Current word on binaries Date: 14 Feb 2004 12:18:39 +0000 Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: <009901c3ec70$b3013940$6400a8c0@austin.rr.com> <7494-Sat14Feb2004140608+0200-eliz@elta.co.il> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1076761641 12055 80.91.224.253 (14 Feb 2004 12:27:21 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 14 Feb 2004 12:27:21 +0000 (UTC) Cc: help-emacs-windows@gnu.org, bug-gnu-emacs@gnu.org, Harald Maier Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Sat Feb 14 13:27:15 2004 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1Aryt9-0006l4-00 for ; Sat, 14 Feb 2004 13:27:15 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1ArysW-0008SJ-JY for geb-bug-gnu-emacs@m.gmane.org; Sat, 14 Feb 2004 07:26:36 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1ArynR-0006bM-GC for bug-gnu-emacs@gnu.org; Sat, 14 Feb 2004 07:21:21 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1ArymY-00067R-8G for bug-gnu-emacs@gnu.org; Sat, 14 Feb 2004 07:20:57 -0500 Original-Received: from [194.106.33.36] (helo=server0027.freedom2surf.net) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.24) id 1ArylU-0005Ii-B1; Sat, 14 Feb 2004 07:19:20 -0500 Original-Received: from wanchan.jasonrumney.net (i-195-137-77-250.freedom2surf.net [195.137.77.250]) by server0027.freedom2surf.net (8.12.6/8.12.6/Debian-7) with ESMTP id i1ECJBsT020915; Sat, 14 Feb 2004 12:19:12 GMT Original-Received: from NYAUMO (nyaumo.jasonrumney.net [10.0.0.27]) by wanchan.jasonrumney.net (Postfix) with ESMTP id 08BDBDDDB3; Sat, 14 Feb 2004 12:19:10 +0000 (GMT) Original-To: Eli Zaretskii In-Reply-To: <7494-Sat14Feb2004140608+0200-eliz@elta.co.il> Original-Lines: 14 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50 X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Bug reports for GNU Emacs, the Swiss army knife of text editors List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.bugs:6961 gmane.emacs.windows:2013 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:6961 "Eli Zaretskii" writes: > Can someone run Emacs under GDB and see where exactly does it abort? I have done that. It aborts on line 1739 of bytecode.c. #ifdef BYTE_CODE_SAFE error ("binding stack not balanced (serious byte compiler bug)"); #else abort (); #endif Since it is deep within the byte code interpreter it is difficult to find what happened to get get the binding stack in that state.