From 7aca07c7aaa703eff39da17a8aecf86bc4d62449 Mon Sep 17 00:00:00 2001 From: Janmejay Singh Date: Fri, 31 Jul 2009 19:15:34 +0530 Subject: fix to emacs not setting correct mini-buffer window size and frame size when started in full-screen mode (with -fs) --- src/gtkutil.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gtkutil.c b/src/gtkutil.c index 3ea7c14..7981f98 100644 --- a/src/gtkutil.c +++ b/src/gtkutil.c @@ -750,7 +750,7 @@ xg_frame_set_char_size (f, cols, rows) We pass 1 for DELAY since we can't run Lisp code inside of a BLOCK_INPUT. */ - change_frame_size (f, rows, cols, 0, 1, 0); + FRAME_PIXEL_WIDTH (f) = pixelwidth; FRAME_PIXEL_HEIGHT (f) = pixelheight; -- 1.5.6.5