aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-04-02 03:45:07 +0000
committerRichard M. Stallman1997-04-02 03:45:07 +0000
commit61730a69ed9608189d7f5bfdc351ea84a5339b72 (patch)
tree8128b307fb110b963a7dc5368cdefe8e3463b90c /src
parent543f5fb17fe278dfdba4a5a4a1da4d2a5f9612cb (diff)
downloademacs-61730a69ed9608189d7f5bfdc351ea84a5339b72.tar.gz
emacs-61730a69ed9608189d7f5bfdc351ea84a5339b72.zip
(change_frame_size_1): Call Fset_window_buffer,
so that Vwindow_configuration_change_hook gets run.
Diffstat (limited to 'src')
-rw-r--r--src/dispnew.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index 931ad978b73..eb046376144 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -2225,6 +2225,10 @@ change_frame_size_1 (frame, newheight, newwidth, pretend, delay)
2225 calculate_costs (frame); 2225 calculate_costs (frame);
2226 2226
2227 UNBLOCK_INPUT; 2227 UNBLOCK_INPUT;
2228
2229 /* This isn't quite a no-op: it runs window-configuration-change-hook. */
2230 Fset_window_buffer (FRAME_SELECTED_WINDOW (frame),
2231 XWINDOW (FRAME_SELECTED_WINDOW (frame))->buffer);
2228} 2232}
2229 2233
2230DEFUN ("send-string-to-terminal", Fsend_string_to_terminal, 2234DEFUN ("send-string-to-terminal", Fsend_string_to_terminal,