summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2009-10-07 18:17:34 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2009-10-07 18:17:34 +0800
commit90dc414a63b2762345763381cf1363a966fabc97 (patch)
tree830a02d51f4e7fe3dc8d1ee4f7fd6e37d7639700
parentc6ef2c9b0d22efb36142816ab78eaaee7daa0532 (diff)
downloadpttbbs-90dc414a63b2762345763381cf1363a966fabc97.tar
pttbbs-90dc414a63b2762345763381cf1363a966fabc97.tar.gz
pttbbs-90dc414a63b2762345763381cf1363a966fabc97.tar.bz2
pttbbs-90dc414a63b2762345763381cf1363a966fabc97.tar.lz
pttbbs-90dc414a63b2762345763381cf1363a966fabc97.tar.xz
pttbbs-90dc414a63b2762345763381cf1363a966fabc97.tar.zst
pttbbs-90dc414a63b2762345763381cf1363a966fabc97.zip
* add missing definition
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@4911 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--pttbbs/mbbsd/pmore.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/pttbbs/mbbsd/pmore.c b/pttbbs/mbbsd/pmore.c
index 5fbe75c7..3290266d 100644
--- a/pttbbs/mbbsd/pmore.c
+++ b/pttbbs/mbbsd/pmore.c
@@ -367,6 +367,7 @@ int debug = 0;
#define ANSI_COLOR(x) ESC_STR "[" #x "m"
#define ANSI_CLRTOEND ESC_STR "[K"
#define ANSI_MOVETO(y,x) ESC_STR "[" #y ";" #x "H"
+#define ANSI_REVERSE ANSI_COLOR(7)
#define ANSI_IN_ESCAPE(x) (((x) >= '0' && (x) <= '9') || \
(x) == ';' || (x) == ',' || (x) == '[')