summaryrefslogtreecommitdiffstats
path: root/mbbsd/edit.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/edit.c')
-rw-r--r--mbbsd/edit.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/mbbsd/edit.c b/mbbsd/edit.c
index 05159707..42b104a6 100644
--- a/mbbsd/edit.c
+++ b/mbbsd/edit.c
@@ -405,17 +405,19 @@ edit_msg(void)
move(b_lines, 0);
clrtoeol();
- prints( ANSI_COLOR(37;44) " ½s¿è¤å³¹ "
+ outs( ANSI_COLOR(37;44) " ½s¿è¤å³¹ "
ANSI_COLOR(31;47) " (^Z/F1)" ANSI_COLOR(30) "»¡©ú "
ANSI_COLOR(31;47) "(^P/^G)" ANSI_COLOR(30) "´¡¤J²Å¸¹/¹Ï¤ù "
- ANSI_COLOR(31) "(^X/^Q)" ANSI_COLOR(30) "Â÷¶}"
- "ùø%s¢x%c%c%c%cùø %3d:%3d " ANSI_RESET,
+ ANSI_COLOR(31) "(^X/^Q)" ANSI_COLOR(30) "Â÷¶}");
+
+ prints( "ùø%s¢x%c%c%c%cùø %3d:%3d ",
curr_buf->insert_mode ? "´¡¤J" : "¨ú¥N",
curr_buf->ansimode ? 'A' : 'a',
curr_buf->indent_mode ? 'I' : 'i',
curr_buf->phone_mode ? 'P' : 'p',
curr_buf->raw_mode ? 'R' : 'r',
curr_buf->currln + 1, n + 1);
+ outslr("", 78, ANSI_RESET, 0);
}
/**