# HG changeset patch # User Jim Blandy # Date 720510222 0 # Node ID 86202f01266d46ab10d74d8921e81873a7337054 # Parent a7f8a1fe258e96128466ad836b49d3da3191e77c * 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. diff -r a7f8a1fe258e -r 86202f01266d src/xterm.h --- 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;