diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2008-09-18 18:09:45 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2008-09-18 18:09:45 +0000 |
commit | 9edd3e481cdb3048e8a9a160543c2b768f752dbf (patch) | |
tree | e7373a86c858985a376cb1eddf5d032623eb6513 /src/xterm.h | |
parent | 89d9800051690014d4b2099451f84579b246c001 (diff) | |
download | emacs-9edd3e481cdb3048e8a9a160543c2b768f752dbf.tar.gz emacs-9edd3e481cdb3048e8a9a160543c2b768f752dbf.tar.bz2 emacs-9edd3e481cdb3048e8a9a160543c2b768f752dbf.zip |
(x_display_info): Remove `height' and `width' members.
Diffstat (limited to 'src/xterm.h')
-rw-r--r-- | src/xterm.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/xterm.h b/src/xterm.h index 36438834020..3f437b86e97 100644 --- a/src/xterm.h +++ b/src/xterm.h @@ -141,9 +141,6 @@ struct x_display_info /* Number of planes on this screen. */ int n_planes; - /* Dimensions of this screen. */ - int height, width; - /* Mask of things that cause the mouse to be grabbed. */ int grabbed; @@ -954,6 +951,8 @@ extern void set_vertical_scroll_bar P_ ((struct window *)); extern int x_dispatch_event P_ ((XEvent *, Display *)); extern unsigned int x_x_to_emacs_modifiers P_ ((struct x_display_info *, unsigned)); +extern int x_display_pixel_height P_ ((struct x_display_info *)); +extern int x_display_pixel_width P_ ((struct x_display_info *)); /* Defined in xselect.c */ |