From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Drew Adams" Newsgroups: gmane.emacs.devel Subject: RE: Timer scheduling and cancel-timer Date: Sun, 20 Jan 2013 13:04:36 -0800 Message-ID: <0C917BD4690341A181CF2BE23E754FC7@us.oracle.com> References: <20130121005802.c7383f4994ead287e738f96f@cx4a.org> <50FC43DB.6070505@cs.ucla.edu> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1358715907 24454 80.91.229.3 (20 Jan 2013 21:05:07 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 20 Jan 2013 21:05:07 +0000 (UTC) Cc: emacs-devel@gnu.org To: "'Paul Eggert'" , "'Tomohiro Matsuyama'" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jan 20 22:05:25 2013 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 1Tx24t-0003gy-2O for ged-emacs-devel@m.gmane.org; Sun, 20 Jan 2013 22:05:19 +0100 Original-Received: from localhost ([::1]:56217 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tx24b-0003w8-RH for ged-emacs-devel@m.gmane.org; Sun, 20 Jan 2013 16:05:01 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:46217) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tx24Y-0003vS-U7 for emacs-devel@gnu.org; Sun, 20 Jan 2013 16:05:00 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tx24X-0006Hd-Ol for emacs-devel@gnu.org; Sun, 20 Jan 2013 16:04:58 -0500 Original-Received: from aserp1040.oracle.com ([141.146.126.69]:34410) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tx24X-0006Gf-IR for emacs-devel@gnu.org; Sun, 20 Jan 2013 16:04:57 -0500 Original-Received: from acsinet21.oracle.com (acsinet21.oracle.com [141.146.126.237]) by aserp1040.oracle.com (Sentrion-MTA-4.2.2/Sentrion-MTA-4.2.2) with ESMTP id r0KL4k1Y024777 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Sun, 20 Jan 2013 21:04:47 GMT Original-Received: from acsmt357.oracle.com (acsmt357.oracle.com [141.146.40.157]) by acsinet21.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id r0KL4jhU010944 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 20 Jan 2013 21:04:46 GMT Original-Received: from abhmt116.oracle.com (abhmt116.oracle.com [141.146.116.68]) by acsmt357.oracle.com (8.12.11.20060308/8.12.11) with ESMTP id r0KL4jYR024873; Sun, 20 Jan 2013 15:04:45 -0600 Original-Received: from dradamslap1 (/71.202.147.44) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Sun, 20 Jan 2013 13:04:45 -0800 X-Mailer: Microsoft Office Outlook 11 In-Reply-To: <50FC43DB.6070505@cs.ucla.edu> Thread-Index: Ac33Q3rgRHfom7QaRN2mKMZDo1AKZAADYszg X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 X-Source-IP: acsinet21.oracle.com [141.146.126.237] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-Received-From: 141.146.126.69 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:156509 Archived-At: I have no idea whether this is relevant, but I'll mention it, as it might be. I have used Francis Wright's library `dired-sort-menu.el' for years. Yesterday, with a build from 2013-01-18, I somehow got in a situation where this kept happening: Debugger entered--Lisp error: (wrong-type-argument integer-or-marker-p t) #[nil ... ad-Advice-show-paren-function(#[nil... show-paren-function() apply(show-paren-function nil) #[nil ... [timer apply 5 6] 4]() timer-event-handler([t 0 0 125000 t show-paren-function nil idle 0]) It happened over and over and over: as soon as I quit the debugger it popped up again. `dired-sort-menu.el' has this defadvice, which is apparently the one involved here: (defadvice show-paren-function (around show-paren-function-advice activate) "Do not show matching parens in a dired sort dialogue buffer." (or (dired-sort-dialogue-buffer-p (buffer-name)) ad-do-it)) I was able to quit the Emacs session, and I have not seen the problem since, even with the same build. Again, dunno whether this is related to your discussion. Ignore if not.