From: Owen Dunn Date: Mon, 13 Jan 2003 15:06:56 +0000 (+0000) Subject: Make ^/ do the same as ^_ (wish control-slash) X-Git-Tag: 0.54~538 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=011542a9d589d48c92a315bb64e74dcfc8bc6258;p=PuTTY.git Make ^/ do the same as ^_ (wish control-slash) [originally from svn r2576] --- diff --git a/window.c b/window.c index fdef3e67..88bbad7a 100644 --- a/window.c +++ b/window.c @@ -3488,7 +3488,7 @@ static int TranslateKey(UINT message, WPARAM wParam, LPARAM lParam, *p++ = "\000\033\034\035\036\037\177"[wParam - '2']; return p - output; } - if (shift_state == 2 && wParam == 0xBD) { + if (shift_state == 2 && (wParam == 0xBD || wParam == 0xBF)) { *p++ = 0x1F; return p - output; }