summaryrefslogtreecommitdiffstats
path: root/mbbsd/read.c
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-04-20 12:35:01 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-04-20 12:35:01 +0800
commit008f29d6b5dd32a4c0f178b4398fdb08ec4ffb5d (patch)
tree239b03aa9446919d230df41bce7a45597d66fbe3 /mbbsd/read.c
parentc59bf02ff790783b96f3c61e2c6f44d1390da42f (diff)
downloadpttbbs-008f29d6b5dd32a4c0f178b4398fdb08ec4ffb5d.tar
pttbbs-008f29d6b5dd32a4c0f178b4398fdb08ec4ffb5d.tar.gz
pttbbs-008f29d6b5dd32a4c0f178b4398fdb08ec4ffb5d.tar.bz2
pttbbs-008f29d6b5dd32a4c0f178b4398fdb08ec4ffb5d.tar.lz
pttbbs-008f29d6b5dd32a4c0f178b4398fdb08ec4ffb5d.tar.xz
pttbbs-008f29d6b5dd32a4c0f178b4398fdb08ec4ffb5d.tar.zst
pttbbs-008f29d6b5dd32a4c0f178b4398fdb08ec4ffb5d.zip
- drop push_bottom warning in mailbox
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4214 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/read.c')
-rw-r--r--mbbsd/read.c9
1 files changed, 6 insertions, 3 deletions
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;