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: Network security manager Date: Tue, 18 Nov 2014 21:09:04 -0500 Message-ID: References: <87sihg7r73.fsf@alrua-karlstad.karlstad.toke.dk> <87a93oilxl.fsf@lifelogs.com> <87oas4h555.fsf@lifelogs.com> <87a93oh180.fsf@lifelogs.com> <83h9xw9zg3.fsf@gnu.org> <83d28k9yb9.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1416362977 29190 80.91.229.3 (19 Nov 2014 02:09:37 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 19 Nov 2014 02:09:37 +0000 (UTC) Cc: Eli Zaretskii , emacs-devel@gnu.org To: Lars Magne Ingebrigtsen Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Nov 19 03:09:28 2014 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 1Xquhy-0002BV-NU for ged-emacs-devel@m.gmane.org; Wed, 19 Nov 2014 03:09:26 +0100 Original-Received: from localhost ([::1]:56194 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xquhy-0004yd-6c for ged-emacs-devel@m.gmane.org; Tue, 18 Nov 2014 21:09:26 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:36373) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xquhn-0004xN-Br for emacs-devel@gnu.org; Tue, 18 Nov 2014 21:09:23 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xquhf-0002Fz-SO for emacs-devel@gnu.org; Tue, 18 Nov 2014 21:09:15 -0500 Original-Received: from chene.dit.umontreal.ca ([132.204.246.20]:60409) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xquhf-0002Fq-Nw; Tue, 18 Nov 2014 21:09:07 -0500 Original-Received: from pastel.home (lechon.iro.umontreal.ca [132.204.27.242]) by chene.dit.umontreal.ca (8.14.1/8.14.1) with ESMTP id sAJ294qn007228; Tue, 18 Nov 2014 21:09:05 -0500 Original-Received: by pastel.home (Postfix, from userid 20848) id 90AD6987C; Tue, 18 Nov 2014 21:09:04 -0500 (EST) In-Reply-To: (Lars Magne Ingebrigtsen's message of "Tue, 18 Nov 2014 21:51:13 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) X-NAI-Spam-Flag: NO X-NAI-Spam-Threshold: 5 X-NAI-Spam-Score: 0 X-NAI-Spam-Rules: 1 Rules triggered RV5129=0 X-NAI-Spam-Version: 2.3.0.9393 : core <5129> : inlines <1539> : streams <1344865> : uri <1835234> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 132.204.246.20 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:177701 Archived-At: > I also did some further testing with my patch, and apparently timers do > not set the running_asynch_code variable? They probably should set > that separate variable, too. I think. BTW, another existing variable that you could use is `inhibit-quit'. Usually, async code is run with inhibit-quit bound to a non-nil value, because we don't want the user's C-g to interrupt the async code (which the user didn't even know was running) when she intended to just get out of the minibuffer. Stefan