diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-07-28 19:52:04 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-07-28 19:52:04 +0800 |
commit | 50c77ea036789d89e87169da367bbbec9aff04ad (patch) | |
tree | 9bfab17f1cf423ddfd59f44596cd2747a7c57e5b | |
parent | 95fcb25895d67baf420639b27c528053eb11e6ec (diff) | |
download | pttbbs-50c77ea036789d89e87169da367bbbec9aff04ad.tar pttbbs-50c77ea036789d89e87169da367bbbec9aff04ad.tar.gz pttbbs-50c77ea036789d89e87169da367bbbec9aff04ad.tar.bz2 pttbbs-50c77ea036789d89e87169da367bbbec9aff04ad.tar.lz pttbbs-50c77ea036789d89e87169da367bbbec9aff04ad.tar.xz pttbbs-50c77ea036789d89e87169da367bbbec9aff04ad.tar.zst pttbbs-50c77ea036789d89e87169da367bbbec9aff04ad.zip |
pretty format
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2973 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | mbbsd/board.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c index 08d7ffac..d7be9eb6 100644 --- a/mbbsd/board.c +++ b/mbbsd/board.c @@ -493,8 +493,9 @@ show_brdlist(int head, int clsflag, int newflag) showtitle("看板列表", BBSName); prints("[←]主選單 [→]閱\讀 [↑↓]選擇 [S]排序 [/]搜尋 " "[m]加入或移出我的最愛 [h]求助\n" - ANSI_COLOR(7) "%-20s 類別 轉信%-31s人氣 板 主 " ANSI_RESET, - newflag ? "總數 未讀 看 板" : " 編號 看 板", + ANSI_COLOR(7) "%-20s 類別 轉信%-30s" + "人氣 板 主 " ANSI_RESET, + newflag ? "總數 未讀 看 板" : " 編號 看 板", " 中 文 敘 述"); move(b_lines, 0); brdlist_foot(); @@ -600,10 +601,10 @@ show_brdlist(int head, int clsflag, int newflag) outs(ANSI_COLOR(1) "HOT" ANSI_RESET); else //if (B_BH(ptr)->nuser > 50) prints(ANSI_COLOR(1;31) "%2d" ANSI_RESET " ", B_BH(ptr)->nuser); - prints("%.*s" ANSI_CLRTOEND, t_columns - 67, B_BH(ptr)->BM); + prints("%.*s" ANSI_CLRTOEND, t_columns - 66, B_BH(ptr)->BM); } else { prints("%-40.40s %.*s", B_BH(ptr)->title + 7, - t_columns - 67, B_BH(ptr)->BM); + t_columns - 66, B_BH(ptr)->BM); } } clrtoeol(); |