| 393 | // ================================================================================================= |
| 394 | |
| 395 | static void StartCdataSectionHandler ( void * userData ) |
| 396 | { |
| 397 | IgnoreParam(userData); |
| 398 | |
| 399 | #if XMP_DebugBuild & DumpXMLParseEvents // Avoid unused variable warning. |
| 400 | ExpatAdapter * thiz = (ExpatAdapter*)userData; |
| 401 | #endif |
| 402 | |
| 403 | #if XMP_DebugBuild & DumpXMLParseEvents |
| 404 | if ( thiz->parseLog != 0 ) { |
| 405 | PrintIndent ( thiz->parseLog, thiz->elemNesting ); |
| 406 | fprintf ( thiz->parseLog, "StartCDATA\n" ); |
| 407 | } |
| 408 | #endif |
| 409 | |
| 410 | // *** Since markup isn't recognized inside CDATA, this affects XMP's double escaping. |
| 411 | |
| 412 | } // StartCdataSectionHandler |
| 413 | |
| 414 | // ================================================================================================= |
| 415 |
nothing calls this directly
no test coverage detected