summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2021-03-19 17:08:42 -0400
committerThomas E. Dickey <dickey@invisible-island.net>2021-03-19 17:16:15 -0400
commit403bb32d5fb0dbb9e83ec7a5743b2fee75445ea7 (patch)
tree2da2ccc9cde84791185255fb0676a1b748ccfa27
parent1ab5ffa9e394bf51f90893210fc6f1e3849891ab (diff)
downloadxorg-lib-libXcursor-403bb32d5fb0dbb9e83ec7a5743b2fee75445ea7.tar.gz
eliminate special escaping for "/*" which produces look-alike Unicode for
newer groff (making select/paste useless), but is not necessary with groff, mandoc or Solaris 10 nroff. Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
-rw-r--r--man/Xcursor.man28
1 files changed, 14 insertions, 14 deletions
diff --git a/man/Xcursor.man b/man/Xcursor.man
index 976ec48..5ec19d0 100644
--- a/man/Xcursor.man
+++ b/man/Xcursor.man
@@ -221,12 +221,12 @@ value containing ARGB with A in the high byte.
.sp
.QC
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;
.QE
.
@@ -238,8 +238,8 @@ XcursorImages is freed in XcursorImagesDestroy.
.sp
.QC
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;
.QE
.
@@ -251,10 +251,10 @@ structures can use the same XcursorCursors.
.sp
.QC
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;
.QE
.
@@ -266,8 +266,8 @@ holds a reference which is removed when the XcursorAnimate is freed.
.sp
.QC
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;
.QE
.