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

Side by Side Diff: third_party/libxslt/src/libxslt/numbers.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
OLDNEW
1 /* 1 /*
2 * numbers.c: Implementation of the XSLT number functions 2 * numbers.c: Implementation of the XSLT number functions
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 * Bjorn Reese <breese@users.sourceforge.net> 10 * Bjorn Reese <breese@users.sourceforge.net>
(...skipping 1341 matching lines...) Expand 10 before | Expand all | Expand 10 after
1352 j += len - 1; /* length of symbol less length of escape */ 1352 j += len - 1; /* length of symbol less length of escape */
1353 } else 1353 } else
1354 xmlBufferAdd(buffer, &pchar, 1); 1354 xmlBufferAdd(buffer, &pchar, 1);
1355 } 1355 }
1356 1356
1357 *result = xmlStrdup(xmlBufferContent(buffer)); 1357 *result = xmlStrdup(xmlBufferContent(buffer));
1358 xmlBufferFree(buffer); 1358 xmlBufferFree(buffer);
1359 return status; 1359 return status;
1360 } 1360 }
1361 1361
OLDNEW
« no previous file with comments | « third_party/libxslt/src/libxslt/namespaces.c ('k') | third_party/libxslt/src/libxslt/numbersInternals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698