diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-10-07 18:17:34 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-10-07 18:17:34 +0800 |
commit | 90dc414a63b2762345763381cf1363a966fabc97 (patch) | |
tree | 830a02d51f4e7fe3dc8d1ee4f7fd6e37d7639700 | |
parent | c6ef2c9b0d22efb36142816ab78eaaee7daa0532 (diff) | |
download | pttbbs-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.c | 1 |
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) == '[') |