summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-07-26 18:17:07 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-07-26 18:17:07 +0800
commit2e9ffdbbc5ab67505152ef009c4b1cec57a00e73 (patch)
tree44f3feedc3612e378b9a648ff04cc8cf3a756e58
parentf691debbb8d669831feba1740ba0e6ac0d815cca (diff)
downloadpttbbs-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
-rw-r--r--mbbsd/io.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/mbbsd/io.c b/mbbsd/io.c
index a7042ad5..63a28fe4 100644
--- a/mbbsd/io.c
+++ b/mbbsd/io.c
@@ -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;