# HG changeset patch # User Richard M. Stallman # Date 779761934 0 # Node ID 9f5965fe4f6bee12bfb29377fbafb8520a3a355d # Parent 5e5f6d06fb5b65c73cfc31d78e7f7506bb8fbd76 (struct frame, selected_frame, last_nonminibuf_frame): Use EMACS_INT. diff -r 5e5f6d06fb5b -r 9f5965fe4f6b src/frame.h --- a/src/frame.h Sat Sep 17 00:31:05 1994 +0000 +++ b/src/frame.h Sat Sep 17 00:32:14 1994 +0000 @@ -41,7 +41,7 @@ struct frame { - int size; + EMACS_INT size; struct Lisp_Vector *next; /* glyphs as they appear on the frame */ @@ -78,8 +78,8 @@ GLYPH phys_cursor_glyph; /* Size of this frame, in units of characters. */ - int height; - int width; + EMACS_INT height; + EMACS_INT width; /* New height and width for pending size change. 0 if no change pending. */ int new_height, new_width; @@ -381,8 +381,8 @@ element explicitly. */ extern struct frame the_only_frame; -extern int selected_frame; -extern int last_nonminibuf_frame; +extern EMACS_INT selected_frame; +extern EMACS_INT last_nonminibuf_frame; #define XFRAME(f) selected_frame #define WINDOW_FRAME(w) selected_frame