Small line-break fix for DEBUG_KBD.

git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@181 423420c4-83ab-492f-b58f-81f9feb106b5
This commit is contained in:
Peter Åstrand 2002-09-17 16:55:43 +00:00
parent 85c1a03f7d
commit b9eeaf747d

4
xwin.c
View File

@ -499,13 +499,13 @@ xwin_process_events()
else
{
/* Plain old XLookupString */
DEBUG_KBD(("No input context, using XLookupString\n"));
DEBUG_KBD(("\nNo input context, using XLookupString\n"));
XLookupString((XKeyEvent *) & xevent,
str, sizeof(str), &keysym, NULL);
}
ksname = get_ksname(keysym);
DEBUG_KBD(("\nKeyPress for (keysym 0x%lx, %s)\n", keysym, ksname));
DEBUG_KBD(("KeyPress for (keysym 0x%lx, %s)\n", keysym, ksname));
if (handle_special_keys(keysym, ev_time, True))
break;