diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2012-04-06 15:24:46 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2012-04-06 15:24:46 +0800 |
commit | 399d4e6962dd363f95c08288dd20b30b664e089a (patch) | |
tree | c65542909134beccea7b242ab03daba39db8ac36 | |
parent | 7296f68a7291917d674b76a3c8a1b9384e53be2b (diff) | |
download | pttbbs-399d4e6962dd363f95c08288dd20b30b664e089a.tar pttbbs-399d4e6962dd363f95c08288dd20b30b664e089a.tar.gz pttbbs-399d4e6962dd363f95c08288dd20b30b664e089a.tar.bz2 pttbbs-399d4e6962dd363f95c08288dd20b30b664e089a.tar.lz pttbbs-399d4e6962dd363f95c08288dd20b30b664e089a.tar.xz pttbbs-399d4e6962dd363f95c08288dd20b30b664e089a.tar.zst pttbbs-399d4e6962dd363f95c08288dd20b30b664e089a.zip |
Users turned on modmark: P1=0.79%, P2=0.35%, both < 1%, so this feature
still should be removed in future.
But anyway, let's do this later.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@5601 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/mbbsd/user.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/pttbbs/mbbsd/user.c b/pttbbs/mbbsd/user.c index 36a3716f..1e414049 100644 --- a/pttbbs/mbbsd/user.c +++ b/pttbbs/mbbsd/user.c @@ -444,7 +444,7 @@ void Customize(void) "MYFAV 新板自動進我的最愛", "MYFAV 單色顯示我的最愛", "MODMARK 隱藏文章修改符號(推文/修文) (~)", - "MODMARK 停止使用色彩代替修改符號 (+)", + "MODMARK 使用色彩代替修改符號 (+)", #ifdef DBCSAWARE "DBCS 自動偵測雙位元字集(如全型中文)", "DBCS 忽略連線程式為雙位元字集送出的重複按鍵", @@ -470,8 +470,6 @@ void Customize(void) for (i = 0; masks1[i]; i++, ia++) { clrtoeol(); - if (masks1[i] == UF_COLORED_MODMARK) - continue; prints( ANSI_COLOR(1;36) "%c" ANSI_RESET ". %-*s%s\n", 'a' + ia, @@ -523,9 +521,6 @@ void Customize(void) /* normal pref */ key -= 'a'; dirty = 1; - if (masks1[key] == UF_COLORED_MODMARK && - !HasUserFlag(UF_COLORED_MODMARK)) - continue; pwcuToggleUserFlag(masks1[key]); continue; } |