Mercurial > emacs
changeset 8826:9f5965fe4f6b
(struct frame, selected_frame, last_nonminibuf_frame): Use EMACS_INT.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 17 Sep 1994 00:32:14 +0000 |
parents | 5e5f6d06fb5b |
children | 97bf951c0b98 |
files | src/frame.h |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- 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