Mon Jan 3 11:14:27 PST 2000 Michael Jennings <mej@eterm.org>

First commit of the new year!  (Notice I didn't say the new millenium,
	since *that* doesn't start until Jan 1, 2001.)

	This should hopefully fix the bug where dead keys would bring up the
	menu.


SVN revision: 1823
This commit is contained in:
Michael Jennings 2000-01-03 08:07:32 +00:00
parent 31afa9e2a8
commit 04b6556890
2 changed files with 10 additions and 1 deletions

View File

@ -2976,3 +2976,12 @@ Thu Dec 30 14:55:59 PST 1999 Michael Jennings <mej@eterm.org>
gdb with Eterm for ages.
-------------------------------------------------------------------------------
Mon Jan 3 11:14:27 PST 2000 Michael Jennings <mej@eterm.org>
First commit of the new year! (Notice I didn't say the new millenium,
since *that* doesn't start until Jan 1, 2001.)
This should hopefully fix the bug where dead keys would bring up the
menu.
-------------------------------------------------------------------------------

View File

@ -126,7 +126,7 @@ action_dispatch(event_t *ev, KeySym keysym) {
}
}
D_ACTIONS(("Modifiers passed. keysym == 0x%08x, action->keysym == 0x%08x\n", keysym, action->keysym));
if ((keysym) && (action->keysym) && (keysym != action->keysym)) {
if ((ev->xany.type == KeyPress) && (action->keysym) && (keysym != action->keysym)) {
continue;
}
D_ACTIONS(("Match found.\n"));