Let's spell '\t' as VK_TAB in that last patch, in fact, just in case
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Mon, 13 Mar 2000 15:04:07 +0000 (15:04 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Mon, 13 Mar 2000 15:04:07 +0000 (15:04 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/putty@409 cda61777-01e9-0310-a592-d414129be87e

window.c

index a7aeb1f..3852d9e 100644 (file)
--- a/window.c
+++ b/window.c
@@ -1435,7 +1435,7 @@ static int TranslateKey(WPARAM wParam, LPARAM lParam, unsigned char *output) {
     /*
      * Shift-Tab should send ESC [ Z.
      */
-    if (ret && (keystate[VK_SHIFT] & 0x80) && wParam == '\t') {
+    if (ret && (keystate[VK_SHIFT] & 0x80) && wParam == VK_TAB) {
         *p++ = 0x1B;                   /* ESC */
         *p++ = '[';
         *p++ = 'Z';