From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: storm@cua.dk (Kim F. Storm) Newsgroups: gmane.emacs.devel Subject: Re: jit-lock timer etc. Date: Thu, 24 Aug 2006 15:11:23 +0200 Message-ID: References: <44E9E5F5.8000400@gmx.at> <87fyfpq5wf.fsf@stupidchicken.com> <44EA3222.9050405@gmx.at> <44EC49AD.2080001@gmx.at> <44ED9A3E.3050001@gmx.at> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1156425263 20463 80.91.229.2 (24 Aug 2006 13:14:23 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 24 Aug 2006 13:14:23 +0000 (UTC) Cc: cyd@stupidchicken.com, rms@gnu.org, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Aug 24 15:14:17 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 1GGF1J-0002mV-Dz for ged-emacs-devel@m.gmane.org; Thu, 24 Aug 2006 15:13:17 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GGF1I-0001fd-R7 for ged-emacs-devel@m.gmane.org; Thu, 24 Aug 2006 09:13:16 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GGF15-0001eQ-Kr for emacs-devel@gnu.org; Thu, 24 Aug 2006 09:13:03 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GGF11-0001al-S5 for emacs-devel@gnu.org; Thu, 24 Aug 2006 09:13:02 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GGF11-0001aX-BZ for emacs-devel@gnu.org; Thu, 24 Aug 2006 09:12:59 -0400 Original-Received: from [195.41.46.235] (helo=pfepa.post.tele.dk) by monty-python.gnu.org with esmtp (Exim 4.52) id 1GGF92-0006nx-HW; Thu, 24 Aug 2006 09:21:16 -0400 Original-Received: from kfs-l.imdomain.dk.cua.dk (unknown [80.165.4.124]) by pfepa.post.tele.dk (Postfix) with SMTP id B1F4AFAC07E; Thu, 24 Aug 2006 15:12:38 +0200 (CEST) Original-To: martin rudalics In-Reply-To: (Kim F. Storm's message of "Thu, 24 Aug 2006 15:07:42 +0200") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) 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:58807 Archived-At: storm@cua.dk (Kim F. Storm) writes: > > (let ((idle (current-idle-time))) > (when idle > (run-with-idle-timer (+ idle (max delay 0.1)) > nil #'jit-lock-stealth-fontify))) > make that: (let ((idle (current-idle-time))) (setq jit-lock-stealth-repeat-timer (and (not idle) (run-with-idle-timer (+ idle (max delay 0.1)) nil #'jit-lock-stealth-fontify)))) -- Kim F. Storm http://www.cua.dk