| OLD | NEW |
| 1 /* | 1 /* |
| 2 * extensions.c: Implemetation of the extensions support | 2 * extensions.c: Implemetation of the extensions support |
| 3 * | 3 * |
| 4 * Reference: | 4 * Reference: |
| 5 * http://www.w3.org/TR/1999/REC-xslt-19991116 | 5 * http://www.w3.org/TR/1999/REC-xslt-19991116 |
| 6 * | 6 * |
| 7 * See Copyright for the status of this software. | 7 * See Copyright for the status of this software. |
| 8 * | 8 * |
| 9 * daniel@veillard.com | 9 * daniel@veillard.com |
| 10 */ | 10 */ |
| (...skipping 2345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2356 else { | 2356 else { |
| 2357 fprintf(output, "\nRegistered Extension Modules:\n"); | 2357 fprintf(output, "\nRegistered Extension Modules:\n"); |
| 2358 xmlMutexLock(xsltExtMutex); | 2358 xmlMutexLock(xsltExtMutex); |
| 2359 xmlHashScanFull(xsltExtensionsHash, | 2359 xmlHashScanFull(xsltExtensionsHash, |
| 2360 (xmlHashScannerFull) | 2360 (xmlHashScannerFull) |
| 2361 xsltDebugDumpExtModulesCallback, output); | 2361 xsltDebugDumpExtModulesCallback, output); |
| 2362 xmlMutexUnlock(xsltExtMutex); | 2362 xmlMutexUnlock(xsltExtMutex); |
| 2363 } | 2363 } |
| 2364 | 2364 |
| 2365 } | 2365 } |
| OLD | NEW |