diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-09-14 20:30:04 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-09-14 20:30:04 +0100 |
commit | 5b1c15d5ffb5509eddd4408e2e4495f1e5e43162 (patch) | |
tree | 4c86c7a71fdb09621cae0f722ed8d43c8fadd42c /src/xine-utils/xmllexer.h | |
parent | c3cef78f9f432b5a6032ce7f0022d9a0a139e2fd (diff) | |
download | xine-lib-5b1c15d5ffb5509eddd4408e2e4495f1e5e43162.tar.gz xine-lib-5b1c15d5ffb5509eddd4408e2e4495f1e5e43162.tar.bz2 |
Handle <[CDATA[...]]>. (Based on a patch by Bastien Nocera <hadess@hadess.net>.)
Diffstat (limited to 'src/xine-utils/xmllexer.h')
-rw-r--r-- | src/xine-utils/xmllexer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xine-utils/xmllexer.h b/src/xine-utils/xmllexer.h index 5a217fcd8..524049a44 100644 --- a/src/xine-utils/xmllexer.h +++ b/src/xine-utils/xmllexer.h @@ -50,6 +50,8 @@ #define T_TI_STOP 15 /* ?> */ #define T_DOCTYPE_START 16 /* <!DOCTYPE */ #define T_DOCTYPE_STOP 17 /* > */ +#define T_CDATA_START 18 /* <![CDATA[ */ +#define T_CDATA_STOP 19 /* ]]> */ /* public functions */ |