aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1996-09-22 08:48:16 +0000
committerRichard M. Stallman1996-09-22 08:48:16 +0000
commite681c92a582292396d9a52035df3be614c30ce6f (patch)
treee838cd211a0db788350ef4f95ad474f753b2860a /src
parent28cbd14d875c739a2d3470782c1ddbe655c58916 (diff)
downloademacs-e681c92a582292396d9a52035df3be614c30ce6f.tar.gz
emacs-e681c92a582292396d9a52035df3be614c30ce6f.zip
(Fdelete_frame): Set update_mode_lines.
Diffstat (limited to 'src')
-rw-r--r--src/frame.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/frame.c b/src/frame.c
index b4a29eb3045..a68aed314d0 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -1246,6 +1246,9 @@ but if the second optional argument FORCE is non-nil, you may do so.")
1246 FRAME_KBOARD (f)->Vdefault_minibuffer_frame = Qnil; 1246 FRAME_KBOARD (f)->Vdefault_minibuffer_frame = Qnil;
1247 } 1247 }
1248 1248
1249 /* Cause frame titles to update--necessary if we now have just one frame. */
1250 update_mode_lines = 1;
1251
1249 return Qnil; 1252 return Qnil;
1250} 1253}
1251 1254