summaryrefslogtreecommitdiffstats
path: root/mbbsd/edit.c
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-01-04 13:44:08 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-01-04 13:44:08 +0800
commitb2c08c88e76f49c29a260fd72fd8f00577fbfb68 (patch)
tree3f898952e8fdc1db0b9e1973ca39c8ee82577934 /mbbsd/edit.c
parent9859c6703c37ac408620a22d63801bd4f896fe4c (diff)
downloadpttbbs-b2c08c88e76f49c29a260fd72fd8f00577fbfb68.tar
pttbbs-b2c08c88e76f49c29a260fd72fd8f00577fbfb68.tar.gz
pttbbs-b2c08c88e76f49c29a260fd72fd8f00577fbfb68.tar.bz2
pttbbs-b2c08c88e76f49c29a260fd72fd8f00577fbfb68.tar.lz
pttbbs-b2c08c88e76f49c29a260fd72fd8f00577fbfb68.tar.xz
pttbbs-b2c08c88e76f49c29a260fd72fd8f00577fbfb68.tar.zst
pttbbs-b2c08c88e76f49c29a260fd72fd8f00577fbfb68.zip
- comments: better not use Ctrl-O as hotkey. UNIX does not send ^O by default.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3783 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/edit.c')
-rw-r--r--mbbsd/edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/edit.c b/mbbsd/edit.c
index 710406c2..8b9c90bf 100644
--- a/mbbsd/edit.c
+++ b/mbbsd/edit.c
@@ -3364,8 +3364,8 @@ vedit2(char *fpath, int saveheader, int *islocal, int flags)
case Ctrl('A'):
curr_buf->currpnt = 0;
break;
+ case Ctrl('O'): // better not use ^O - UNIX not sending.
case KEY_INS: /* Toggle insert/overwrite */
- case Ctrl('O'):
if (has_block_selection() && curr_buf->insert_mode) {
char ans[4];