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

Side by Side Diff: third_party/libxslt/src/libxslt/xsltlocale.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 * xsltlocale.c: locale handling 2 * xsltlocale.c: locale handling
3 * 3 *
4 * Reference: 4 * Reference:
5 * RFC 3066: Tags for the Identification of Languages 5 * RFC 3066: Tags for the Identification of Languages
6 * http://www.ietf.org/rfc/rfc3066.txt 6 * http://www.ietf.org/rfc/rfc3066.txt
7 * ISO 639-1, ISO 3166-1 7 * ISO 639-1, ISO 3166-1
8 * 8 *
9 * Author: Nick Wellnhofer 9 * Author: Nick Wellnhofer
10 * winapi port: Roumen Petrov 10 * winapi port: Roumen Petrov
(...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after
516 516
517 len = xsltLocaleListSize * sizeof(xsltRFC1766Info); 517 len = xsltLocaleListSize * sizeof(xsltRFC1766Info);
518 xsltLocaleList = xmlMalloc(len); 518 xsltLocaleList = xmlMalloc(len);
519 memset(xsltLocaleList, 0, len); 519 memset(xsltLocaleList, 0, len);
520 EnumSystemLocalesA(xsltIterateSupportedLocales, LCID_SUPPORTED); 520 EnumSystemLocalesA(xsltIterateSupportedLocales, LCID_SUPPORTED);
521 } 521 }
522 xmlRMutexUnlock(xsltLocaleMutex); 522 xmlRMutexUnlock(xsltLocaleMutex);
523 } 523 }
524 524
525 #endif /*def XSLT_LOCALE_WINAPI*/ 525 #endif /*def XSLT_LOCALE_WINAPI*/
OLDNEW
« no previous file with comments | « third_party/libxslt/src/libxslt/xsltlocale.h ('k') | third_party/libxslt/src/libxslt/xsltutils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698