Mercurial > emacs
changeset 1531:86202f01266d
* xterm.h (x_screen_count, x_release, x_screen_height,
x_screen_height_mm, x_screen_width, x_screen_width_mm,
x_save_under, x_screen_planes): Declare this as ints, to match
their definitions in xterm.c.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Sat, 31 Oct 1992 05:43:42 +0000 |
parents | a7f8a1fe258e |
children | 50af75dfa70a |
files | src/xterm.h |
diffstat | 1 files changed, 8 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xterm.h Sat Oct 31 05:43:00 1992 +0000 +++ b/src/xterm.h Sat Oct 31 05:43:42 1992 +0000 @@ -201,34 +201,34 @@ /* Variables associated with the X display screen this emacs is using. */ /* How many screens this X display has. */ -extern Lisp_Object x_screen_count; +extern int x_screen_count; /* The vendor supporting this X server. */ extern Lisp_Object Vx_vendor; /* The vendor's release number for this X server. */ -extern Lisp_Object x_release; +extern int x_release; /* Height of this X screen in pixels. */ -extern Lisp_Object x_screen_height; +extern int x_screen_height; /* Height of this X screen in millimeters. */ -extern Lisp_Object x_screen_height_mm; +extern int x_screen_height_mm; /* Width of this X screen in pixels. */ -extern Lisp_Object x_screen_width; +extern int x_screen_width; /* Width of this X screen in millimeters. */ -extern Lisp_Object x_screen_width_mm; +extern int x_screen_width_mm; /* Does this X screen do backing store? */ extern Lisp_Object Vx_backing_store; /* Does this X screen do save-unders? */ -extern Lisp_Object x_save_under; +extern int x_save_under; /* Number of planes for this screen. */ -extern Lisp_Object x_screen_planes; +extern int x_screen_planes; /* X Visual type of this screen. */ extern Lisp_Object Vx_screen_visual;