| OLD | NEW |
| 1 /* | 1 /* |
| 2 * keys.c: Implemetation of the keys support | 2 * keys.c: Implemetation of the keys 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 915 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 926 * @idoc: a XSLT document | 926 * @idoc: a XSLT document |
| 927 * | 927 * |
| 928 * Free the keys associated to a document | 928 * Free the keys associated to a document |
| 929 */ | 929 */ |
| 930 void | 930 void |
| 931 xsltFreeDocumentKeys(xsltDocumentPtr idoc) { | 931 xsltFreeDocumentKeys(xsltDocumentPtr idoc) { |
| 932 if (idoc != NULL) | 932 if (idoc != NULL) |
| 933 xsltFreeKeyTableList(idoc->keys); | 933 xsltFreeKeyTableList(idoc->keys); |
| 934 } | 934 } |
| 935 | 935 |
| OLD | NEW |