diff --git a/doc/x11.man b/doc/x11.man index 08666608..84f7b7a3 100644 --- a/doc/x11.man +++ b/doc/x11.man @@ -112,15 +112,11 @@ pointerForeColor: The foreground colour of the pointer. pointerBackColor: The background colour of the pointer. Default: white -cursorColor: The colour of the text cursor. - Default: red - *** This resource is now obsolete and is ignored. *** - textCursor: The alignment of the text cursor; horizontal or vertical. Default: horizontal colorBlack: The color of the COLOR_BLACK attribute. - Default: black + Default: Black colorRed: The color of the COLOR_RED attribute. Default: red3 @@ -141,7 +137,7 @@ colorCyan: The color of the COLOR_CYAN attribute. Default: cyan3 colorWhite: The color of the COLOR_WHITE attribute. - Default: grey + Default: Grey colorBoldBlack: COLOR_BLACK combined with A_BOLD. Default: grey40 @@ -165,7 +161,7 @@ colorBoldCyan: COLOR_CYAN combined with A_BOLD. Default: cyan1 colorBoldWhite: COLOR_WHITE combined with A_BOLD. - Default: white + Default: White bitmap: The name of a valid bitmap file of depth 1 (black and white) used for the application's icon. The file is an X bitmap. diff --git a/x11/XCurses.def b/x11/XCurses.def index 9031dad7..2c6d309a 100644 --- a/x11/XCurses.def +++ b/x11/XCurses.def @@ -15,7 +15,6 @@ testcurs.colorBlack: midnightblue testcurs.lines: 30 testcurs.normalFont: 7x13 testcurs.boldFont: 7x13bold -testcurs.cursorColor: orange ! ! resources for THE - Xcurses ! diff --git a/x11/pdcx11.c b/x11/pdcx11.c index 9b4b2453..d7bebf86 100644 --- a/x11/pdcx11.c +++ b/x11/pdcx11.c @@ -26,7 +26,7 @@ #ifdef PDCDEBUG const char *rcsid_PDCx11 = - "$Id: pdcx11.c,v 1.47 2006/02/05 14:27:04 wmcbrine Exp $"; + "$Id: pdcx11.c,v 1.48 2006/02/14 00:21:53 wmcbrine Exp $"; #endif AppData app_data; @@ -446,16 +446,6 @@ XtResource app_resources[PDC_NUMBER_APP_RESOURCES] = (XtPointer)80, }, - { - XtNcursorColor, - XtCCursorColor, - XtRPixel, - sizeof(Pixel), - XtOffsetOf(AppData, cursorColor), - XtRString, - (XtPointer)"Red", - }, - { XtNcolorBlack, XtCColorBlack, @@ -810,7 +800,6 @@ XrmOptionDescRec options[PDC_NUMBER_OPTIONS] = {"-pointerForeColor", "*pointerForeColor", XrmoptionSepArg, NULL }, {"-pointerBackColor", "*pointerBackColor", XrmoptionSepArg, NULL }, {"-cursorBlinkRate", "*cursorBlinkRate", XrmoptionSepArg, NULL }, - {"-cursorColor", "*cursorColor", XrmoptionSepArg, NULL }, {"-textCursor", "*textCursor", XrmoptionSepArg, NULL }, {"-colorBlack", "*colorBlack", XrmoptionSepArg, NULL }, {"-colorRed", "*colorRed", XrmoptionSepArg, NULL },