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:
parent
0e52f05217
commit
011542a9d5
2
window.c
2
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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user