From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: a bug of read-passwd Date: Mon, 24 Jul 2006 09:22:09 -0400 Message-ID: References: <877j2etda5.fsf@stupidchicken.com> <20060719.094900.73654343.kazu@iij.ad.jp> <20060721.095708.119557783.kazu@iij.ad.jp> <874pxau66i.fsf@stupidchicken.com> <87vepn61s4.fsf@stupidchicken.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1153747369 13886 80.91.229.2 (24 Jul 2006 13:22:49 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 24 Jul 2006 13:22:49 +0000 (UTC) Cc: rms@gnu.org, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jul 24 15:22:46 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1G50OJ-00007A-7R for ged-emacs-devel@m.gmane.org; Mon, 24 Jul 2006 15:22:35 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1G50OI-0004QV-ML for ged-emacs-devel@m.gmane.org; Mon, 24 Jul 2006 09:22:34 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1G50O4-0004Q4-VW for emacs-devel@gnu.org; Mon, 24 Jul 2006 09:22:21 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1G50O3-0004Ny-DF for emacs-devel@gnu.org; Mon, 24 Jul 2006 09:22:20 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1G50O3-0004Ns-3j for emacs-devel@gnu.org; Mon, 24 Jul 2006 09:22:19 -0400 Original-Received: from [132.204.24.67] (helo=mercure.iro.umontreal.ca) by monty-python.gnu.org with esmtp (Exim 4.52) id 1G50P7-0000ME-Ft; Mon, 24 Jul 2006 09:23:25 -0400 Original-Received: from hidalgo.iro.umontreal.ca (hidalgo.iro.umontreal.ca [132.204.27.50]) by mercure.iro.umontreal.ca (Postfix) with ESMTP id 8A0B62CEB7A; Mon, 24 Jul 2006 09:22:16 -0400 (EDT) Original-Received: from faina.iro.umontreal.ca (faina.iro.umontreal.ca [132.204.26.177]) by hidalgo.iro.umontreal.ca (Postfix) with ESMTP id 3E5B8452B; Mon, 24 Jul 2006 09:22:09 -0400 (EDT) Original-Received: by faina.iro.umontreal.ca (Postfix, from userid 20848) id 210514C6DEA; Mon, 24 Jul 2006 09:22:09 -0400 (EDT) Original-To: Chong Yidong In-Reply-To: <87vepn61s4.fsf@stupidchicken.com> (Chong Yidong's message of "Mon, 24 Jul 2006 00:54:19 -0400") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) X-DIRO-MailScanner-Information: Please contact the ISP for more information X-DIRO-MailScanner: Found to be clean X-DIRO-MailScanner-SpamCheck: n'est pas un polluriel, SpamAssassin (score=-2.82, requis 5, autolearn=not spam, ALL_TRUSTED -2.82) X-DIRO-MailScanner-From: monnier@iro.umontreal.ca 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:57532 Archived-At: > Another possibility is to implement a `inhibit-timers' variable and > set it to t by default inside filter functions (similar to how > `inhibit-quit' is bound to t in filter functions.) This is probably > easier to implement. What do you think? I think it's a good idea, although let-binding timer-list (and timer-idle-list) to nil might be even better since it'd still allow filter functions to use timers. BTW, something similar would be useful for edebug, when debugging repeated timers. Stefan