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: OS X: C-g does not break out of infinite loop Date: Thu, 15 Jul 2004 09:17:36 -0400 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: References: <20040714165448.15308.qmail@web53001.mail.yahoo.com> Reply-To: rms@gnu.org NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1089897535 32466 80.91.224.253 (15 Jul 2004 13:18:55 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 15 Jul 2004 13:18:55 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Thu Jul 15 15:18:48 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1Bl68N-0005Dd-00 for ; Thu, 15 Jul 2004 15:18:47 +0200 Original-Received: from lists.gnu.org ([199.232.76.165]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1Bl68N-0005ZR-00 for ; Thu, 15 Jul 2004 15:18:47 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1Bl6Ar-0000HH-34 for emacs-devel@quimby.gnus.org; Thu, 15 Jul 2004 09:21:21 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1Bl6AN-0008Uo-Ap for emacs-devel@gnu.org; Thu, 15 Jul 2004 09:20:51 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1Bl6AK-0008TX-LV for emacs-devel@gnu.org; Thu, 15 Jul 2004 09:20:49 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1Bl6AK-0008Rs-7d for emacs-devel@gnu.org; Thu, 15 Jul 2004 09:20:48 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Bl67E-0000YN-DP for emacs-devel@gnu.org; Thu, 15 Jul 2004 09:17:36 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1Bl67E-0002yh-26; Thu, 15 Jul 2004 09:17:36 -0400 Original-To: John Owens In-reply-to: <20040714165448.15308.qmail@web53001.mail.yahoo.com> (message from John Owens on Wed, 14 Jul 2004 09:54:48 -0700 (PDT)) 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: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:25720 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:25720 with Yoichi's response (together with a test case that I can reproduce: C-g on OS X cannot recover from evaling any of the following three: 1. (condition-case nil (while 1) (error (error "catch error")) (quit (error "catch quit"))) 2. (condition-case nil (while 1) (error (error "catch error"))) 3. (while 1) It sounds like the mechanism for detecting C-g may need a redesign. Is there any Lisp program you can successfully interrupt with C-g?