annotate src/s/esix.h @ 50370:0c01548d7ed3
The following changes consolidates the common code related to
frame-parameter handling from the xfns.c, w32fns.c, and macfns.c
files into frame.c.
* xfns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
parameters now defined in frame.h and frame.c.
(Vx_resource_name): Remove. Use generic var.
(enum x_frame_parms): Remove (bogus, unused enum).
(check_x_display_info): Make non-static (for frame.c).
(struct x_frame_parm_table, x_frame_parms): Remove.
(init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
(x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
(x_set_border_width, x_set_internal_border_width, x_set_visibility)
(x_change_window_heights, x_set_autoraise, x_set_autolower)
(x_set_vertical_scroll_bars, x_set_scroll_bar_width)
(validate_x_resource_name, Fx_get_resource, x_get_resource_string)
(x_default_parameter, Fx_parse_geometry, x_figure_window_size):
Remove. Use generic functions instead.
(enum resource_types): Remove.
(x_set_scroll_bar_default_width): New global function (for frame.c).
(Fx_create_frame): Depend on x_figure_window_size to add space for
toolbar and setup size_hint_flags.
(x_frame_parm_handlers): New table for redisplay_interface.
(syms_of_xfns): Don't intern/staticpro removed vars.
author |
Kim F. Storm <storm@cua.dk> |
date |
Mon, 31 Mar 2003 20:36:21 +0000 |
parents |
191acacfa1ec |
children |
695cf19ef79e |
rev |
line source |
457
|
1 /* Definitions for ESIX, a variant of v.5.3 for the 386. */
|
|
2 /* These are based on reports for ESIX 5.3.2 D. */
|
|
3
|
|
4 #include "usg5-3.h"
|
|
5
|
|
6 /* Some versions of V.3 have this, but not all. ESIX does. */
|
|
7 #define HAVE_PTYS
|
|
8 #define SYSV_PTYS
|
|
9
|
|
10 /* Have -lg be used for debugging. */
|
|
11 #undef LIBS_DEBUG
|
|
12 #define LIBS_DEBUG -lg
|
|
13
|
|
14 /* If using Roell's X server, define X11R4 */
|
|
15 #ifdef X11R4 /* Roell's X server */
|
|
16 #define select sys_select /* Emacs select() not good enough? */
|
|
17 #undef LIBX11_SYSTEM
|
|
18 #define LIBX11_SYSTEM -lpt
|
|
19 #endif /* X11R4 */
|
|
20
|
|
21 /* ESIX does not need <sys/sioctl.h>, but needs <sys/ptem.h> */
|
|
22 #define NO_SIOCTL_H
|
|
23 #define NEED_PTEM_H
|
|
24 #define BROKEN_FIONREAD
|