diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-07-26 18:17:07 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-07-26 18:17:07 +0800 |
commit | 2e9ffdbbc5ab67505152ef009c4b1cec57a00e73 (patch) | |
tree | 44f3feedc3612e378b9a648ff04cc8cf3a756e58 /mbbsd | |
parent | f691debbb8d669831feba1740ba0e6ac0d815cca (diff) | |
download | pttbbs-2e9ffdbbc5ab67505152ef009c4b1cec57a00e73.tar pttbbs-2e9ffdbbc5ab67505152ef009c4b1cec57a00e73.tar.gz pttbbs-2e9ffdbbc5ab67505152ef009c4b1cec57a00e73.tar.bz2 pttbbs-2e9ffdbbc5ab67505152ef009c4b1cec57a00e73.tar.lz pttbbs-2e9ffdbbc5ab67505152ef009c4b1cec57a00e73.tar.xz pttbbs-2e9ffdbbc5ab67505152ef009c4b1cec57a00e73.tar.zst pttbbs-2e9ffdbbc5ab67505152ef009c4b1cec57a00e73.zip |
enable Esc-1 Esc-4 again
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2964 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/io.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -314,8 +314,15 @@ igetch(void) if (ch == '[' || ch == 'O') { mode = 2; last = ch; } +#if 0 + /* some user complained about this since they wanna + * do Esc-N paste in vedit. + * Before anyone to explain what this is for, + * this will be commented. + */ else if (ch == '1' || ch == '4') /* what is this!? */ { mode = 3; last = ch; } +#endif else { KEY_ESC_arg = ch; return KEY_ESC; |