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 22:27:55 +0300 Message-ID: <83y5k1kgck.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 1348342096 27725 80.91.229.3 (22 Sep 2012 19:28:16 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 22 Sep 2012 19:28:16 +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 21:28:21 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 1TFVNE-0007Ia-Bu for ged-emacs-devel@m.gmane.org; Sat, 22 Sep 2012 21:28:20 +0200 Original-Received: from localhost ([::1]:35996 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TFVN9-0001va-PD for ged-emacs-devel@m.gmane.org; Sat, 22 Sep 2012 15:28:15 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:36222) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TFVN6-0001qG-MB for emacs-devel@gnu.org; Sat, 22 Sep 2012 15:28:13 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TFVN5-000322-5o for emacs-devel@gnu.org; Sat, 22 Sep 2012 15:28:11 -0400 Original-Received: from mtaout20.012.net.il ([80.179.55.166]:45984) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TFVN1-00030B-H4; Sat, 22 Sep 2012 15:28:07 -0400 Original-Received: from conversion-daemon.a-mtaout20.012.net.il by a-mtaout20.012.net.il (HyperSendmail v2007.08) id <0MAR00000NDTSP00@a-mtaout20.012.net.il>; Sat, 22 Sep 2012 22:28:06 +0300 (IDT) Original-Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout20.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MAR00051NETJS30@a-mtaout20.012.net.il>; Sat, 22 Sep 2012 22:28:06 +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.166 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:153473 Archived-At: > From: Chong Yidong > Date: Sun, 23 Sep 2012 01:35:31 +0800 > Cc: emacs-devel@gnu.org > > Interestingly, the bug disappears if I remove Fcopy_sequence from > > idle_timers = Fcopy_sequence (Vtimer_idle_list); Is it possible that the call to timer-event-handler, which modifies the timer (via cancel-timer-internal) and the timer list, interacts badly with the copied timer list, because Fcopy_alist doesn't copy the list elements? If so, perhaps making a deep copy of the list will fix the problem?