1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-05-28 23:34:49 -05:00

Make ^/ do the same as ^_ (wish control-slash)

[originally from svn r2576]
This commit is contained in:
Owen Dunn 2003-01-13 15:06:56 +00:00
parent 0e52f05217
commit 011542a9d5

View File

@ -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;
}