From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Adrian Robert Newsgroups: gmane.emacs.devel Subject: Re: Pretest next week Date: Tue, 27 Jan 2009 12:57:00 +0000 (UTC) Message-ID: References: <87y6x4ue2u.fsf@cyd.mit.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1233061084 11650 80.91.229.12 (27 Jan 2009 12:58:04 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 27 Jan 2009 12:58:04 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jan 27 13:59:17 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1LRnWg-0002OQ-15 for ged-emacs-devel@m.gmane.org; Tue, 27 Jan 2009 13:58:46 +0100 Original-Received: from localhost ([127.0.0.1]:54394 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LRnVO-0005cv-3C for ged-emacs-devel@m.gmane.org; Tue, 27 Jan 2009 07:57:26 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LRnVI-0005cc-Qd for emacs-devel@gnu.org; Tue, 27 Jan 2009 07:57:20 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LRnVG-0005cK-QP for emacs-devel@gnu.org; Tue, 27 Jan 2009 07:57:19 -0500 Original-Received: from [199.232.76.173] (port=48679 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LRnVG-0005cE-N7 for emacs-devel@gnu.org; Tue, 27 Jan 2009 07:57:18 -0500 Original-Received: from main.gmane.org ([80.91.229.2]:57033 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LRnVG-0004hQ-96 for emacs-devel@gnu.org; Tue, 27 Jan 2009 07:57:18 -0500 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1LRnV9-0002FT-Fs for emacs-devel@gnu.org; Tue, 27 Jan 2009 12:57:11 +0000 Original-Received: from i062169.gprs.dnafinland.fi ([87.95.62.169]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 27 Jan 2009 12:57:11 +0000 Original-Received: from Adrian.B.Robert by i062169.gprs.dnafinland.fi with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 27 Jan 2009 12:57:11 +0000 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 23 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: main.gmane.org User-Agent: Loom/3.14 (http://gmane.org/) X-Loom-IP: 87.95.62.169 (Opera/9.63 (Macintosh; Intel Mac OS X; U; en) Presto/2.1.1) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) 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: news.gmane.org gmane.emacs.devel:108296 Archived-At: YAMAMOTO Mitsuharu math.s.chiba-u.ac.jp> writes: > > What is "improper" in how C-g is handled on Cocoa? > > It makes almost all uses of QUIT macro throughout the source code > meaningless. Hi, Do you have any technical suggestions as to how to handle it given that SIGIO seems not to be available? As I posted, polling (keyboard.c start_polling(), stop_polling(), etc.) seems not to happen through the QUIT macro (perhaps it did at one time but the functionality was lost after all terms went to SIGIO-based?). One thing that would work would be to update the polling timer inside the QUIT macro (under HAVE_NS of course), so that poll_for_input() would eventually get called. But I don't know if there are reasons this would be dangerous or something, or if there would be another way. thanks, Adrian