*** cursor.c Mon Oct 12 11:18:12 1992 --- ../cursor.c Fri Nov 6 18:45:43 1992 *************** *** 47,52 **** --- 47,53 ---- Cursor cursor; } cursor_names[] = { + {"None", None, None}, {"X_cursor", XC_X_cursor, None}, {"arrow", XC_arrow, None}, {"based_arrow_down", XC_based_arrow_down, None}, *************** *** 132,138 **** { int i; ! for (i = 0; i < sizeof(cursor_names)/sizeof(struct _CursorName); i++) { if (strcmp(str, cursor_names[i].name) == 0) { --- 133,139 ---- { int i; ! for (i = 1; i < sizeof(cursor_names)/sizeof(struct _CursorName); i++) { if (strcmp(str, cursor_names[i].name) == 0) { *************** *** 142,147 **** --- 143,153 ---- *cp = cursor_names[i].cursor; return; } + } + if (strcmp(str,cursor_names[0].name) == 0) + { + *cp = cursor_names[0].cursor; + return; } fprintf (stderr, "%s: unable to find font cursor \"%s\"\n", ProgramName, str);