diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2012-08-23 08:24:17 -0400 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2012-08-23 08:24:17 -0400 |
commit | a7fb575957ff4d9dd3671994a005ac3be8bb10fe (patch) | |
tree | aa365dc580b71f12aafa8252e450ec458bbdadfb | |
parent | 8042f88ace33573f9d0dfaa21ed54ac7cef266d5 (diff) |
Eliminate all uses of tab stops in the libX11 man pages.
Two steps: First, expand tabs to 8 spaces in code and structure
listings. Second, make the .Ds used to wrap code listings switch to
constant-width font (CW) rather than numeric font position 1, which
maps to R on most systems.
It is possible some archaic systems won't know what CW is, but the
only risk is that code listings won't look quite right on troff
devices; the PostScript and DVI drivers definitely grok it, so those
important cases are OK.
The purpose of these changes is to get rid of presentation-level
markup so these pages will lift clean to DocBook.
Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
182 files changed, 684 insertions, 813 deletions
diff --git a/man/AllPlanes.man b/man/AllPlanes.man index 2311447b..b2850b0d 100644 --- a/man/AllPlanes.man +++ b/man/AllPlanes.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/BlackPixelOfScreen.man b/man/BlackPixelOfScreen.man index af6042df..a800426a 100644 --- a/man/BlackPixelOfScreen.man +++ b/man/BlackPixelOfScreen.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/DisplayOfCCC.man b/man/DisplayOfCCC.man index 160eeb57..0fb4835d 100644 --- a/man/DisplayOfCCC.man +++ b/man/DisplayOfCCC.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/ImageByteOrder.man b/man/ImageByteOrder.man index 27579c84..e1175497 100644 --- a/man/ImageByteOrder.man +++ b/man/ImageByteOrder.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -228,12 +228,10 @@ structure provides an interface to the pixmap format information that is returned at the time of a connection setup. It contains: .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int depth; - int bits_per_pixel; - int scanline_pad; + int depth; + int bits_per_pixel; + int scanline_pad; } XPixmapFormatValues; .De .SH "SEE ALSO" diff --git a/man/IsCursorKey.man b/man/IsCursorKey.man index 0fa3dfb7..03c15f35 100644 --- a/man/IsCursorKey.man +++ b/man/IsCursorKey.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XAddConnectionWatch.man b/man/XAddConnectionWatch.man index 765162f4..8d89134f 100644 --- a/man/XAddConnectionWatch.man +++ b/man/XAddConnectionWatch.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XAddHost.man b/man/XAddHost.man index b048dd77..81daccd1 100644 --- a/man/XAddHost.man +++ b/man/XAddHost.man @@ -75,7 +75,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -320,12 +320,10 @@ The structure contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int family; /\&* for example FamilyInternet */ - int length; /\&* length of address, in bytes */ - char *address; /\&* pointer to where to find the address */ + int family; /\&* for example FamilyInternet */ + int length; /\&* length of address, in bytes */ + char *address; /\&* pointer to where to find the address */ } XHostAddress; .De .LP @@ -346,13 +344,11 @@ member is a pointer to a structure which contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int typelength; /\&* length of type string, in bytes */ - int valuelength; /\&* length of value string, in bytes */ - char *type; /\&* pointer to where to find the type string */ - char *value; /\&* pointer to where to find the address */ + int typelength; /\&* length of type string, in bytes */ + int valuelength; /\&* length of value string, in bytes */ + char *type; /\&* pointer to where to find the type string */ + char *value; /\&* pointer to where to find the address */ } XServerInterpretedAddress; .De .LP diff --git a/man/XAllocClassHint.man b/man/XAllocClassHint.man index 438ec1e0..c364e862 100644 --- a/man/XAllocClassHint.man +++ b/man/XAllocClassHint.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -221,13 +221,10 @@ structure contains: .LP .IN "XClassHint" "" "@DEF@" .Ds 0 -.TA .5i -.ta .5i typedef struct { - char *res_name; - char *res_class; + char *res_name; + char *res_class; } XClassHint; -.De .LP The res_name member contains the application name, and the res_class member contains the application class. diff --git a/man/XAllocColor.man b/man/XAllocColor.man index 851f4d74..6fc7952b 100644 --- a/man/XAllocColor.man +++ b/man/XAllocColor.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XAllocIconSize.man b/man/XAllocIconSize.man index eb13027b..c79f9f12 100644 --- a/man/XAllocIconSize.man +++ b/man/XAllocIconSize.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -224,12 +224,10 @@ structure contains: .LP .IN "XIconSize" "" "@DEF@" .Ds 0 -.TA .5i 2.5i -.ta .5i 2.5i typedef struct { - int min_width, min_height; - int max_width, max_height; - int width_inc, height_inc; + int min_width, min_height; + int max_width, max_height; + int width_inc, height_inc; } XIconSize; .De .LP diff --git a/man/XAllocSizeHints.man b/man/XAllocSizeHints.man index 838d497e..6c6e13b5 100644 --- a/man/XAllocSizeHints.man +++ b/man/XAllocSizeHints.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -426,24 +426,22 @@ T} .TE .IN "XSizeHints" "" "@DEF@" .Ds 0 -.TA .5i 2.5i -.ta .5i 2.5i /\&* Values */ typedef struct { - long flags; /\&* marks which fields in this structure are defined */ - int x, y; /\&* Obsolete */ - int width, height; /\&* Obsolete */ - int min_width, min_height; - int max_width, max_height; - int width_inc, height_inc; - struct { - int x; /\&* numerator */ - int y; /\&* denominator */ - } min_aspect, max_aspect; - int base_width, base_height; - int win_gravity; - /\&* this structure may be extended in the future */ + long flags; /\&* marks which fields in this structure are defined */ + int x, y; /\&* Obsolete */ + int width, height; /\&* Obsolete */ + int min_width, min_height; + int max_width, max_height; + int width_inc, height_inc; + struct { + int x; /\&* numerator */ + int y; /\&* denominator */ + } min_aspect, max_aspect; + int base_width, base_height; + int win_gravity; + /\&* this structure may be extended in the future */ } XSizeHints; .De .LP diff --git a/man/XAllocStandardColormap.man b/man/XAllocStandardColormap.man index 813e8932..0b86d7fb 100644 --- a/man/XAllocStandardColormap.man +++ b/man/XAllocStandardColormap.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -296,19 +296,17 @@ T} /\&* Values */ .IN "XStandardColormap" "" "@DEF@" .Ds 0 -.TA .5i 2.5i -.ta .5i 2.5i typedef struct { - Colormap colormap; - unsigned long red_max; - unsigned long red_mult; - unsigned long green_max; - unsigned long green_mult; - unsigned long blue_max; - unsigned long blue_mult; - unsigned long base_pixel; - VisualID visualid; - XID killid; + Colormap colormap; + unsigned long red_max; + unsigned long red_mult; + unsigned long green_max; + unsigned long green_mult; + unsigned long blue_max; + unsigned long blue_mult; + unsigned long base_pixel; + VisualID visualid; + XID killid; } XStandardColormap; .De .LP diff --git a/man/XAllocWMHints.man b/man/XAllocWMHints.man index 5b402fe1..9e707427 100644 --- a/man/XAllocWMHints.man +++ b/man/XAllocWMHints.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XAllowEvents.man b/man/XAllowEvents.man index cb95e8aa..122a4610 100644 --- a/man/XAllowEvents.man +++ b/man/XAllowEvents.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XAnyEvent.man b/man/XAnyEvent.man index af352180..b9f27662 100644 --- a/man/XAnyEvent.man +++ b/man/XAnyEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -147,14 +147,12 @@ All the event structures declared in .Pn < X11/Xlib.h > have the following common members: .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window window; + int type; + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window window; } XAnyEvent; .De .LP @@ -181,42 +179,40 @@ The .ZN XEvent structure is a union of the individual structures declared for each event type: .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef union _XEvent { - int type; /\&* must not be changed */ - XAnyEvent xany; - XKeyEvent xkey; - XButtonEvent xbutton; - XMotionEvent xmotion; - XCrossingEvent xcrossing; - XFocusChangeEvent xfocus; - XExposeEvent xexpose; - XGraphicsExposeEvent xgraphicsexpose; - XNoExposeEvent xnoexpose; - XVisibilityEvent xvisibility; - XCreateWindowEvent xcreatewindow; - XDestroyWindowEvent xdestroywindow; - XUnmapEvent xunmap; - XMapEvent xmap; - XMapRequestEvent xmaprequest; - XReparentEvent xreparent; - XConfigureEvent xconfigure; - XGravityEvent xgravity; - XResizeRequestEvent xresizerequest; - XConfigureRequestEvent xconfigurerequest; - XCirculateEvent xcirculate; - XCirculateRequestEvent xcirculaterequest; - XPropertyEvent xproperty; - XSelectionClearEvent xselectionclear; - XSelectionRequestEvent xselectionrequest; - XSelectionEvent xselection; - XColormapEvent xcolormap; - XClientMessageEvent xclient; - XMappingEvent xmapping; - XErrorEvent xerror; - XKeymapEvent xkeymap; - long pad[24]; + int type; /\&* must not be changed */ + XAnyEvent xany; + XKeyEvent xkey; + XButtonEvent xbutton; + XMotionEvent xmotion; + XCrossingEvent xcrossing; + XFocusChangeEvent xfocus; + XExposeEvent xexpose; + XGraphicsExposeEvent xgraphicsexpose; + XNoExposeEvent xnoexpose; + XVisibilityEvent xvisibility; + XCreateWindowEvent xcreatewindow; + XDestroyWindowEvent xdestroywindow; + XUnmapEvent xunmap; + XMapEvent xmap; + XMapRequestEvent xmaprequest; + XReparentEvent xreparent; + XConfigureEvent xconfigure; + XGravityEvent xgravity; + XResizeRequestEvent xresizerequest; + XConfigureRequestEvent xconfigurerequest; + XCirculateEvent xcirculate; + XCirculateRequestEvent xcirculaterequest; + XPropertyEvent xproperty; + XSelectionClearEvent xselectionclear; + XSelectionRequestEvent xselectionrequest; + XSelectionEvent xselection; + XColormapEvent xcolormap; + XClientMessageEvent xclient; + XMappingEvent xmapping; + XErrorEvent xerror; + XKeymapEvent xkeymap; + long pad[24]; } XEvent; .De .LP diff --git a/man/XButtonEvent.man b/man/XButtonEvent.man index 607897fd..d864015e 100644 --- a/man/XButtonEvent.man +++ b/man/XButtonEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -153,66 +153,60 @@ and events contain: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* ButtonPress or ButtonRelease */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window window; /\&* ``event'' window it is reported relative to */ - Window root; /\&* root window that the event occurred on */ - Window subwindow; /\&* child window */ - Time time; /\&* milliseconds */ - int x, y; /\&* pointer x, y coordinates in event window */ - int x_root, y_root; /\&* coordinates relative to root */ - unsigned int state; /\&* key or button mask */ - unsigned int button; /\&* detail */ - Bool same_screen; /\&* same screen flag */ + int type; /\&* ButtonPress or ButtonRelease */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window window; /\&* ``event'' window it is reported relative to */ + Window root; /\&* root window that the event occurred on */ + Window subwindow; /\&* child window */ + Time time; /\&* milliseconds */ + int x, y; /\&* pointer x, y coordinates in event window */ + int x_root, y_root; /\&* coordinates relative to root */ + unsigned int state; /\&* key or button mask */ + unsigned int button; /\&* detail */ + Bool same_screen; /\&* same screen flag */ } XButtonEvent; typedef XButtonEvent XButtonPressedEvent; typedef XButtonEvent XButtonReleasedEvent; .De .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* KeyPress or KeyRelease */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window window; /\&* ``event'' window it is reported relative to */ - Window root; /\&* root window that the event occurred on */ - Window subwindow; /\&* child window */ - Time time; /\&* milliseconds */ - int x, y; /\&* pointer x, y coordinates in event window */ - int x_root, y_root; /\&* coordinates relative to root */ - unsigned int state; /\&* key or button mask */ - unsigned int keycode; /\&* detail */ - Bool same_screen; /\&* same screen flag */ + int type; /\&* KeyPress or KeyRelease */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window window; /\&* ``event'' window it is reported relative to */ + Window root; /\&* root window that the event occurred on */ + Window subwindow; /\&* child window */ + Time time; /\&* milliseconds */ + int x, y; /\&* pointer x, y coordinates in event window */ + int x_root, y_root; /\&* coordinates relative to root */ + unsigned int state; /\&* key or button mask */ + unsigned int keycode; /\&* detail */ + Bool same_screen; /\&* same screen flag */ } XKeyEvent; typedef XKeyEvent XKeyPressedEvent; typedef XKeyEvent XKeyReleasedEvent; .De .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* MotionNotify */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window window; /\&* ``event'' window reported relative to */ - Window root; /\&* root window that the event occurred on */ - Window subwindow; /\&* child window */ - Time time; /\&* milliseconds */ - int x, y; /\&* pointer x, y coordinates in event window */ - int x_root, y_root; /\&* coordinates relative to root */ - unsigned int state; /\&* key or button mask */ - char is_hint; /\&* detail */ - Bool same_screen; /\&* same screen flag */ + int type; /\&* MotionNotify */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window window; /\&* ``event'' window reported relative to */ + Window root; /\&* root window that the event occurred on */ + Window subwindow; /\&* child window */ + Time time; /\&* milliseconds */ + int x, y; /\&* pointer x, y coordinates in event window */ + int x_root, y_root; /\&* coordinates relative to root */ + unsigned int state; /\&* key or button mask */ + char is_hint; /\&* detail */ + Bool same_screen; /\&* same screen flag */ } XMotionEvent; typedef XMotionEvent XPointerMovedEvent; .De diff --git a/man/XChangeKeyboardControl.man b/man/XChangeKeyboardControl.man index 63f93922..96c93eda 100644 --- a/man/XChangeKeyboardControl.man +++ b/man/XChangeKeyboardControl.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -311,20 +311,18 @@ T} .TE .IN "XKeyboardControl" "" "@DEF@" .Ds 0 -.TA .5i 2.5i -.ta .5i 2.5i /\&* Values */ typedef struct { - int key_click_percent; - int bell_percent; - int bell_pitch; - int bell_duration; - int led; - int led_mode; /\&* LedModeOn, LedModeOff */ - int key; - int auto_repeat_mode; /\&* AutoRepeatModeOff, AutoRepeatModeOn, - AutoRepeatModeDefault */ + int key_click_percent; + int bell_percent; + int bell_pitch; + int bell_duration; + int led; + int led_mode; /\&* LedModeOn, LedModeOff */ + int key; + int auto_repeat_mode; /\&* AutoRepeatModeOff, AutoRepeatModeOn, + AutoRepeatModeDefault */ } XKeyboardControl; .De .LP @@ -405,15 +403,13 @@ The structure contains: .LP .Ds 0 -.TA .5i -.ta .5i typedef struct { - int key_click_percent; - int bell_percent; - unsigned int bell_pitch, bell_duration; - unsigned long led_mask; - int global_auto_repeat; - char auto_repeats[32]; + int key_click_percent; + int bell_percent; + unsigned int bell_pitch, bell_duration; + unsigned long led_mask; + int global_auto_repeat; + char auto_repeats[32]; } XKeyboardState; .De .LP diff --git a/man/XChangeKeyboardMapping.man b/man/XChangeKeyboardMapping.man index b9645488..72f834d5 100644 --- a/man/XChangeKeyboardMapping.man +++ b/man/XChangeKeyboardMapping.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -423,11 +423,9 @@ The structure contains: .LP .Ds 0 -.TA .5i 2.5i -.ta .5i 2.5i typedef struct { - int max_keypermod; /\&* This server's max number of keys per modifier */ - KeyCode *modifiermap; /\&* An 8 by max_keypermod array of the modifiers */ + int max_keypermod; /\&* This server's max number of keys per modifier */ + KeyCode *modifiermap; /\&* An 8 by max_keypermod array of the modifiers */ } XModifierKeymap; .De .SH DIAGNOSTICS diff --git a/man/XChangePointerControl.man b/man/XChangePointerControl.man index 3a8fa6fc..61a47790 100644 --- a/man/XChangePointerControl.man +++ b/man/XChangePointerControl.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XChangeSaveSet.man b/man/XChangeSaveSet.man index 01924093..6a2b8543 100644 --- a/man/XChangeSaveSet.man +++ b/man/XChangeSaveSet.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XChangeWindowAttributes.man b/man/XChangeWindowAttributes.man index 3789a51d..ae25da56 100644 --- a/man/XChangeWindowAttributes.man +++ b/man/XChangeWindowAttributes.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XCirculateEvent.man b/man/XCirculateEvent.man index 304f34ec..29a9a51c 100644 --- a/man/XCirculateEvent.man +++ b/man/XCirculateEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,16 +148,14 @@ The structure for events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* CirculateNotify */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window event; - Window window; - int place; /\&* PlaceOnTop, PlaceOnBottom */ + int type; /\&* CirculateNotify */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window event; + Window window; + int place; /\&* PlaceOnTop, PlaceOnBottom */ } XCirculateEvent; .De .LP diff --git a/man/XCirculateRequestEvent.man b/man/XCirculateRequestEvent.man index 8a7afdb2..89212586 100644 --- a/man/XCirculateRequestEvent.man +++ b/man/XCirculateRequestEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,16 +148,14 @@ The structure for events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* CirculateRequest */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window parent; - Window window; - int place; /\&* PlaceOnTop, PlaceOnBottom */ + int type; /\&* CirculateRequest */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window parent; + Window window; + int place; /\&* PlaceOnTop, PlaceOnBottom */ } XCirculateRequestEvent; .De .LP diff --git a/man/XClearArea.man b/man/XClearArea.man index 3bdb86ee..154a467b 100644 --- a/man/XClearArea.man +++ b/man/XClearArea.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XClientMessageEvent.man b/man/XClientMessageEvent.man index f8239a89..fe0bde92 100644 --- a/man/XClientMessageEvent.man +++ b/man/XClientMessageEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,21 +148,19 @@ The structure for events contains: .LP .Ds 0 -.TA .5i 1i 3i -.ta .5i 1i 3i typedef struct { - int type; /\&* ClientMessage */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window window; - Atom message_type; - int format; - union { - char b[20]; - short s[10]; - long l[5]; - } data; + int type; /\&* ClientMessage */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window window; + Atom message_type; + int format; + union { + char b[20]; + short s[10]; + long l[5]; + } data; } XClientMessageEvent; .De .LP diff --git a/man/XColormapEvent.man b/man/XColormapEvent.man index 02f89d62..4d312f5c 100644 --- a/man/XColormapEvent.man +++ b/man/XColormapEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,17 +148,15 @@ The structure for events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* ColormapNotify */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window window; - Colormap colormap; /\&* colormap or None */ - Bool new; - int state; /\&* ColormapInstalled, ColormapUninstalled */ + int type; /\&* ColormapNotify */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window window; + Colormap colormap; /\&* colormap or None */ + Bool new; + int state; /\&* ColormapInstalled, ColormapUninstalled */ } XColormapEvent; .De .LP diff --git a/man/XConfigureEvent.man b/man/XConfigureEvent.man index 589e939c..2ccf982d 100644 --- a/man/XConfigureEvent.man +++ b/man/XConfigureEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,20 +148,18 @@ The structure for events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* ConfigureNotify */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window event; - Window window; - int x, y; - int width, height; - int border_width; - Window above; - Bool override_redirect; + int type; /\&* ConfigureNotify */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window event; + Window window; + int x, y; + int width, height; + int border_width; + Window above; + Bool override_redirect; } XConfigureEvent; .De .LP diff --git a/man/XConfigureRequestEvent.man b/man/XConfigureRequestEvent.man index fc5a836f..536c17be 100644 --- a/man/XConfigureRequestEvent.man +++ b/man/XConfigureRequestEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,21 +148,19 @@ The structure for events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* ConfigureRequest */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window parent; - Window window; - int x, y; - int width, height; - int border_width; - Window above; - int detail; /\&* Above, Below, TopIf, BottomIf, Opposite */ - unsigned long value_mask; + int type; /\&* ConfigureRequest */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window parent; + Window window; + int x, y; + int width, height; + int border_width; + Window above; + int detail; /\&* Above, Below, TopIf, BottomIf, Opposite */ + unsigned long value_mask; } XConfigureRequestEvent; .De .LP diff --git a/man/XConfigureWindow.man b/man/XConfigureWindow.man index e91dd02a..1a5d7650 100644 --- a/man/XConfigureWindow.man +++ b/man/XConfigureWindow.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -387,16 +387,14 @@ T} .TE .IN "XWindowChanges" "" "@DEF@" .Ds 0 -.TA .5i 3i -.ta .5i 3i /\&* Values */ typedef struct { - int x, y; - int width, height; - int border_width; - Window sibling; - int stack_mode; + int x, y; + int width, height; + int border_width; + Window sibling; + int stack_mode; } XWindowChanges; .De .LP diff --git a/man/XCopyArea.man b/man/XCopyArea.man index 503cddde..a7e6ec3d 100644 --- a/man/XCopyArea.man +++ b/man/XCopyArea.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XCreateColormap.man b/man/XCreateColormap.man index 0a517390..17dba2ad 100644 --- a/man/XCreateColormap.man +++ b/man/XCreateColormap.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -308,13 +308,11 @@ The structure contains: .LP .Ds 0 -.TA .5i 2.5i -.ta .5i 2.5i typedef struct { - unsigned long pixel; /\&* pixel value */ - unsigned short red, green, blue; /\&* rgb values */ - char flags; /\&* DoRed, DoGreen, DoBlue */ - char pad; + unsigned long pixel; /\&* pixel value */ + unsigned short red, green, blue; /\&* rgb values */ + char flags; /\&* DoRed, DoGreen, DoBlue */ + char pad; } XColor; .De .LP diff --git a/man/XCreateFontCursor.man b/man/XCreateFontCursor.man index ba8431e7..a8010f5d 100644 --- a/man/XCreateFontCursor.man +++ b/man/XCreateFontCursor.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XCreateFontSet.man b/man/XCreateFontSet.man index 7e442d9c..5148611b 100644 --- a/man/XCreateFontSet.man +++ b/man/XCreateFontSet.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XCreateGC.man b/man/XCreateGC.man index 72a31f07..1d01431e 100644 --- a/man/XCreateGC.man +++ b/man/XCreateGC.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -476,34 +476,32 @@ T} .TE .IN "XGCValues" "" "@DEF@" .Ds 0 -.TA .5i 3i -.ta .5i 3i /\&* Values */ typedef struct { - int function; /\&* logical operation */ - unsigned long plane_mask; /\&* plane mask */ - unsigned long foreground; /\&* foreground pixel */ - unsigned long background; /\&* background pixel */ - int line_width; /\&* line width (in pixels) */ - int line_style; /\&* LineSolid, LineOnOffDash, LineDoubleDash */ - int cap_style; /\&* CapNotLast, CapButt, CapRound, CapProjecting */ - int join_style; /\&* JoinMiter, JoinRound, JoinBevel */ - int fill_style; /\&* FillSolid, FillTiled, FillStippled FillOpaqueStippled*/ - int fill_rule; /\&* EvenOddRule, WindingRule */ - int arc_mode; /\&* ArcChord, ArcPieSlice */ - Pixmap tile; /\&* tile pixmap for tiling operations */ - Pixmap stipple; /\&* stipple 1 plane pixmap for stippling */ - int ts_x_origin; /\&* offset for tile or stipple operations */ - int ts_y_origin; - Font font; /\&* default text font for text operations */ - int subwindow_mode; /\&* ClipByChildren, IncludeInferiors */ - Bool graphics_exposures; /\&* boolean, should exposures be generated */ - int clip_x_origin; /\&* origin for clipping */ - int clip_y_origin; - Pixmap clip_mask; /\&* bitmap clipping; other calls for rects */ - int dash_offset; /\&* patterned/dashed line information */ - char dashes; + int function; /\&* logical operation */ + unsigned long plane_mask; /\&* plane mask */ + unsigned long foreground; /\&* foreground pixel */ + unsigned long background; /\&* background pixel */ + int line_width; /\&* line width (in pixels) */ + int line_style; /\&* LineSolid, LineOnOffDash, LineDoubleDash */ + int cap_style; /\&* CapNotLast, CapButt, CapRound, CapProjecting */ + int join_style; /\&* JoinMiter, JoinRound, JoinBevel */ + int fill_style; /\&* FillSolid, FillTiled, FillStippled FillOpaqueStippled*/ + int fill_rule; /\&* EvenOddRule, WindingRule */ + int arc_mode; /\&* ArcChord, ArcPieSlice */ + Pixmap tile; /\&* tile pixmap for tiling operations */ + Pixmap stipple; /\&* stipple 1 plane pixmap for stippling */ + int ts_x_origin; /\&* offset for tile or stipple operations */ + int ts_y_origin; + Font font; /\&* default text font for text operations */ + int subwindow_mode; /\&* ClipByChildren, IncludeInferiors */ + Bool graphics_exposures; /\&* boolean, should exposures be generated */ + int clip_x_origin; /\&* origin for clipping */ + int clip_y_origin; + Pixmap clip_mask; /\&* bitmap clipping; other calls for rects */ + int dash_offset; /\&* patterned/dashed line information */ + char dashes; } XGCValues; .De .LP @@ -685,8 +683,6 @@ the bounding box of a wide line with endpoints [x1, y1], [x2, y2] and width w is a rectangle with vertices at the following real coordinates: .LP .Ds -.TA .5i 2.5i -.ta .5i 2.5i [x1-(w*sn/2), y1+(w*cs/2)], [x1+(w*sn/2), y1-(w*cs/2)], [x2-(w*sn/2), y2+(w*cs/2)], [x2+(w*sn/2), y2-(w*cs/2)] .De diff --git a/man/XCreateIC.man b/man/XCreateIC.man index 822cc8ec..e6a0b0af 100644 --- a/man/XCreateIC.man +++ b/man/XCreateIC.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XCreateOC.man b/man/XCreateOC.man index 5c3e8dc0..87e92b0d 100644 --- a/man/XCreateOC.man +++ b/man/XCreateOC.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XCreatePixmap.man b/man/XCreatePixmap.man index ef54ac53..0ba5654e 100644 --- a/man/XCreatePixmap.man +++ b/man/XCreatePixmap.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XCreateRegion.man b/man/XCreateRegion.man index 0f6d324e..432f94b0 100644 --- a/man/XCreateRegion.man +++ b/man/XCreateRegion.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XCreateWindow.man b/man/XCreateWindow.man index 8d122d5a..ff444394 100644 --- a/man/XCreateWindow.man +++ b/man/XCreateWindow.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -428,26 +428,24 @@ T} .TE .IN "XSetWindowAttributes" "" "@DEF@" .Ds 0 -.TA .5i 3i -.ta .5i 3i /\&* Values */ typedef struct { - Pixmap background_pixmap; /\&* background, None, or ParentRelative */ - unsigned long background_pixel; /\&* background pixel */ - Pixmap border_pixmap; /\&* border of the window or CopyFromParent */ - unsigned long border_pixel; /\&* border pixel value */ - int bit_gravity; /\&* one of bit gravity values */ - int win_gravity; /\&* one of the window gravity values */ - int backing_store; /\&* NotUseful, WhenMapped, Always */ - unsigned long backing_planes; /\&* planes to be preserved if possible */ - unsigned long backing_pixel; /\&* value to use in restoring planes */ - Bool save_under; /\&* should bits under be saved? (popups) */ - long event_mask; /\&* set of events that should be saved */ - long do_not_propagate_mask; /\&* set of events that should not propagate */ - Bool override_redirect; /\&* boolean value for override_redirect */ - Colormap colormap; /\&* color map to be associated with window */ - Cursor cursor; /\&* cursor to be displayed (or None) */ + Pixmap background_pixmap; /\&* background, None, or ParentRelative */ + unsigned long background_pixel; /\&* background pixel */ + Pixmap border_pixmap; /\&* border of the window or CopyFromParent */ + unsigned long border_pixel; /\&* border pixel value */ + int bit_gravity; /\&* one of bit gravity values */ + int win_gravity; /\&* one of the window gravity values */ + int backing_store; /\&* NotUseful, WhenMapped, Always */ + unsigned long backing_planes; /\&* planes to be preserved if possible */ + unsigned long backing_pixel; /\&* value to use in restoring planes */ + Bool save_under; /\&* should bits under be saved? (popups) */ + long event_mask; /\&* set of events that should be saved */ + long do_not_propagate_mask; /\&* set of events that should not propagate */ + Bool override_redirect; /\&* boolean value for override_redirect */ + Colormap colormap; /\&* color map to be associated with window */ + Cursor cursor; /\&* cursor to be displayed (or None) */ } XSetWindowAttributes; .De .LP diff --git a/man/XCreateWindowEvent.man b/man/XCreateWindowEvent.man index 410a1fb6..9c9019dc 100644 --- a/man/XCreateWindowEvent.man +++ b/man/XCreateWindowEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,19 +148,17 @@ The structure for events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* CreateNotify */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window parent; /\&* parent of the window */ - Window window; /\&* window id of window created */ - int x, y; /\&* window location */ - int width, height; /\&* size of window */ - int border_width; /\&* border width */ - Bool override_redirect; /\&* creation should be overridden */ + int type; /\&* CreateNotify */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window parent; /\&* parent of the window */ + Window window; /\&* window id of window created */ + int x, y; /\&* window location */ + int width, height; /\&* size of window */ + int border_width; /\&* border width */ + Bool override_redirect; /\&* creation should be overridden */ } XCreateWindowEvent; .De .LP diff --git a/man/XCrossingEvent.man b/man/XCrossingEvent.man index 9603105e..4d27ad1a 100644 --- a/man/XCrossingEvent.man +++ b/man/XCrossingEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -150,28 +150,26 @@ and events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* EnterNotify or LeaveNotify */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window window; /\&* ``event'' window reported relative to */ - Window root; /\&* root window that the event occurred on */ - Window subwindow; /\&* child window */ - Time time; /\&* milliseconds */ - int x, y; /\&* pointer x, y coordinates in event window */ - int x_root, y_root; /\&* coordinates relative to root */ - int mode; /\&* NotifyNormal, NotifyGrab, NotifyUngrab */ - int detail; - /\&* - * NotifyAncestor, NotifyVirtual, NotifyInferior, - * NotifyNonlinear,NotifyNonlinearVirtual - */ - Bool same_screen; /\&* same screen flag */ - Bool focus; /\&* boolean focus */ - unsigned int state; /\&* key or button mask */ + int type; /\&* EnterNotify or LeaveNotify */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window window; /\&* ``event'' window reported relative to */ + Window root; /\&* root window that the event occurred on */ + Window subwindow; /\&* child window */ + Time time; /\&* milliseconds */ + int x, y; /\&* pointer x, y coordinates in event window */ + int x_root, y_root; /\&* coordinates relative to root */ + int mode; /\&* NotifyNormal, NotifyGrab, NotifyUngrab */ + int detail; + /\&* + * NotifyAncestor, NotifyVirtual, NotifyInferior, + * NotifyNonlinear,NotifyNonlinearVirtual + */ + Bool same_screen; /\&* same screen flag */ + Bool focus; /\&* boolean focus */ + unsigned int state; /\&* key or button mask */ } XCrossingEvent; typedef XCrossingEvent XEnterWindowEvent; typedef XCrossingEvent XLeaveWindowEvent; diff --git a/man/XDefineCursor.man b/man/XDefineCursor.man index 21e605df..bb154707 100644 --- a/man/XDefineCursor.man +++ b/man/XDefineCursor.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XDestroyWindow.man b/man/XDestroyWindow.man index aec3c896..8be33500 100644 --- a/man/XDestroyWindow.man +++ b/man/XDestroyWindow.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XDestroyWindowEvent.man b/man/XDestroyWindowEvent.man index 954406a9..7b9ee23d 100644 --- a/man/XDestroyWindowEvent.man +++ b/man/XDestroyWindowEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,15 +148,13 @@ The structure for events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* DestroyNotify */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window event; - Window window; + int type; /\&* DestroyNotify */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window event; + Window window; } XDestroyWindowEvent; .De .LP diff --git a/man/XDrawArc.man b/man/XDrawArc.man index 3621d1c3..e485b65d 100644 --- a/man/XDrawArc.man +++ b/man/XDrawArc.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XDrawImageString.man b/man/XDrawImageString.man index 480e2d4e..3801a889 100644 --- a/man/XDrawImageString.man +++ b/man/XDrawImageString.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XDrawLine.man b/man/XDrawLine.man index 8f22ecf4..1adabfaf 100644 --- a/man/XDrawLine.man +++ b/man/XDrawLine.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -266,10 +266,8 @@ The structure contains: .LP .Ds 0 -.TA .5i -.ta .5i typedef struct { - short x1, y1, x2, y2; + short x1, y1, x2, y2; } XSegment; .De .LP diff --git a/man/XDrawPoint.man b/man/XDrawPoint.man index ca0e0b91..09fa7822 100644 --- a/man/XDrawPoint.man +++ b/man/XDrawPoint.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -210,10 +210,8 @@ The structure contains: .LP .Ds 0 -.TA .5i -.ta .5i typedef struct { - short x, y; + short x, y; } XPoint; .De .LP diff --git a/man/XDrawRectangle.man b/man/XDrawRectangle.man index 13838256..05818cea 100644 --- a/man/XDrawRectangle.man +++ b/man/XDrawRectangle.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -215,11 +215,9 @@ The structure contains: .LP .Ds 0 -.TA .5i -.ta .5i typedef struct { - short x, y; - unsigned short width, height; + short x, y; + unsigned short width, height; } XRectangle; .De .LP diff --git a/man/XDrawString.man b/man/XDrawString.man index d9a9d35b..d83bd17c 100644 --- a/man/XDrawString.man +++ b/man/XDrawString.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XDrawText.man b/man/XDrawText.man index 132ea973..69b10a55 100644 --- a/man/XDrawText.man +++ b/man/XDrawText.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -223,24 +223,20 @@ and structures contain: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - char *chars; /\&* pointer to string */ - int nchars; /\&* number of characters */ - int delta; /\&* delta between strings */ - Font font; /\&* Font to print it in, None don't change */ + char *chars; /\&* pointer to string */ + int nchars; /\&* number of characters */ + int delta; /\&* delta between strings */ + Font font; /\&* Font to print it in, None don't change */ } XTextItem; .De .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - XChar2b *chars; /\&* pointer to two-byte characters */ - int nchars; /\&* number of characters */ - int delta; /\&* delta between strings */ - Font font; /\&* font to print it in, None don't change */ + XChar2b *chars; /\&* pointer to two-byte characters */ + int nchars; /\&* number of characters */ + int delta; /\&* delta between strings */ + Font font; /\&* font to print it in, None don't change */ } XTextItem16; .De .LP diff --git a/man/XEmptyRegion.man b/man/XEmptyRegion.man index bc00d4c2..7f3c6182 100644 --- a/man/XEmptyRegion.man +++ b/man/XEmptyRegion.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XErrorEvent.man b/man/XErrorEvent.man index 37bb0206..e80fa4a8 100644 --- a/man/XErrorEvent.man +++ b/man/XErrorEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,16 +148,14 @@ The structure contains: .LP .Ds 0 -.TA .5i 2.5i -.ta .5i 2.5i typedef struct { - int type; - Display *display; /\&* Display the event was read from */ - unsigned long serial; /\&* serial number of failed request */ - unsigned char error_code; /\&* error code of failed request */ - unsigned char request_code; /\&* Major op-code of failed request */ - unsigned char minor_code; /\&* Minor op-code of failed request */ - XID resourceid; /\&* resource id */ + int type; + Display *display; /\&* Display the event was read from */ + unsigned long serial; /\&* serial number of failed request */ + unsigned char error_code; /\&* error code of failed request */ + unsigned char request_code; /\&* Major op-code of failed request */ + unsigned char minor_code; /\&* Minor op-code of failed request */ + XID resourceid; /\&* resource id */ } XErrorEvent; .De .LP diff --git a/man/XExposeEvent.man b/man/XExposeEvent.man index ea2eef77..de568305 100644 --- a/man/XExposeEvent.man +++ b/man/XExposeEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,17 +148,15 @@ The structure for events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* Expose */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window window; - int x, y; - int width, height; - int count; /\&* if nonzero, at least this many more */ + int type; /\&* Expose */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window window; + int x, y; + int width, height; + int count; /\&* if nonzero, at least this many more */ } XExposeEvent; .De .LP diff --git a/man/XExtentsOfFontSet.man b/man/XExtentsOfFontSet.man index 22427294..64adb363 100644 --- a/man/XExtentsOfFontSet.man +++ b/man/XExtentsOfFontSet.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XFillRectangle.man b/man/XFillRectangle.man index 3ae9ce3f..056b5ab5 100644 --- a/man/XFillRectangle.man +++ b/man/XFillRectangle.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XFilterEvent.man b/man/XFilterEvent.man index 2a006f06..bc089b12 100644 --- a/man/XFilterEvent.man +++ b/man/XFilterEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XFlush.man b/man/XFlush.man index 87302f0d..487abadc 100644 --- a/man/XFlush.man +++ b/man/XFlush.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XFocusChangeEvent.man b/man/XFocusChangeEvent.man index b95c89da..5d230a79 100644 --- a/man/XFocusChangeEvent.man +++ b/man/XFocusChangeEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -150,21 +150,19 @@ and events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* FocusIn or FocusOut */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window window; /\&* window of event */ - int mode; /\&* NotifyNormal, NotifyGrab, NotifyUngrab */ - int detail; - /\&* - * NotifyAncestor, NotifyVirtual, NotifyInferior, - * NotifyNonlinear,NotifyNonlinearVirtual, NotifyPointer, - * NotifyPointerRoot, NotifyDetailNone - */ + int type; /\&* FocusIn or FocusOut */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window window; /\&* window of event */ + int mode; /\&* NotifyNormal, NotifyGrab, NotifyUngrab */ + int detail; + /\&* + * NotifyAncestor, NotifyVirtual, NotifyInferior, + * NotifyNonlinear,NotifyNonlinearVirtual, NotifyPointer, + * NotifyPointerRoot, NotifyDetailNone + */ } XFocusChangeEvent; typedef XFocusChangeEvent XFocusInEvent; typedef XFocusChangeEvent XFocusOutEvent; diff --git a/man/XFontSetExtents.man b/man/XFontSetExtents.man index 79ad9e6d..48e57220 100644 --- a/man/XFontSetExtents.man +++ b/man/XFontSetExtents.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,11 +148,9 @@ The structure contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - XRectangle max_ink_extent; /\&* over all drawable characters */ - XRectangle max_logical_extent; /\&* over all drawable characters */ + XRectangle max_ink_extent; /\&* over all drawable characters */ + XRectangle max_logical_extent; /\&* over all drawable characters */ } XFontSetExtents; .De .LP diff --git a/man/XFontsOfFontSet.man b/man/XFontsOfFontSet.man index 3c783ef1..0bf3e699 100644 --- a/man/XFontsOfFontSet.man +++ b/man/XFontsOfFontSet.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XFree.man b/man/XFree.man index f0a8d1fb..2a37c32e 100644 --- a/man/XFree.man +++ b/man/XFree.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XGetEventData.man b/man/XGetEventData.man index fdbab45d..bb2f32fd 100644 --- a/man/XGetEventData.man +++ b/man/XGetEventData.man @@ -27,7 +27,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -134,17 +134,15 @@ Specifies the cookie to free or retrieve the data for. .SH STRUCTURES .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; - unsigned long serial; - Bool send_event; - Display *display; - int extension; - int evtype; - unsigned int cookie; - void *data; + int type; + unsigned long serial; + Bool send_event; + Display *display; + int extension; + int evtype; + unsigned int cookie; + void *data; } XGenericEventCookie; .De diff --git a/man/XGetVisualInfo.man b/man/XGetVisualInfo.man index 7d7dca64..2218732d 100644 --- a/man/XGetVisualInfo.man +++ b/man/XGetVisualInfo.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -290,21 +290,19 @@ T} .TE .IN "XVisualInfo" "" "@DEF@" .Ds 0 -.TA .5i 3i -.ta .5i 3i /\&* Values */ typedef struct { - Visual *visual; - VisualID visualid; - int screen; - int depth; - int class; - unsigned long red_mask; - unsigned long green_mask; - unsigned long blue_mask; - int colormap_size; - int bits_per_rgb; + Visual *visual; + VisualID visualid; + int screen; + int depth; + int class; + unsigned long red_mask; + unsigned long green_mask; + unsigned long blue_mask; + int colormap_size; + int bits_per_rgb; } XVisualInfo; .De .SH "SEE ALSO" diff --git a/man/XGetWindowAttributes.man b/man/XGetWindowAttributes.man index de856011..c9e6862c 100644 --- a/man/XGetWindowAttributes.man +++ b/man/XGetWindowAttributes.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -217,30 +217,28 @@ The structure contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int x, y; /\&* location of window */ - int width, height; /\&* width and height of window */ - int border_width; /\&* border width of window */ - int depth; /\&* depth of window */ - Visual *visual; /\&* the associated visual structure */ - Window root; /\&* root of screen containing window */ - int class; /\&* InputOutput, InputOnly*/ - int bit_gravity; /\&* one of the bit gravity values */ - int win_gravity; /\&* one of the window gravity values */ - int backing_store; /\&* NotUseful, WhenMapped, Always */ - unsigned long backing_planes; /\&* planes to be preserved if possible */ - unsigned long backing_pixel; /\&* value to be used when restoring planes */ - Bool save_under; /\&* boolean, should bits under be saved? */ - Colormap colormap; /\&* color map to be associated with window */ - Bool map_installed; /\&* boolean, is color map currently installed*/ - int map_state; /\&* IsUnmapped, IsUnviewable, IsViewable */ - long all_event_masks; /\&* set of events all people have interest in*/ - long your_event_mask; /\&* my event mask */ - long do_not_propagate_mask; /\&* set of events that should not propagate */ - Bool override_redirect; /\&* boolean value for override-redirect */ - Screen *screen; /\&* back pointer to correct screen */ + int x, y; /\&* location of window */ + int width, height; /\&* width and height of window */ + int border_width; /\&* border width of window */ + int depth; /\&* depth of window */ + Visual *visual; /\&* the associated visual structure */ + Window root; /\&* root of screen containing window */ + int class; /\&* InputOutput, InputOnly*/ + int bit_gravity; /\&* one of the bit gravity values */ + int win_gravity; /\&* one of the window gravity values */ + int backing_store; /\&* NotUseful, WhenMapped, Always */ + unsigned long backing_planes; /\&* planes to be preserved if possible */ + unsigned long backing_pixel; /\&* value to be used when restoring planes */ + Bool save_under; /\&* boolean, should bits under be saved? */ + Colormap colormap; /\&* color map to be associated with window */ + Bool map_installed; /\&* boolean, is color map currently installed*/ + int map_state; /\&* IsUnmapped, IsUnviewable, IsViewable */ + long all_event_masks; /\&* set of events all people have interest in*/ + long your_event_mask; /\&* my event mask */ + long do_not_propagate_mask; /\&* set of events that should not propagate */ + Bool override_redirect; /\&* boolean value for override-redirect */ + Screen *screen; /\&* back pointer to correct screen */ } XWindowAttributes; .De .LP diff --git a/man/XGetWindowProperty.man b/man/XGetWindowProperty.man index da9460a3..0962f79f 100644 --- a/man/XGetWindowProperty.man +++ b/man/XGetWindowProperty.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XGrabButton.man b/man/XGrabButton.man index 9a7f0c21..11ca805c 100644 --- a/man/XGrabButton.man +++ b/man/XGrabButton.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XGrabKey.man b/man/XGrabKey.man index 8b31dd1f..146da3cf 100644 --- a/man/XGrabKey.man +++ b/man/XGrabKey.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XGrabKeyboard.man b/man/XGrabKeyboard.man index e448b3be..3a9df5e1 100644 --- a/man/XGrabKeyboard.man +++ b/man/XGrabKeyboard.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XGrabPointer.man b/man/XGrabPointer.man index 23426cc6..443cdba6 100644 --- a/man/XGrabPointer.man +++ b/man/XGrabPointer.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XGrabServer.man b/man/XGrabServer.man index 03b2b90f..58f0d01e 100644 --- a/man/XGrabServer.man +++ b/man/XGrabServer.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XGraphicsExposeEvent.man b/man/XGraphicsExposeEvent.man index 8360822a..db4daa64 100644 --- a/man/XGraphicsExposeEvent.man +++ b/man/XGraphicsExposeEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -150,33 +150,29 @@ and events contain: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* GraphicsExpose */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Drawable drawable; - int x, y; - int width, height; - int count; /\&* if nonzero, at least this many more */ - int major_code; /\&* core is CopyArea or CopyPlane */ - int minor_code; /\&* not defined in the core */ + int type; /\&* GraphicsExpose */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Drawable drawable; + int x, y; + int width, height; + int count; /\&* if nonzero, at least this many more */ + int major_code; /\&* core is CopyArea or CopyPlane */ + int minor_code; /\&* not defined in the core */ } XGraphicsExposeEvent; .De .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* NoExpose */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Drawable drawable; - int major_code; /\&* core is CopyArea or CopyPlane */ - int minor_code; /\&* not defined in the core */ + int type; /\&* NoExpose */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Drawable drawable; + int major_code; /\&* core is CopyArea or CopyPlane */ + int minor_code; /\&* not defined in the core */ } XNoExposeEvent; .De .LP diff --git a/man/XGravityEvent.man b/man/XGravityEvent.man index 09f56546..a1a38d10 100644 --- a/man/XGravityEvent.man +++ b/man/XGravityEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,16 +148,14 @@ The structure for events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* GravityNotify */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window event; - Window window; - int x, y; + int type; /\&* GravityNotify */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window event; + Window window; + int x, y; } XGravityEvent; .De .LP diff --git a/man/XIconifyWindow.man b/man/XIconifyWindow.man index a4e6be84..bf4a82dc 100644 --- a/man/XIconifyWindow.man +++ b/man/XIconifyWindow.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XIfEvent.man b/man/XIfEvent.man index ebfbf8c6..ecadfc08 100644 --- a/man/XIfEvent.man +++ b/man/XIfEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XInitImage.man b/man/XInitImage.man index b58a9462..01f87cc3 100644 --- a/man/XInitImage.man +++ b/man/XInitImage.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XInitThreads.man b/man/XInitThreads.man index 51db3f57..7b83b907 100644 --- a/man/XInitThreads.man +++ b/man/XInitThreads.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XInstallColormap.man b/man/XInstallColormap.man index 15a1ce5f..3f259e3c 100644 --- a/man/XInstallColormap.man +++ b/man/XInstallColormap.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XInternAtom.man b/man/XInternAtom.man index 237ed91c..903b8928 100644 --- a/man/XInternAtom.man +++ b/man/XInternAtom.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XIntersectRegion.man b/man/XIntersectRegion.man index 8d968034..7a62e022 100644 --- a/man/XIntersectRegion.man +++ b/man/XIntersectRegion.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XKeymapEvent.man b/man/XKeymapEvent.man index 2bd9346a..b22afdb5 100644 --- a/man/XKeymapEvent.man +++ b/man/XKeymapEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,17 +148,15 @@ The structure for events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i /\&* generated on EnterWindow and FocusIn when KeymapState selected */ typedef struct { - int type; /\&* KeymapNotify */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window window; - char key_vector[32]; -} XKeymapEvent; + int type; /\&* KeymapNotify */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window window; + char key_vector[32]; +} XKeymapEvent; .De .LP When you receive this event, diff --git a/man/XListFonts.man b/man/XListFonts.man index 4077220f..5438a8b2 100644 --- a/man/XListFonts.man +++ b/man/XListFonts.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XLoadFont.man b/man/XLoadFont.man index b85fcb25..5e00acf6 100644 --- a/man/XLoadFont.man +++ b/man/XLoadFont.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XLookupKeysym.man b/man/XLookupKeysym.man index bdbfe317..8f2965db 100644 --- a/man/XLookupKeysym.man +++ b/man/XLookupKeysym.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XMapEvent.man b/man/XMapEvent.man index 551c2bca..be9ab171 100644 --- a/man/XMapEvent.man +++ b/man/XMapEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,16 +148,14 @@ The structure for events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* MapNotify */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window event; - Window window; - Bool override_redirect; /\&* boolean, is override set... */ + int type; /\&* MapNotify */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window event; + Window window; + Bool override_redirect; /\&* boolean, is override set... */ } XMapEvent; .De .LP @@ -203,18 +201,16 @@ The structure for events is: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* MappingNotify */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window window; /\&* unused */ - int request; /\&* one of MappingModifier, MappingKeyboard, - MappingPointer */ - int first_keycode; /\&* first keycode */ - int count; /\&* defines range of change w. first_keycode*/ + int type; /\&* MappingNotify */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window window; /\&* unused */ + int request; /\&* one of MappingModifier, MappingKeyboard, + MappingPointer */ + int first_keycode; /\&* first keycode */ + int count; /\&* defines range of change w. first_keycode*/ } XMappingEvent; .De .LP diff --git a/man/XMapRequestEvent.man b/man/XMapRequestEvent.man index e30edf47..adf0b5d6 100644 --- a/man/XMapRequestEvent.man +++ b/man/XMapRequestEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,15 +148,13 @@ The structure for events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* MapRequest */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window parent; - Window window; + int type; /\&* MapRequest */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window parent; + Window window; } XMapRequestEvent; .De .LP diff --git a/man/XMapWindow.man b/man/XMapWindow.man index b4e6cde0..7b1dda3b 100644 --- a/man/XMapWindow.man +++ b/man/XMapWindow.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XNextEvent.man b/man/XNextEvent.man index 84807575..5c7bd769 100644 --- a/man/XNextEvent.man +++ b/man/XNextEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XNoOp.man b/man/XNoOp.man index a85752be..c4426a00 100644 --- a/man/XNoOp.man +++ b/man/XNoOp.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XOpenDisplay.man b/man/XOpenDisplay.man index 76d67373..5526a428 100644 --- a/man/XOpenDisplay.man +++ b/man/XOpenDisplay.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XOpenIM.man b/man/XOpenIM.man index c5597054..d0469d4b 100644 --- a/man/XOpenIM.man +++ b/man/XOpenIM.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XOpenOM.man b/man/XOpenOM.man index 3d67b0c1..2dddb047 100644 --- a/man/XOpenOM.man +++ b/man/XOpenOM.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XParseGeometry.man b/man/XParseGeometry.man index 057895f2..287a68aa 100644 --- a/man/XParseGeometry.man +++ b/man/XParseGeometry.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XPolygonRegion.man b/man/XPolygonRegion.man index ef5e48bd..bdede490 100644 --- a/man/XPolygonRegion.man +++ b/man/XPolygonRegion.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XPropertyEvent.man b/man/XPropertyEvent.man index 53c8e780..8e919d68 100644 --- a/man/XPropertyEvent.man +++ b/man/XPropertyEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,17 +148,15 @@ The structure for events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* PropertyNotify */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window window; - Atom atom; - Time time; - int state; /\&* PropertyNewValue or PropertyDelete */ + int type; /\&* PropertyNotify */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window window; + Atom atom; + Time time; + int state; /\&* PropertyNewValue or PropertyDelete */ } XPropertyEvent; .De .LP diff --git a/man/XPutBackEvent.man b/man/XPutBackEvent.man index 16325727..ea9be38b 100644 --- a/man/XPutBackEvent.man +++ b/man/XPutBackEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XPutImage.man b/man/XPutImage.man index 010ac410..fd6915b5 100644 --- a/man/XPutImage.man +++ b/man/XPutImage.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XQueryBestSize.man b/man/XQueryBestSize.man index 993491f6..3a643c57 100644 --- a/man/XQueryBestSize.man +++ b/man/XQueryBestSize.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XQueryColor.man b/man/XQueryColor.man index fb8c8b5f..8bd1d159 100644 --- a/man/XQueryColor.man +++ b/man/XQueryColor.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XQueryPointer.man b/man/XQueryPointer.man index 0550ddd9..6082ec8a 100644 --- a/man/XQueryPointer.man +++ b/man/XQueryPointer.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XQueryTree.man b/man/XQueryTree.man index e5f6d782..5533a215 100644 --- a/man/XQueryTree.man +++ b/man/XQueryTree.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XRaiseWindow.man b/man/XRaiseWindow.man index 3926b168..136f294b 100644 --- a/man/XRaiseWindow.man +++ b/man/XRaiseWindow.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XReadBitmapFile.man b/man/XReadBitmapFile.man index 28fbf57e..02900162 100644 --- a/man/XReadBitmapFile.man +++ b/man/XReadBitmapFile.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XRecolorCursor.man b/man/XRecolorCursor.man index 0a5608fe..5b350f9a 100644 --- a/man/XRecolorCursor.man +++ b/man/XRecolorCursor.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XReparentEvent.man b/man/XReparentEvent.man index fc67d43e..6a24e20a 100644 --- a/man/XReparentEvent.man +++ b/man/XReparentEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,18 +148,16 @@ The structure for events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* ReparentNotify */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window event; - Window window; - Window parent; - int x, y; - Bool override_redirect; + int type; /\&* ReparentNotify */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window event; + Window window; + Window parent; + int x, y; + Bool override_redirect; } XReparentEvent; .De .LP diff --git a/man/XReparentWindow.man b/man/XReparentWindow.man index 14653a7b..d30ee3a1 100644 --- a/man/XReparentWindow.man +++ b/man/XReparentWindow.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XResizeRequestEvent.man b/man/XResizeRequestEvent.man index 291a4106..02a207a8 100644 --- a/man/XResizeRequestEvent.man +++ b/man/XResizeRequestEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,15 +148,13 @@ The structure for events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* ResizeRequest */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window window; - int width, height; + int type; /\&* ResizeRequest */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window window; + int width, height; } XResizeRequestEvent; .De .LP diff --git a/man/XResourceManagerString.man b/man/XResourceManagerString.man index 50c1a256..47cf2130 100644 --- a/man/XResourceManagerString.man +++ b/man/XResourceManagerString.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSaveContext.man b/man/XSaveContext.man index 64481cc2..9d386dd7 100644 --- a/man/XSaveContext.man +++ b/man/XSaveContext.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSelectInput.man b/man/XSelectInput.man index 39b76398..95c3e91d 100644 --- a/man/XSelectInput.man +++ b/man/XSelectInput.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSelectionClearEvent.man b/man/XSelectionClearEvent.man index bf04e437..5646d850 100644 --- a/man/XSelectionClearEvent.man +++ b/man/XSelectionClearEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,16 +148,14 @@ The structure for events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* SelectionClear */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window window; - Atom selection; - Time time; + int type; /\&* SelectionClear */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window window; + Atom selection; + Time time; } XSelectionClearEvent; .De .LP diff --git a/man/XSelectionEvent.man b/man/XSelectionEvent.man index 618bb6a9..a4b510c8 100644 --- a/man/XSelectionEvent.man +++ b/man/XSelectionEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,18 +148,16 @@ The structure for events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* SelectionNotify */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window requestor; - Atom selection; - Atom target; - Atom property; /\&* atom or None */ - Time time; + int type; /\&* SelectionNotify */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window requestor; + Atom selection; + Atom target; + Atom property; /\&* atom or None */ + Time time; } XSelectionEvent; .De .LP diff --git a/man/XSelectionRequestEvent.man b/man/XSelectionRequestEvent.man index 6ec5cc11..0be983f6 100644 --- a/man/XSelectionRequestEvent.man +++ b/man/XSelectionRequestEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,19 +148,17 @@ The structure for events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* SelectionRequest */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window owner; - Window requestor; - Atom selection; - Atom target; - Atom property; - Time time; + int type; /\&* SelectionRequest */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window owner; + Window requestor; + Atom selection; + Atom target; + Atom property; + Time time; } XSelectionRequestEvent; .De .LP diff --git a/man/XSendEvent.man b/man/XSendEvent.man index 7dcf99c0..7168bedf 100644 --- a/man/XSendEvent.man +++ b/man/XSendEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -283,11 +283,9 @@ The structure contains: .LP .Ds 0 -.TA .5i -.ta .5i typedef struct { - Time time; - short x, y; + Time time; + short x, y; } XTimeCoord; .De .LP diff --git a/man/XSetArcMode.man b/man/XSetArcMode.man index dc4e1239..e600f1e8 100644 --- a/man/XSetArcMode.man +++ b/man/XSetArcMode.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetClipOrigin.man b/man/XSetClipOrigin.man index 83decc7c..79aee3cb 100644 --- a/man/XSetClipOrigin.man +++ b/man/XSetClipOrigin.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetCloseDownMode.man b/man/XSetCloseDownMode.man index 27405c43..73864abf 100644 --- a/man/XSetCloseDownMode.man +++ b/man/XSetCloseDownMode.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetCommand.man b/man/XSetCommand.man index 86caed30..dace9b93 100644 --- a/man/XSetCommand.man +++ b/man/XSetCommand.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetErrorHandler.man b/man/XSetErrorHandler.man index c601837a..6dc4b2df 100644 --- a/man/XSetErrorHandler.man +++ b/man/XSetErrorHandler.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetFillStyle.man b/man/XSetFillStyle.man index 3de363c2..9117342b 100644 --- a/man/XSetFillStyle.man +++ b/man/XSetFillStyle.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetFont.man b/man/XSetFont.man index 70219592..918d638c 100644 --- a/man/XSetFont.man +++ b/man/XSetFont.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetFontPath.man b/man/XSetFontPath.man index b2336f6c..66092d16 100644 --- a/man/XSetFontPath.man +++ b/man/XSetFontPath.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetICFocus.man b/man/XSetICFocus.man index 63a60bd6..0a9e42a4 100644 --- a/man/XSetICFocus.man +++ b/man/XSetICFocus.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetICValues.man b/man/XSetICValues.man index 36deb6eb..d9edf0b4 100644 --- a/man/XSetICValues.man +++ b/man/XSetICValues.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetInputFocus.man b/man/XSetInputFocus.man index 6b6f57d2..1d384662 100644 --- a/man/XSetInputFocus.man +++ b/man/XSetInputFocus.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetLineAttributes.man b/man/XSetLineAttributes.man index 69004306..20b46649 100644 --- a/man/XSetLineAttributes.man +++ b/man/XSetLineAttributes.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetPointerMapping.man b/man/XSetPointerMapping.man index d1640285..4281fdab 100644 --- a/man/XSetPointerMapping.man +++ b/man/XSetPointerMapping.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetScreenSaver.man b/man/XSetScreenSaver.man index e6058179..fc83e1d8 100644 --- a/man/XSetScreenSaver.man +++ b/man/XSetScreenSaver.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetSelectionOwner.man b/man/XSetSelectionOwner.man index 011cf1d1..354c1de4 100644 --- a/man/XSetSelectionOwner.man +++ b/man/XSetSelectionOwner.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetState.man b/man/XSetState.man index 0d152367..08b09156 100644 --- a/man/XSetState.man +++ b/man/XSetState.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetTextProperty.man b/man/XSetTextProperty.man index d966ae10..dea10865 100644 --- a/man/XSetTextProperty.man +++ b/man/XSetTextProperty.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetTile.man b/man/XSetTile.man index 8f9e2a46..b92f0631 100644 --- a/man/XSetTile.man +++ b/man/XSetTile.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetTransientForHint.man b/man/XSetTransientForHint.man index fc4cf5c1..d60314be 100644 --- a/man/XSetTransientForHint.man +++ b/man/XSetTransientForHint.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetWMClientMachine.man b/man/XSetWMClientMachine.man index bae111b4..b424cbec 100644 --- a/man/XSetWMClientMachine.man +++ b/man/XSetWMClientMachine.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetWMColormapWindows.man b/man/XSetWMColormapWindows.man index e205db36..c56ffe1c 100644 --- a/man/XSetWMColormapWindows.man +++ b/man/XSetWMColormapWindows.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetWMIconName.man b/man/XSetWMIconName.man index f0c87bdd..792b747d 100644 --- a/man/XSetWMIconName.man +++ b/man/XSetWMIconName.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetWMName.man b/man/XSetWMName.man index 37f2b802..5e6d4764 100644 --- a/man/XSetWMName.man +++ b/man/XSetWMName.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetWMProperties.man b/man/XSetWMProperties.man index 8a9b1c38..e4886aaa 100644 --- a/man/XSetWMProperties.man +++ b/man/XSetWMProperties.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSetWMProtocols.man b/man/XSetWMProtocols.man index f3fefb61..a6990062 100644 --- a/man/XSetWMProtocols.man +++ b/man/XSetWMProtocols.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XStoreBytes.man b/man/XStoreBytes.man index 8cc82d7e..85eb2f82 100644 --- a/man/XStoreBytes.man +++ b/man/XStoreBytes.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XStoreColors.man b/man/XStoreColors.man index 6dccc93a..c683dcf2 100644 --- a/man/XStoreColors.man +++ b/man/XStoreColors.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XStringListToTextProperty.man b/man/XStringListToTextProperty.man index 42da5b18..aacf0478 100644 --- a/man/XStringListToTextProperty.man +++ b/man/XStringListToTextProperty.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -225,13 +225,11 @@ The structure contains: .LP .Ds 0 -.TA .5i 2.5i -.ta .5i 2.5i typedef struct { - unsigned char *value; /\&* property data */ - Atom encoding; /\&* type of property */ - int format; /\&* 8, 16, or 32 */ - unsigned long nitems; /\&* number of items in value */ + unsigned char *value; /\&* property data */ + Atom encoding; /\&* type of property */ + int format; /\&* 8, 16, or 32 */ + unsigned long nitems; /\&* number of items in value */ } XTextProperty; .De .SH "SEE ALSO" diff --git a/man/XStringToKeysym.man b/man/XStringToKeysym.man index 515ca919..092b75a2 100644 --- a/man/XStringToKeysym.man +++ b/man/XStringToKeysym.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSupportsLocale.man b/man/XSupportsLocale.man index 786aa6e4..68711b3b 100644 --- a/man/XSupportsLocale.man +++ b/man/XSupportsLocale.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XSynchronize.man b/man/XSynchronize.man index cf59c900..1f09789f 100644 --- a/man/XSynchronize.man +++ b/man/XSynchronize.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XTextExtents.man b/man/XTextExtents.man index c0c524fe..3e3f4ab2 100644 --- a/man/XTextExtents.man +++ b/man/XTextExtents.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XTextWidth.man b/man/XTextWidth.man index b9ec9424..c9ce6e80 100644 --- a/man/XTextWidth.man +++ b/man/XTextWidth.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XTranslateCoordinates.man b/man/XTranslateCoordinates.man index 019d1230..9d584f69 100644 --- a/man/XTranslateCoordinates.man +++ b/man/XTranslateCoordinates.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XUnmapEvent.man b/man/XUnmapEvent.man index edc4f644..86942df4 100644 --- a/man/XUnmapEvent.man +++ b/man/XUnmapEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,16 +148,14 @@ The structure for events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* UnmapNotify */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window event; - Window window; - Bool from_configure; + int type; /\&* UnmapNotify */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window event; + Window window; + Bool from_configure; } XUnmapEvent; .De .LP diff --git a/man/XUnmapWindow.man b/man/XUnmapWindow.man index 5c6cd332..d66c0eb3 100644 --- a/man/XUnmapWindow.man +++ b/man/XUnmapWindow.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XVaCreateNestedList.man b/man/XVaCreateNestedList.man index 7ccdadb2..55d55e44 100644 --- a/man/XVaCreateNestedList.man +++ b/man/XVaCreateNestedList.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XVisibilityEvent.man b/man/XVisibilityEvent.man index 0cdf54c8..31c763a4 100644 --- a/man/XVisibilityEvent.man +++ b/man/XVisibilityEvent.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -148,15 +148,13 @@ The structure for events contains: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - int type; /\&* VisibilityNotify */ - unsigned long serial; /\&* # of last request processed by server */ - Bool send_event; /\&* true if this came from a SendEvent request */ - Display *display; /\&* Display the event was read from */ - Window window; - int state; + int type; /\&* VisibilityNotify */ + unsigned long serial; /\&* # of last request processed by server */ + Bool send_event; /\&* true if this came from a SendEvent request */ + Display *display; /\&* Display the event was read from */ + Window window; + int state; } XVisibilityEvent; .De .LP diff --git a/man/XWarpPointer.man b/man/XWarpPointer.man index 930e8a56..84159620 100644 --- a/man/XWarpPointer.man +++ b/man/XWarpPointer.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XcmsAllocColor.man b/man/XcmsAllocColor.man index 0cef6a8a..1044bdeb 100644 --- a/man/XcmsAllocColor.man +++ b/man/XcmsAllocColor.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XcmsCCCOfColormap.man b/man/XcmsCCCOfColormap.man index 26ce0277..055eebdb 100644 --- a/man/XcmsCCCOfColormap.man +++ b/man/XcmsCCCOfColormap.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XcmsCIELabQueryMaxC.man b/man/XcmsCIELabQueryMaxC.man index 03beb48c..5713da03 100644 --- a/man/XcmsCIELabQueryMaxC.man +++ b/man/XcmsCIELabQueryMaxC.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XcmsCIELuvQueryMaxC.man b/man/XcmsCIELuvQueryMaxC.man index 41113dd4..9116e7a2 100644 --- a/man/XcmsCIELuvQueryMaxC.man +++ b/man/XcmsCIELuvQueryMaxC.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XcmsColor.man b/man/XcmsColor.man index 9bd38f58..e04264dd 100644 --- a/man/XcmsColor.man +++ b/man/XcmsColor.man @@ -48,7 +48,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XcmsConvertColors.man b/man/XcmsConvertColors.man index 1c4c416b..341ac338 100644 --- a/man/XcmsConvertColors.man +++ b/man/XcmsConvertColors.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XcmsCreateCCC.man b/man/XcmsCreateCCC.man index 65465d89..4063bb69 100644 --- a/man/XcmsCreateCCC.man +++ b/man/XcmsCreateCCC.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XcmsDefaultCCC.man b/man/XcmsDefaultCCC.man index 64c9a91b..832ced90 100644 --- a/man/XcmsDefaultCCC.man +++ b/man/XcmsDefaultCCC.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XcmsQueryBlack.man b/man/XcmsQueryBlack.man index baa82942..71752414 100644 --- a/man/XcmsQueryBlack.man +++ b/man/XcmsQueryBlack.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XcmsQueryColor.man b/man/XcmsQueryColor.man index 61fa50fb..eac80afd 100644 --- a/man/XcmsQueryColor.man +++ b/man/XcmsQueryColor.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XcmsSetWhitePoint.man b/man/XcmsSetWhitePoint.man index c93c0260..12bda269 100644 --- a/man/XcmsSetWhitePoint.man +++ b/man/XcmsSetWhitePoint.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XcmsStoreColor.man b/man/XcmsStoreColor.man index c9774d12..770c7950 100644 --- a/man/XcmsStoreColor.man +++ b/man/XcmsStoreColor.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XcmsTekHVCQueryMaxC.man b/man/XcmsTekHVCQueryMaxC.man index 3e0f40e3..b770a876 100644 --- a/man/XcmsTekHVCQueryMaxC.man +++ b/man/XcmsTekHVCQueryMaxC.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XmbDrawImageString.man b/man/XmbDrawImageString.man index c4d728fc..e726b73a 100644 --- a/man/XmbDrawImageString.man +++ b/man/XmbDrawImageString.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XmbDrawString.man b/man/XmbDrawString.man index f0933645..a5d80ea8 100644 --- a/man/XmbDrawString.man +++ b/man/XmbDrawString.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XmbDrawText.man b/man/XmbDrawText.man index 9b94256a..0785a300 100644 --- a/man/XmbDrawText.man +++ b/man/XmbDrawText.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -223,26 +223,22 @@ The .ZN XmbTextItem structure contains: .Ds 0 -.TA .5i 2.5i -.ta .5i 2.5i typedef struct { - char *chars; /\&* pointer to string */ - int nchars; /\&* number of bytes */ - int delta; /\&* pixel delta between strings */ - XFontSet font_set; /\&* fonts, None means don't change */ + char *chars; /\&* pointer to string */ + int nchars; /\&* number of bytes */ + int delta; /\&* pixel delta between strings */ + XFontSet font_set; /\&* fonts, None means don't change */ } XmbTextItem; .De The .ZN XwcTextItem structure contains: .Ds 0 -.TA .5i 2.5i -.ta .5i 2.5i typedef struct { - wchar_t *chars; /\&* pointer to wide char string */ - int nchars; /\&* number of wide characters */ - int delta; /\&* pixel delta between strings */ - XFontSet font_set; /\&* fonts, None means don't change */ + wchar_t *chars; /\&* pointer to wide char string */ + int nchars; /\&* number of wide characters */ + int delta; /\&* pixel delta between strings */ + XFontSet font_set; /\&* fonts, None means don't change */ } XwcTextItem; .De .SH "SEE ALSO" diff --git a/man/XmbLookupString.man b/man/XmbLookupString.man index 72bf2cdd..3066b9dc 100644 --- a/man/XmbLookupString.man +++ b/man/XmbLookupString.man @@ -51,7 +51,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XmbResetIC.man b/man/XmbResetIC.man index ac67c4a4..bdfe8021 100644 --- a/man/XmbResetIC.man +++ b/man/XmbResetIC.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XmbTextEscapement.man b/man/XmbTextEscapement.man index f6cdd140..2dbad305 100644 --- a/man/XmbTextEscapement.man +++ b/man/XmbTextEscapement.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XmbTextExtents.man b/man/XmbTextExtents.man index 4ff3366c..92bd36c3 100644 --- a/man/XmbTextExtents.man +++ b/man/XmbTextExtents.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XmbTextListToTextProperty.man b/man/XmbTextListToTextProperty.man index 5f1aad74..87f5f916 100644 --- a/man/XmbTextListToTextProperty.man +++ b/man/XmbTextListToTextProperty.man @@ -51,7 +51,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XmbTextPerCharExtents.man b/man/XmbTextPerCharExtents.man index cfaa1533..648ba62d 100644 --- a/man/XmbTextPerCharExtents.man +++ b/man/XmbTextPerCharExtents.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XrmEnumerateDatabase.man b/man/XrmEnumerateDatabase.man index 4fe68172..c63ceba8 100644 --- a/man/XrmEnumerateDatabase.man +++ b/man/XrmEnumerateDatabase.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -205,15 +205,13 @@ The procedure is called with the following arguments: .LP .\" Start marker code here .Ds 0 -.TA .5i 3i -.ta .5i 3i (*\fIproc\fP\^)(\^\fIdatabase\fP, \fIbindings\fP, \fIquarks\fP, \fItype\fP, \fIvalue\fP, \fIarg\fP\^) - XrmDatabase *\fIdatabase\fP\^; - XrmBindingList \fIbindings\fP\^; - XrmQuarkList \fIquarks\fP\^; - XrmRepresentation *\fItype\fP\^; - XrmValue *\fIvalue\fP\^; - XPointer \fIarg\fP\^; + XrmDatabase *\fIdatabase\fP\^; + XrmBindingList \fIbindings\fP\^; + XrmQuarkList \fIquarks\fP\^; + XrmRepresentation *\fItype\fP\^; + XrmValue *\fIvalue\fP\^; + XPointer \fIarg\fP\^; .De .\" End marker code here .LP diff --git a/man/XrmGetFileDatabase.man b/man/XrmGetFileDatabase.man index 08d0810f..32265a0d 100644 --- a/man/XrmGetFileDatabase.man +++ b/man/XrmGetFileDatabase.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XrmGetResource.man b/man/XrmGetResource.man index 2745892d..c2658818 100644 --- a/man/XrmGetResource.man +++ b/man/XrmGetResource.man @@ -50,7 +50,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XrmInitialize.man b/man/XrmInitialize.man index 3e6dcd1a..6bb75420 100644 --- a/man/XrmInitialize.man +++ b/man/XrmInitialize.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp @@ -219,39 +219,33 @@ and structures contain: .LP .Ds 0 -.TA .5i 3i -.ta .5i 3i typedef struct { - unsigned int size; - XPointer addr; + unsigned int size; + XPointer addr; } XrmValue, *XrmValuePtr; .De .LP .Ds 0 -.TA .5i 2.5i -.ta .5i 2.5i typedef enum { - XrmoptionNoArg, /\&* Value is specified in XrmOptionDescRec.value */ - XrmoptionIsArg, /\&* Value is the option string itself */ - XrmoptionStickyArg, /\&* Value is characters immediately following option */ - XrmoptionSepArg, /\&* Value is next argument in argv */ - XrmoptionResArg, /\&* Resource and value in next argument in argv */ - XrmoptionSkipArg, /\&* Ignore this option and the next argument in argv */ - XrmoptionSkipLine, /\&* Ignore this option and the rest of argv */ - XrmoptionSkipNArgs /\&* Ignore this option and the next - \ \ \ XrmOptionDescRec.value arguments in argv */ + XrmoptionNoArg, /\&* Value is specified in XrmOptionDescRec.value */ + XrmoptionIsArg, /\&* Value is the option string itself */ + XrmoptionStickyArg, /\&* Value is characters immediately following option */ + XrmoptionSepArg, /\&* Value is next argument in argv */ + XrmoptionResArg, /\&* Resource and value in next argument in argv */ + XrmoptionSkipArg, /\&* Ignore this option and the next argument in argv */ + XrmoptionSkipLine, /\&* Ignore this option and the rest of argv */ + XrmoptionSkipNArgs /\&* Ignore this option and the next + \ \ \ XrmOptionDescRec.value arguments in argv */ } XrmOptionKind; .De .LP .Ds 0 -.TA .5i 2.5i -.ta .5i 2.5i typedef struct { - char *option; /\&* Option specification string in argv */ - char *specifier; /\&* Binding and resource name (sans application name) */ - XrmOptionKind argKind; /\&* Which style of option it is */ - XPointer value; /\&* Value to provide if XrmoptionNoArg or - \ \ \ XrmoptionSkipNArgs */ + char *option; /\&* Option specification string in argv */ + char *specifier; /\&* Binding and resource name (sans application name) */ + XrmOptionKind argKind; /\&* Which style of option it is */ + XPointer value; /\&* Value to provide if XrmoptionNoArg or + \ \ \ XrmoptionSkipNArgs */ } XrmOptionDescRec, *XrmOptionDescList; .De .SH "SEE ALSO" diff --git a/man/XrmMergeDatabases.man b/man/XrmMergeDatabases.man index bb4d3bdd..a605319d 100644 --- a/man/XrmMergeDatabases.man +++ b/man/XrmMergeDatabases.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XrmPutResource.man b/man/XrmPutResource.man index fb9638e8..ce3e2c60 100644 --- a/man/XrmPutResource.man +++ b/man/XrmPutResource.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp diff --git a/man/XrmUniqueQuark.man b/man/XrmUniqueQuark.man index 78ae2e63..8116bf4a 100644 --- a/man/XrmUniqueQuark.man +++ b/man/XrmUniqueQuark.man @@ -49,7 +49,7 @@ .de Ds .nf .\\$1D \\$2 \\$1 -.ft 1 +.ft CW .\".ps \\n(PS .\".if \\n(VS>=40 .vs \\n(VSu .\".if \\n(VS<=39 .vs \\n(VSp |