aboutsummaryrefslogtreecommitdiffstats
path: root/src/term.c
diff options
context:
space:
mode:
authorRichard M. Stallman1994-01-21 00:09:47 +0000
committerRichard M. Stallman1994-01-21 00:09:47 +0000
commit7a8e3e302475ca29a3a86f473efd7c3dd0e37cfa (patch)
treea4baa8cf935a60fef144cb4c25c8d87167698e0a /src/term.c
parent6e710ae59134aa8c6d31b4069301224818504dde (diff)
downloademacs-7a8e3e302475ca29a3a86f473efd7c3dd0e37cfa.tar.gz
emacs-7a8e3e302475ca29a3a86f473efd7c3dd0e37cfa.zip
(update_end): Clear updating_frame before calling hook.
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c
index e8599ee9b90..50651a64c78 100644
--- a/src/term.c
+++ b/src/term.c
@@ -338,8 +338,8 @@ update_end (f)
338{ 338{
339 if (! FRAME_TERMCAP_P (updating_frame)) 339 if (! FRAME_TERMCAP_P (updating_frame))
340 { 340 {
341 (*update_end_hook) (f);
342 updating_frame = 0; 341 updating_frame = 0;
342 (*update_end_hook) (f);
343 return; 343 return;
344 } 344 }
345 turn_off_insert (); 345 turn_off_insert ();