Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Side by Side Diff: third_party/libxslt/src/libxslt/xslt.c

Issue 2865973002: Check in the libxslt roll script. (Closed)
Patch Set: Consistent quotes. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/libxslt/src/libxslt/xslt.h ('k') | third_party/libxslt/src/libxslt/xsltInternals.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * xslt.c: Implemetation of an XSL Transformation 1.0 engine 2 * xslt.c: Implemetation of an XSL Transformation 1.0 engine
3 * 3 *
4 * Reference: 4 * Reference:
5 * XSLT specification 5 * XSLT specification
6 * http://www.w3.org/TR/1999/REC-xslt-19991116 6 * http://www.w3.org/TR/1999/REC-xslt-19991116
7 * 7 *
8 * Associating Style Sheets with XML documents 8 * Associating Style Sheets with XML documents
9 * http://www.w3.org/1999/06/REC-xml-stylesheet-19990629 9 * http://www.w3.org/1999/06/REC-xml-stylesheet-19990629
10 * 10 *
(...skipping 7022 matching lines...) Expand 10 before | Expand all | Expand 10 after
7033 ret = xsltParseStylesheetFile(href); 7033 ret = xsltParseStylesheetFile(href);
7034 } 7034 }
7035 if (base != NULL) 7035 if (base != NULL)
7036 xmlFree(base); 7036 xmlFree(base);
7037 } 7037 }
7038 xmlFreeURI(URI); 7038 xmlFreeURI(URI);
7039 xmlFree(href); 7039 xmlFree(href);
7040 } 7040 }
7041 return(ret); 7041 return(ret);
7042 } 7042 }
OLDNEW
« no previous file with comments | « third_party/libxslt/src/libxslt/xslt.h ('k') | third_party/libxslt/src/libxslt/xsltInternals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698