From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: redisplay-dont-pause does not work Date: Fri, 26 May 2006 23:36:26 -0400 Message-ID: References: <85y7wqz896.fsf@lola.goethe.zz> <85verttfr2.fsf@lola.goethe.zz> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1148701010 15869 80.91.229.2 (27 May 2006 03:36:50 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 27 May 2006 03:36:50 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat May 27 05:36:48 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 1FjpbV-0003RD-PN for ged-emacs-devel@m.gmane.org; Sat, 27 May 2006 05:36:42 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FjpbV-00061e-Ak for ged-emacs-devel@m.gmane.org; Fri, 26 May 2006 23:36:41 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FjpbJ-00061N-6z for emacs-devel@gnu.org; Fri, 26 May 2006 23:36:29 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FjpbH-00061B-Sg for emacs-devel@gnu.org; Fri, 26 May 2006 23:36:27 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FjpbH-000618-O7 for emacs-devel@gnu.org; Fri, 26 May 2006 23:36:27 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FjpgJ-00080V-O6 for emacs-devel@gnu.org; Fri, 26 May 2006 23:41:39 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1FjpbG-0008SJ-Sv; Fri, 26 May 2006 23:36:26 -0400 Original-To: David Kastrup In-reply-to: <85verttfr2.fsf@lola.goethe.zz> (message from David Kastrup on Fri, 26 May 2006 09:19:29 +0200) 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:55346 Archived-At: You can request a display update, but only if no input is pending, with @code{(sit-for 0)}. To force a display update even when input is pending, do this: @example (let ((redisplay-dont-pause t)) (sit-for 0)) @end example Yes, I see a contradiction here. Setting `redisplay-dont-pause' does not have the declared effect, to wit "to force a display update even when input is pending". I think that text in the manual is mistaken. `redisplay-dont-pause' only affects redisplay itself. It has no effect on sit-for, which isn't (strictly speaking) redisplay. We could change the code, or change the manual. I am not sure which is better.