From 06a888d2d825088edbc205ee7a420dbb09ba5dc4 Mon Sep 17 00:00:00 2001 From: piaip Date: Wed, 24 Aug 2005 10:11:13 +0000 Subject: - dbcs conf should only appear when dbcs-aware compiled in. - in vedit (output '*' instead of ESC) ANSI commands should always use real outs. git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3080 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- mbbsd/edit.c | 4 +++- mbbsd/user.c | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/mbbsd/edit.c b/mbbsd/edit.c index ea8b1f87..da65ca5b 100644 --- a/mbbsd/edit.c +++ b/mbbsd/edit.c @@ -2092,7 +2092,9 @@ display_textline_internal(textline_t *p, int i, int min, int max) newpnt = fix_cursor(p->data, newpnt, FC_LEFT); if(newpnt == curr_buf->edit_margin-1) { - (*output)(ANSI_COLOR(1) "<" ANSI_RESET); + /* this should be always 'outs'? */ + // (*output)(ANSI_COLOR(1) "<" ANSI_RESET); + outs(ANSI_COLOR(1) "<" ANSI_RESET); pdata++; } (*output)(pdata); diff --git a/mbbsd/user.c b/mbbsd/user.c index c6f1c7e5..2a84d5f5 100644 --- a/mbbsd/user.c +++ b/mbbsd/user.c @@ -283,7 +283,9 @@ void Customize(void) static const char* desc1[] = { "動態看板", +#ifdef DBCSAWARE "自動偵測雙位元字集(如全型中文)", +#endif 0, }; -- cgit v1.2.3