diff options
author | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-02-02 18:31:35 +0800 |
---|---|---|
committer | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-02-02 18:31:35 +0800 |
commit | 706492c2fe65f1eef279c83d68f61842f5140d71 (patch) | |
tree | a4f158580a1d6c13ba30a3ad42a2fa96f845c07a | |
parent | 031847d86000acd6afa8ba7023762c0e6788ac9c (diff) | |
download | pttbbs-706492c2fe65f1eef279c83d68f61842f5140d71.tar pttbbs-706492c2fe65f1eef279c83d68f61842f5140d71.tar.gz pttbbs-706492c2fe65f1eef279c83d68f61842f5140d71.tar.bz2 pttbbs-706492c2fe65f1eef279c83d68f61842f5140d71.tar.lz pttbbs-706492c2fe65f1eef279c83d68f61842f5140d71.tar.xz pttbbs-706492c2fe65f1eef279c83d68f61842f5140d71.tar.zst pttbbs-706492c2fe65f1eef279c83d68f61842f5140d71.zip |
fix cursor position
thanks to akiecs.bbs@ptt2 (AK)
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@649 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | mbbsd/mail.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mbbsd/mail.c b/mbbsd/mail.c index 3d06e087..d2a84154 100644 --- a/mbbsd/mail.c +++ b/mbbsd/mail.c @@ -1,4 +1,4 @@ -/* $Id: mail.c,v 1.25 2003/01/19 16:06:06 kcwu Exp $ */ +/* $Id: mail.c,v 1.26 2003/02/02 10:31:35 kcwu Exp $ */ #include "bbs.h" char currmaildir[32]; static char msg_cc[] = "\033[32m[群組名單]\033[m\n"; @@ -349,10 +349,10 @@ multi_list(int *reciper) while (1) { stand_title("群組寄信名單"); ShowNameList(3, 0, msg_cc); - getdata(1, 0, - "(I)引入好友 (O)引入上線通知 (N)引入新文章通知 " - "(0-9)引入其他特別名單\n" - "(A)增加 (D)刪除 (M)確認寄信名單 (Q)取消 ?[M]", + move(1, 0); + prints("(I)引入好友 (O)引入上線通知 (N)引入新文章通知 (0-9)引入其他特別名單"); + getdata(2, 0, + "(A)增加 (D)刪除 (M)確認寄信名單 (Q)取消 ?[M]", genbuf, 4, LCECHO); switch (genbuf[0]) { case 'a': |