From df680ee6c938613a878bae4762c05d865eac9ce7 Mon Sep 17 00:00:00 2001 From: Stas Degteff Date: Tue, 15 Mar 2011 08:26:40 +0000 Subject: [PATCH] Use macro instead character constant --- golded3/geread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/golded3/geread.cpp b/golded3/geread.cpp index 66e2ac7..41d3bc1 100644 --- a/golded3/geread.cpp +++ b/golded3/geread.cpp @@ -1417,7 +1417,7 @@ void GotoReplies() AA->LoadMsg(rmsg, msgn, CFG->dispmargin-(int)CFG->switches.get(disppagebar)); else AA->LoadHdr(rmsg, msgn); - rlist[replies].isread = ((0 == rmsg->timesread) and CFG->switches.get(highlightunread)) ? '\x10' : ' '; + rlist[replies].isread = ((0 == rmsg->timesread) and CFG->switches.get(highlightunread)) ? MMRK_MARK : ' '; if((cursorbar == -1) and (0 == rmsg->timesread) and (CFG->switches.get(highlightunread))) cursorbar = replies; rlist[replies].msgno[0] = (n==list_max+1) ? '*' : '+';