aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-09-17 00:32:14 +0000
committerRichard M. Stallman1994-09-17 00:32:14 +0000
commit0c38c2f9e01078ef2f29f9bdcf5e92c515117974 (patch)
tree96c5f72991b832e402fd480a2aef0d252fe80383 /src
parent7936dcdb52c80a17bcea55d49a5fc160e5a3bf07 (diff)
downloademacs-0c38c2f9e01078ef2f29f9bdcf5e92c515117974.tar.gz
emacs-0c38c2f9e01078ef2f29f9bdcf5e92c515117974.zip
(struct frame, selected_frame, last_nonminibuf_frame): Use EMACS_INT.
Diffstat (limited to 'src')
-rw-r--r--src/frame.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/frame.h b/src/frame.h
index 4c29c839897..d8e11ec76f6 100644
--- a/src/frame.h
+++ b/src/frame.h
@@ -41,7 +41,7 @@ enum output_method
41 41
42struct frame 42struct frame
43{ 43{
44 int size; 44 EMACS_INT size;
45 struct Lisp_Vector *next; 45 struct Lisp_Vector *next;
46 46
47 /* glyphs as they appear on the frame */ 47 /* glyphs as they appear on the frame */
@@ -78,8 +78,8 @@ struct frame
78 GLYPH phys_cursor_glyph; 78 GLYPH phys_cursor_glyph;
79 79
80 /* Size of this frame, in units of characters. */ 80 /* Size of this frame, in units of characters. */
81 int height; 81 EMACS_INT height;
82 int width; 82 EMACS_INT width;
83 83
84 /* New height and width for pending size change. 0 if no change pending. */ 84 /* New height and width for pending size change. 0 if no change pending. */
85 int new_height, new_width; 85 int new_height, new_width;
@@ -381,8 +381,8 @@ extern Lisp_Object Vterminal_frame;
381 element explicitly. */ 381 element explicitly. */
382extern struct frame the_only_frame; 382extern struct frame the_only_frame;
383 383
384extern int selected_frame; 384extern EMACS_INT selected_frame;
385extern int last_nonminibuf_frame; 385extern EMACS_INT last_nonminibuf_frame;
386 386
387#define XFRAME(f) selected_frame 387#define XFRAME(f) selected_frame
388#define WINDOW_FRAME(w) selected_frame 388#define WINDOW_FRAME(w) selected_frame