https://bugzilla.novell.com/show_bug.cgi?id=220728 ------- Comment #20 from dickey@his.com 2006-11-26 15:35 MST ------- This change restores the behavior that the bug report refers to. (My notes on that part said it was to allow modifier parameters on the numeric keypad - will revisit that, but this tweak should be enough for your immediate needs): RCS file: RCS/input.c,v retrieving revision 1.266 diff -u -r1.266 input.c --- input.c 2006/11/18 00:00:55 1.266 +++ input.c 2006/11/26 22:33:06 @@ -305,19 +305,13 @@ Bool result = False; (void) screen; - if (1 -#if OPT_SUNPC_KBD || OPT_VT52 - && !(((IsKeypadKey(kd->keysym) && keypad_mode) - || kd->is_fkey) - && (0 + if (!(IsKeypadKey(kd->keysym) && keypad_mode) #if OPT_SUNPC_KBD - || (keyboard->type == keyboardIsVT220) + && keyboard->type != keyboardIsVT220 #endif #if OPT_VT52_MODE - || (screen->vtXX_level == 0) + && screen->vtXX_level != 0 #endif - )) -#endif /* OPT_SUNPC_KBD || OPT_VT52 */ ) { result = True; } -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.