| OLD | NEW |
| 1 /* | 1 /* |
| 2 * preproc.c: Preprocessing of style operations | 2 * preproc.c: Preprocessing of style operations |
| 3 * | 3 * |
| 4 * References: | 4 * References: |
| 5 * http://www.w3.org/TR/1999/REC-xslt-19991116 | 5 * http://www.w3.org/TR/1999/REC-xslt-19991116 |
| 6 * | 6 * |
| 7 * Michael Kay "XSLT Programmer's Reference" pp 637-643 | 7 * Michael Kay "XSLT Programmer's Reference" pp 637-643 |
| 8 * Writing Multiple Output Files | 8 * Writing Multiple Output Files |
| 9 * | 9 * |
| 10 * XSLT-1.1 Working Draft | 10 * XSLT-1.1 Working Draft |
| (...skipping 2356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2367 | 2367 |
| 2368 /* | 2368 /* |
| 2369 * Unknown element, maybe registered at the context | 2369 * Unknown element, maybe registered at the context |
| 2370 * level. Mark it for later recognition. | 2370 * level. Mark it for later recognition. |
| 2371 */ | 2371 */ |
| 2372 if (inst->psvi == NULL) | 2372 if (inst->psvi == NULL) |
| 2373 inst->psvi = (void *) xsltExtMarker; | 2373 inst->psvi = (void *) xsltExtMarker; |
| 2374 } | 2374 } |
| 2375 } | 2375 } |
| 2376 #endif /* XSLT_REFACTORED */ | 2376 #endif /* XSLT_REFACTORED */ |
| OLD | NEW |