diff options
Diffstat (limited to 'mbbsd/more.c')
-rw-r--r-- | mbbsd/more.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/more.c b/mbbsd/more.c index 342d457b..dfa7761c 100644 --- a/mbbsd/more.c +++ b/mbbsd/more.c @@ -227,7 +227,7 @@ more(char *fpath, int promptend) word = NULL; } /* ※處理引用者 & 引言 */ - if ((buf[1] == ' ') && (buf[0] == ':' || buf[0] == '>')) + if ((buf[0] == ':' || buf[0] == '>') && (buf[1] == ' ')) word = "\033[36m"; else if (!strncmp(buf, "※", 2) || !strncmp(buf, "==>", 3)) word = "\033[32m"; |