diff options
| author | Richard M. Stallman | 1994-09-17 00:32:14 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-09-17 00:32:14 +0000 |
| commit | 0c38c2f9e01078ef2f29f9bdcf5e92c515117974 (patch) | |
| tree | 96c5f72991b832e402fd480a2aef0d252fe80383 /src | |
| parent | 7936dcdb52c80a17bcea55d49a5fc160e5a3bf07 (diff) | |
| download | emacs-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.h | 10 |
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 | ||
| 42 | struct frame | 42 | struct 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. */ |
| 382 | extern struct frame the_only_frame; | 382 | extern struct frame the_only_frame; |
| 383 | 383 | ||
| 384 | extern int selected_frame; | 384 | extern EMACS_INT selected_frame; |
| 385 | extern int last_nonminibuf_frame; | 385 | extern 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 |