summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mbbsd/board.c2
-rw-r--r--mbbsd/read.c9
2 files changed, 7 insertions, 4 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c
index 3397eaac..78ca48c9 100644
--- a/mbbsd/board.c
+++ b/mbbsd/board.c
@@ -530,8 +530,8 @@ b_config(void)
return FULLUPDATE;
}
- move(b_lines-1, 0);
#ifdef NOTIFY_NEW_EDIT_BTITLE
+ move(b_lines-1, 0);
outs(ANSI_COLOR(1;33)
"▲提醒您修改板標已整入看板設定中,輸入 b 即可修改板標。"
ANSI_RESET);
diff --git a/mbbsd/read.c b/mbbsd/read.c
index 542c7fb8..a16d32dd 100644
--- a/mbbsd/read.c
+++ b/mbbsd/read.c
@@ -666,9 +666,12 @@ i_read_key(const onekey_t * rcmdlist, keeploc_t * locmem,
switch (ch) {
case Ctrl('Z'):
// notify new usage
- move(b_lines-2, 0); clrtobot();
- outs(ANSI_COLOR(1;33) "置底的功\能鍵已改為 _ (shift-) 或 Ctrl-X。\n"
- "原 Ctrl-Z 現在是快速切換鍵,可在下列區域中切換 (按下對應按鍵即可):" ANSI_RESET);
+ if (currstat != RMAIL)
+ {
+ move(b_lines-2, 0); clrtobot();
+ outs(ANSI_COLOR(1;33) "置底的功\能鍵已改為 _ (shift-) 或 Ctrl-X。\n"
+ "原 Ctrl-Z 現在是快速切換鍵,可在下列區域中切換 (按下對應按鍵即可):" ANSI_RESET);
+ }
mode = FULLUPDATE;
if (ZA_Select())
mode = DOQUIT;