From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: Did window scroll notification change? Date: Mon, 04 Nov 2002 13:05:58 -0500 Sender: emacs-devel-admin@gnu.org Message-ID: References: <87ptto7vqp.fsf@alice.dynodns.net> <874raytlaj.fsf@alice.dynodns.net> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1036434746 21038 80.91.224.249 (4 Nov 2002 18:32:26 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 4 Nov 2002 18:32:26 +0000 (UTC) Cc: emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 188m1O-0005Sq-00 for ; Mon, 04 Nov 2002 19:32:22 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 188m92-0003cy-00 for ; Mon, 04 Nov 2002 19:40:16 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 188m1C-0005wM-00; Mon, 04 Nov 2002 13:32:10 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 188lbv-0006sL-00 for emacs-devel@gnu.org; Mon, 04 Nov 2002 13:06:03 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 188lbq-0006ql-00 for emacs-devel@gnu.org; Mon, 04 Nov 2002 13:06:01 -0500 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by monty-python.gnu.org with esmtp (Exim 4.10) id 188lbq-0006qd-00 for emacs-devel@gnu.org; Mon, 04 Nov 2002 13:05:58 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.10) id 188lbq-0007hn-00; Mon, 04 Nov 2002 13:05:58 -0500 Original-To: johnw@gnu.org In-reply-to: <874raytlaj.fsf@alice.dynodns.net> (message from John Wiegley on Sun, 03 Nov 2002 14:07:00 -0700) Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:9116 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:9116 > `window-scroll-functions' is being called ad infinitum. Emacs > is partially locked, but enough C-g gets me to a point where I can > delete the Eshell buffer. window-scroll-functions is run from C code. You could put a breakpoint at the places that call it, and that way you could debug why it gets called. You could see if it is getting called recursively or in a loop, etc.