# HG changeset patch # User Andrew Innes # Date 978730000 0 # Node ID bc80b0ab163028980568a6e7fac6e312466ba3f8 # Parent b876bd6bde9ec7e5e7506b9d71e312c38980c1cd (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. diff -r b876bd6bde9e -r bc80b0ab1630 src/term.c --- 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;