summaryrefslogtreecommitdiffstats
path: root/mbbsd/board.c
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-04-13 00:48:34 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-04-13 00:48:34 +0800
commit050df9b137cf1be6876e551a5a98c1038be73b50 (patch)
tree104fef52b1ca6b95ae3be806f02540d056cd93f0 /mbbsd/board.c
parent30b08ca27e39588cde705a96381a9643d534351e (diff)
downloadpttbbs-050df9b137cf1be6876e551a5a98c1038be73b50.tar
pttbbs-050df9b137cf1be6876e551a5a98c1038be73b50.tar.gz
pttbbs-050df9b137cf1be6876e551a5a98c1038be73b50.tar.bz2
pttbbs-050df9b137cf1be6876e551a5a98c1038be73b50.tar.lz
pttbbs-050df9b137cf1be6876e551a5a98c1038be73b50.tar.xz
pttbbs-050df9b137cf1be6876e551a5a98c1038be73b50.tar.zst
pttbbs-050df9b137cf1be6876e551a5a98c1038be73b50.zip
- visio: add vbar and varf, better l-r API.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4148 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/board.c')
-rw-r--r--mbbsd/board.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c
index 1f6c34de..d6816ff0 100644
--- a/mbbsd/board.c
+++ b/mbbsd/board.c
@@ -1108,7 +1108,6 @@ show_brdlist(int head, int clsflag, int newflag)
showtitle("看板列表", BBSName);
// [m]加入或移出我的最愛
outs("[←][q]主選單 [→][r]閱\讀 [↑↓]選擇 [PgUp][PgDn]翻頁 [S]排序 [/]搜尋 [h]求助\n");
- outs(ANSI_COLOR(7));
// boards in Ptt series are very, very large.
// let's create more space for board numbers,
@@ -1116,9 +1115,8 @@ show_brdlist(int head, int clsflag, int newflag)
//
// newflag is not so different now because we use all 5 digits.
- outs( newflag ? " 總數" : " 編號");
- outs(" 看 板 類別 轉信 中 文 敘 述 人氣 板 主");
- outslr("", 74, ANSI_RESET, 0);
+ vbarf(ANSI_COLOR(7) " %s 看 板 類別 轉信 中 文 敘 述 人氣 板 主",
+ newflag ? "總數" : "編號");
move(b_lines, 0);
brdlist_foot();
}