aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
authorXue Fuqiao2013-08-04 10:59:08 +0800
committerXue Fuqiao2013-08-04 10:59:08 +0800
commit99191b89ff64172740add88e67f163619a07830c (patch)
tree828d1ac7c917076703b9d4a3746ff7480bd97f0d /src/window.c
parentab419665caa6e2ad7465cf59ef902cc4ad1d2117 (diff)
parent2ad0a067728ccc7f8b32b0c3db1677ca351943fe (diff)
downloademacs-99191b89ff64172740add88e67f163619a07830c.tar.gz
emacs-99191b89ff64172740add88e67f163619a07830c.zip
Merge from mainline.
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window.c b/src/window.c
index 6fd6849c6c3..1b288368884 100644
--- a/src/window.c
+++ b/src/window.c
@@ -3019,7 +3019,7 @@ replace_buffer_in_windows_safely (Lisp_Object buffer)
3019 minimum allowable size. */ 3019 minimum allowable size. */
3020 3020
3021void 3021void
3022check_frame_size (FRAME_PTR frame, int *rows, int *cols) 3022check_frame_size (struct frame *frame, int *rows, int *cols)
3023{ 3023{
3024 /* For height, we have to see: 3024 /* For height, we have to see:
3025 how many windows the frame has at minimum (one or two), 3025 how many windows the frame has at minimum (one or two),
@@ -5516,7 +5516,7 @@ the return value is nil. Otherwise the value is t. */)
5516 struct Lisp_Vector *saved_windows; 5516 struct Lisp_Vector *saved_windows;
5517 Lisp_Object new_current_buffer; 5517 Lisp_Object new_current_buffer;
5518 Lisp_Object frame; 5518 Lisp_Object frame;
5519 FRAME_PTR f; 5519 struct frame *f;
5520 ptrdiff_t old_point = -1; 5520 ptrdiff_t old_point = -1;
5521 5521
5522 CHECK_WINDOW_CONFIGURATION (configuration); 5522 CHECK_WINDOW_CONFIGURATION (configuration);