aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1996-07-16 06:17:37 +0000
committerKarl Heuer1996-07-16 06:17:37 +0000
commitf5ccc0ccc96fe2fcd1f08ee6ca6301993e755163 (patch)
tree03fe40c2a3e350ba82a90b3a26c25e7ae8bbb2a3 /src
parent8805890a4131c88e6171962e7e73b634b7e5527e (diff)
downloademacs-f5ccc0ccc96fe2fcd1f08ee6ca6301993e755163.tar.gz
emacs-f5ccc0ccc96fe2fcd1f08ee6ca6301993e755163.zip
(struct save_window_data, struct saved_window): First
placeholder member is EMACS_INT, not int.
Diffstat (limited to 'src')
-rw-r--r--src/window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window.c b/src/window.c
index 6d635a5d587..1605203e70d 100644
--- a/src/window.c
+++ b/src/window.c
@@ -2991,7 +2991,7 @@ negative means relative to bottom of window.")
2991 2991
2992struct save_window_data 2992struct save_window_data
2993 { 2993 {
2994 int size_from_Lisp_Vector_struct; 2994 EMACS_INT size_from_Lisp_Vector_struct;
2995 struct Lisp_Vector *next_from_Lisp_Vector_struct; 2995 struct Lisp_Vector *next_from_Lisp_Vector_struct;
2996 Lisp_Object frame_width, frame_height, frame_menu_bar_lines; 2996 Lisp_Object frame_width, frame_height, frame_menu_bar_lines;
2997 Lisp_Object selected_frame; 2997 Lisp_Object selected_frame;
@@ -3011,7 +3011,7 @@ struct save_window_data
3011struct saved_window 3011struct saved_window
3012 { 3012 {
3013 /* these first two must agree with struct Lisp_Vector in lisp.h */ 3013 /* these first two must agree with struct Lisp_Vector in lisp.h */
3014 int size_from_Lisp_Vector_struct; 3014 EMACS_INT size_from_Lisp_Vector_struct;
3015 struct Lisp_Vector *next_from_Lisp_Vector_struct; 3015 struct Lisp_Vector *next_from_Lisp_Vector_struct;
3016 3016
3017 Lisp_Object window; 3017 Lisp_Object window;