1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-12 22:40:46 -08:00

(struct save_window_data, struct saved_window): First

placeholder member is EMACS_INT, not int.
This commit is contained in:
Karl Heuer 1996-07-16 06:17:37 +00:00
parent 8805890a41
commit f5ccc0ccc9

View file

@ -2991,7 +2991,7 @@ negative means relative to bottom of window.")
struct save_window_data
{
int size_from_Lisp_Vector_struct;
EMACS_INT size_from_Lisp_Vector_struct;
struct Lisp_Vector *next_from_Lisp_Vector_struct;
Lisp_Object frame_width, frame_height, frame_menu_bar_lines;
Lisp_Object selected_frame;
@ -3011,7 +3011,7 @@ struct save_window_data
struct saved_window
{
/* these first two must agree with struct Lisp_Vector in lisp.h */
int size_from_Lisp_Vector_struct;
EMACS_INT size_from_Lisp_Vector_struct;
struct Lisp_Vector *next_from_Lisp_Vector_struct;
Lisp_Object window;