diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/cmds.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cmds.c b/src/cmds.c index 67853289e7f..f405413913c 100644 --- a/src/cmds.c +++ b/src/cmds.c @@ -389,6 +389,10 @@ keys_of_cmds () initial_define_key (global_map, Ctl('I'), "self-insert-command"); for (n = 040; n < 0177; n++) initial_define_key (global_map, n, "self-insert-command"); +#ifdef MSDOS + for (n = 0200; n < 0240; n++) + initial_define_key (global_map, n, "self-insert-command"); +#endif for (n = 0240; n < 0400; n++) initial_define_key (global_map, n, "self-insert-command"); |
