diff options
Diffstat (limited to 'mbbsd/edit.c')
-rw-r--r-- | mbbsd/edit.c | 4 |
1 files changed, 3 insertions, 1 deletions
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); |