changeset 35091:bc80b0ab1630

(update_end): Don't check updating_frame; for some reason this can be 0 sometimes, such as after dismissing a popup menu, and isn't necessary given the explicit frame argument.
author Andrew Innes <andrewi@gnu.org>
date Fri, 05 Jan 2001 21:26:40 +0000
parents b876bd6bde9e
children 2441bc31cd7c
files src/term.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/term.c	Fri Jan 05 16:56:21 2001 +0000
+++ b/src/term.c	Fri Jan 05 21:26:40 2001 +0000
@@ -507,7 +507,7 @@
 update_end (f)
      FRAME_PTR f;
 {
-  if (! FRAME_TERMCAP_P (updating_frame))
+  if (! FRAME_TERMCAP_P (f))
     {
       (*update_end_hook) (f);
       updating_frame = 0;