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: Mon, 29 May 2006 02:38:26 -0400 Message-ID: References: <85y7wqz896.fsf@lola.goethe.zz> <85verttfr2.fsf@lola.goethe.zz> <85psi0klmx.fsf@lola.goethe.zz> <85bqtik2ua.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 1148884800 8382 80.91.229.2 (29 May 2006 06:40:00 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 29 May 2006 06:40:00 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon May 29 08:39:58 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 1FkbPf-0004yB-F0 for ged-emacs-devel@m.gmane.org; Mon, 29 May 2006 08:39:39 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FkbPe-0007cQ-V9 for ged-emacs-devel@m.gmane.org; Mon, 29 May 2006 02:39:38 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FkbPQ-0007ac-DY for emacs-devel@gnu.org; Mon, 29 May 2006 02:39:24 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FkbPP-0007aJ-OQ for emacs-devel@gnu.org; Mon, 29 May 2006 02:39:24 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FkbPP-0007aF-LN for emacs-devel@gnu.org; Mon, 29 May 2006 02:39:23 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FkbUv-0006Qf-7F for emacs-devel@gnu.org; Mon, 29 May 2006 02:45:05 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1FkbOU-0002yi-EK; Mon, 29 May 2006 02:38:28 -0400 Original-To: David Kastrup In-reply-to: <85bqtik2ua.fsf@lola.goethe.zz> (message from David Kastrup on Sun, 28 May 2006 09:47:41 +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:55405 Archived-At: Thanks. Does this do it? *** dispnew.c 01 May 2006 16:16:58 -0400 1.363 --- dispnew.c 28 May 2006 19:07:02 -0400 *************** *** 356,362 **** static void add_frame_display_history P_ ((struct frame *, int)); static void add_window_display_history P_ ((struct window *, char *, int)); ! /* Add to the redisplay history how window W has been displayed. MSG is a trace containing the information how W's glyph matrix has been constructed. PAUSED_P non-zero means that the update --- 356,363 ---- static void add_frame_display_history P_ ((struct frame *, int)); static void add_window_display_history P_ ((struct window *, char *, int)); ! extern Lisp_Object Vredisplay_dont_pause; ! /* Add to the redisplay history how window W has been displayed. MSG is a trace containing the information how W's glyph matrix has been constructed. PAUSED_P non-zero means that the update *************** *** 6405,6411 **** { swallow_events (display); ! if (detect_input_pending_run_timers (display) || !NILP (Vexecuting_kbd_macro)) return Qnil; if (initial_display) --- 6406,6415 ---- { swallow_events (display); ! if ((detect_input_pending_run_timers (display) ! && NILP (Vredisplay_dont_pause)) ! || !NILP (Vexecuting_kbd_macro)) ! return Qnil; if (initial_display)