diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-07-26 02:02:24 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-07-26 02:02:24 +0800 |
commit | 7cd7fa6b7e73d78325b745fbf3e3281872eec634 (patch) | |
tree | 0bc64001e6b08318fe5190f6ff310f2dac1374a4 | |
parent | fe85c2da76306d6875a4bcae37c7afee3e9e6eac (diff) | |
download | pttbbs-7cd7fa6b7e73d78325b745fbf3e3281872eec634.tar pttbbs-7cd7fa6b7e73d78325b745fbf3e3281872eec634.tar.gz pttbbs-7cd7fa6b7e73d78325b745fbf3e3281872eec634.tar.bz2 pttbbs-7cd7fa6b7e73d78325b745fbf3e3281872eec634.tar.lz pttbbs-7cd7fa6b7e73d78325b745fbf3e3281872eec634.tar.xz pttbbs-7cd7fa6b7e73d78325b745fbf3e3281872eec634.tar.zst pttbbs-7cd7fa6b7e73d78325b745fbf3e3281872eec634.zip |
why move(*,1) before? I can't understand.
let's move to (*, 0).
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2962 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | mbbsd/announce.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mbbsd/announce.c b/mbbsd/announce.c index f8332c02..4935b32d 100644 --- a/mbbsd/announce.c +++ b/mbbsd/announce.c @@ -172,14 +172,14 @@ a_showmenu(const menu_t * pm) } else outs("\n 《精華區》尚在吸取天地間的日月精華中... :)"); - move(b_lines, 1); + move(b_lines, 0); if(copyqueue_querysize() > 0) { // something in queue prints( - ANSI_COLOR(34;46) "【已標記 %d 個項目】" + ANSI_COLOR(37;44) "【已標記 %d 個項目】" ANSI_COLOR(31;47) " (h)" ANSI_COLOR(30) "說明 " ANSI_COLOR(31) "(p)" ANSI_COLOR(30) "貼上或重設標記 " - ANSI_COLOR(31) "(a)" ANSI_COLOR(30) "附加至文章後 " + ANSI_COLOR(31) "(a)" ANSI_COLOR(30) "附加至文章後 " // ANSI_COLOR(31) "[注意]" ANSI_COLOR(30) "拷貝後才能刪除原文!" ANSI_RESET , copyqueue_querysize()); } @@ -530,7 +530,7 @@ a_appenditem(const menu_t * pm, int isask) char ans[2] = "y"; FILE *fp, *fin; - move(b_lines - 1, 1); + move(b_lines - 1, 0); if(copyqueue_querysize() <= 0) { vmsg("請先執行 copy 命令後再 append"); @@ -813,7 +813,7 @@ a_showname(const menu_t * pm) int i; int sym; - move(b_lines - 1, 1); + move(b_lines - 1, 0); snprintf(buf, sizeof(buf), "%s/%s", pm->path, pm->header[pm->now - pm->page].filename); if (dashl(buf)) { |