diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-09-22 08:48:16 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-09-22 08:48:16 +0000 |
commit | e681c92a582292396d9a52035df3be614c30ce6f (patch) | |
tree | e838cd211a0db788350ef4f95ad474f753b2860a /src/frame.c | |
parent | 28cbd14d875c739a2d3470782c1ddbe655c58916 (diff) | |
download | emacs-e681c92a582292396d9a52035df3be614c30ce6f.tar.gz |
(Fdelete_frame): Set update_mode_lines.
Diffstat (limited to 'src/frame.c')
-rw-r--r-- | src/frame.c | 3 |
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.") FRAME_KBOARD (f)->Vdefault_minibuffer_frame = Qnil; } + /* Cause frame titles to update--necessary if we now have just one frame. */ + update_mode_lines = 1; + return Qnil; } |