diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-06-20 15:08:55 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-06-20 15:08:55 +0000 |
commit | 6e1aaa542309fc612141b05ee58f5150cff5f252 (patch) | |
tree | 45193c718781d9ae16eb8dcc6d4b2e156485cead /src | |
parent | 4b6b6658e49de73ed5d9495be17eb5d0fd95857b (diff) | |
download | emacs-6e1aaa542309fc612141b05ee58f5150cff5f252.tar.gz |
(map_virt_key): Mark some additional chars as valid ASCII.
Diffstat (limited to 'src')
-rw-r--r-- | src/w32inevt.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/w32inevt.c b/src/w32inevt.c index f9e8a07cd60..53876cb6ee0 100644 --- a/src/w32inevt.c +++ b/src/w32inevt.c @@ -274,7 +274,7 @@ static int map_virt_key[256] = 0xd5, /* VK_F24 */ -1, -1, -1, -1, -1, -1, -1, -1, 0x7f, /* VK_NUMLOCK */ - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 0x9f */ + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 0x9f */ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 0xaf */ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 0xb9 */ -2, /* ; */ @@ -284,16 +284,16 @@ static int map_virt_key[256] = -2, /* . */ -2, /* / */ -2, /* ` */ - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 0xcf */ + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 0xcf */ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 0xda */ - -2, /* [ */ - -2, /* - */ - -2, /* ] */ - -2, /* ' */ - -1, /* 0xdf */ - -1, -1, -2, /* VK_OEM_102 */ - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 0xef */ - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 /* 0xff */ + -2, -2, -2, -2, -2, /* 0xdf */ + -2, -2, -2, -2, -2, + -1, /* 0xe5 */ + -2, /* oxe6 */ + -1, -1, /* 0xe8 */ + -2, -2, -2, -2, -2, -2, -2, /* 0xef */ + -2, -2, -2, -2, -2, -2, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 /* 0xff */ }; static int |