diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-13 02:22:47 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-13 02:22:47 +0000 |
commit | b1bc7d7328ff2741e1c13151799422fee9e6d0cd (patch) | |
tree | 0b5d9f73c5b2b1862f4273a55eaf128c224218d5 | |
parent | 08ccddfa98d3e4daa9993a206ec0fa3cf9329cd1 (diff) |
Use troff macros to prevent cpp eating C comments & #defines that areXORG-6_8_99_901
supposed to appear in man page output.
-rw-r--r-- | man/Xcursor.man | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/man/Xcursor.man b/man/Xcursor.man index acae335..b688993 100644 --- a/man/Xcursor.man +++ b/man/Xcursor.man @@ -162,12 +162,12 @@ value containing ARGB with A in the high byte. .nf .ft CR typedef struct _XcursorImage { - XcursorDim size; /* nominal size for matching */ - XcursorDim width; /* actual width */ - XcursorDim height; /* actual height */ - XcursorDim xhot; /* hot spot x (must be inside image) */ - XcursorDim yhot; /* hot spot y (must be inside image) */ - XcursorPixel *pixels; /* pointer to pixels */ + XcursorDim size; /\(** nominal size for matching */ + XcursorDim width; /\(** actual width */ + XcursorDim height; /\(** actual height */ + XcursorDim xhot; /\(** hot spot x (must be inside image) */ + XcursorDim yhot; /\(** hot spot y (must be inside image) */ + XcursorPixel *pixels; /\(** pointer to pixels */ } XcursorImage; .ft .fi @@ -180,8 +180,8 @@ XcursorImages is freed. .nf .ft CR typedef struct _XcursorImages { - int nimage; /* number of images */ - XcursorImage **images; /* array of XcursorImage pointers */ + int nimage; /\(** number of images */ + XcursorImage **images; /\(** array of XcursorImage pointers */ } XcursorImages; .ft .fi @@ -195,10 +195,10 @@ structures can use the same XcursorCursors. .nf .ft CR typedef struct _XcursorCursors { - Display *dpy; /* Display holding cursors */ - int ref; /* reference count */ - int ncursor; /* number of cursors */ - Cursor *cursors; /* array of cursors */ + Display *dpy; /\(** Display holding cursors */ + int ref; /\(** reference count */ + int ncursor; /\(** number of cursors */ + Cursor *cursors; /\(** array of cursors */ } XcursorCursors; .ft .fi @@ -212,8 +212,8 @@ holds a reference which is removed when the XcursorAnimate is freed. .nf .ft CR typedef struct _XcursorAnimate { - XcursorCursors *cursors; /* list of cursors to use */ - int sequence; /* which cursor is next */ + XcursorCursors *cursors; /\(** list of cursors to use */ + int sequence; /\(** which cursor is next */ } XcursorAnimate; .ft .fi |