summaryrefslogtreecommitdiffstats
path: root/mbbsd/bbs.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/bbs.c')
-rw-r--r--mbbsd/bbs.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c
index f644aae0..a853371b 100644
--- a/mbbsd/bbs.c
+++ b/mbbsd/bbs.c
@@ -330,8 +330,10 @@ readdoent(int num, fileheader_t * ent)
type = '+';
break;
case 2: // unread (modified)
- type = '+';
- typeattr = ANSI_COLOR(1;30);
+ // why not use +? because some terminals may not easily
+ // see highlights easily
+ type = '~';
+ // typeattr = ANSI_COLOR(1;30);
break;
default:
break;
@@ -417,7 +419,7 @@ readdoent(int num, fileheader_t * ent)
*/
prints("%7d", num);
- prints(" %s%c" ESC_STR " [0;1;3%4.4s" ANSI_RESET,
+ prints(" %s%c" ESC_STR "[0;1;3%4.4s" ANSI_RESET,
typeattr, type, recom);
if(IS_LISTING_MONEY)