aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2001-10-30 16:59:41 +0000
committerGerd Moellmann2001-10-30 16:59:41 +0000
commitcb02fa39d4c489f805c6ebac6e07fd08d0acd4da (patch)
tree779db5a46deb0186e9f38a891181f2453ade32c9 /src
parentf1c69c61835f1251f706a08589c25481449ed9ac (diff)
downloademacs-cb02fa39d4c489f805c6ebac6e07fd08d0acd4da.tar.gz
emacs-cb02fa39d4c489f805c6ebac6e07fd08d0acd4da.zip
(change_frame_size_1): Set frame's resized_p.
Diffstat (limited to 'src')
-rw-r--r--src/dispnew.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index 879f2cafbef..f5324b10818 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -5973,8 +5973,9 @@ change_frame_size_1 (f, newheight, newwidth, pretend, delay, safe)
5973 } 5973 }
5974 5974
5975 adjust_glyphs (f); 5975 adjust_glyphs (f);
5976 SET_FRAME_GARBAGED (f);
5977 calculate_costs (f); 5976 calculate_costs (f);
5977 SET_FRAME_GARBAGED (f);
5978 f->resized_p = 1;
5978 5979
5979 UNBLOCK_INPUT; 5980 UNBLOCK_INPUT;
5980 5981