From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Recent keyboard changes breaks quitting Date: Sat, 22 Sep 2012 21:56:15 +0300 Message-ID: <833929lwds.fsf@gnu.org> References: <87lig22jrr.fsf@gnu.org> <837grmkpfa.fsf@gnu.org> <87lig2vusz.fsf@gnu.org> <87wqzm9d0c.fsf@gnu.org> Reply-To: Eli Zaretskii NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1348340200 14272 80.91.229.3 (22 Sep 2012 18:56:40 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 22 Sep 2012 18:56:40 +0000 (UTC) Cc: emacs-devel@gnu.org To: Chong Yidong Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Sep 22 20:56:43 2012 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TFUsY-00037R-EL for ged-emacs-devel@m.gmane.org; Sat, 22 Sep 2012 20:56:38 +0200 Original-Received: from localhost ([::1]:58441 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TFUsT-0004cP-Ns for ged-emacs-devel@m.gmane.org; Sat, 22 Sep 2012 14:56:33 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:34706) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TFUsR-0004c1-3v for emacs-devel@gnu.org; Sat, 22 Sep 2012 14:56:31 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TFUsQ-00013s-CU for emacs-devel@gnu.org; Sat, 22 Sep 2012 14:56:31 -0400 Original-Received: from mtaout21.012.net.il ([80.179.55.169]:65250) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TFUsO-00013X-Ua; Sat, 22 Sep 2012 14:56:29 -0400 Original-Received: from conversion-daemon.a-mtaout21.012.net.il by a-mtaout21.012.net.il (HyperSendmail v2007.08) id <0MAR00F00LVUWE00@a-mtaout21.012.net.il>; Sat, 22 Sep 2012 21:56:27 +0300 (IDT) Original-Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout21.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MAR00FJVLY2WD00@a-mtaout21.012.net.il>; Sat, 22 Sep 2012 21:56:26 +0300 (IDT) In-reply-to: <87wqzm9d0c.fsf@gnu.org> X-012-Sender: halo1@inter.net.il X-detected-operating-system: by eggs.gnu.org: Solaris 10 (beta) X-Received-From: 80.179.55.169 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:153469 Archived-At: > From: Chong Yidong > Cc: emacs-devel@gnu.org > Date: Sun, 23 Sep 2012 01:35:31 +0800 > > Interestingly, the bug disappears if I remove Fcopy_sequence from > > idle_timers = Fcopy_sequence (Vtimer_idle_list); > > in timer_check, and make no other changes, including keeping the > Fcopy_sequence for Vtimer_list two lines above. That's what I suspected. (These calls to Fcopy_sequence is the only real change in my commit, all the rest is just decorations and consequences.) A stab in the dark: does it help to BLOCK_INPUT around the call to Fcopy_sequence? If that doesn't help, I'd appreciate any pointers to where we switch away from the minibuffer window following a C-g.