| OLD | NEW |
| 1 /* | 1 /* |
| 2 * xsltutils.c: Utilities for the XSL Transformation 1.0 engine | 2 * xsltutils.c: Utilities for the XSL Transformation 1.0 engine |
| 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 2463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2474 * | 2474 * |
| 2475 * Drop the topmost item off the call stack | 2475 * Drop the topmost item off the call stack |
| 2476 */ | 2476 */ |
| 2477 void | 2477 void |
| 2478 xslDropCall(void) | 2478 xslDropCall(void) |
| 2479 { | 2479 { |
| 2480 if (xsltDebuggerCurrentCallbacks.drop != NULL) | 2480 if (xsltDebuggerCurrentCallbacks.drop != NULL) |
| 2481 xsltDebuggerCurrentCallbacks.drop(); | 2481 xsltDebuggerCurrentCallbacks.drop(); |
| 2482 } | 2482 } |
| 2483 | 2483 |
| OLD | NEW |