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

Side by Side Diff: third_party/libxslt/src/libexslt/strings.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/libexslt/sets.c ('k') | third_party/libxslt/src/libxslt.m4 » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #define IN_LIBEXSLT 1 #define IN_LIBEXSLT
2 #include "libexslt/libexslt.h" 2 #include "libexslt/libexslt.h"
3 3
4 #if defined(WIN32) && !defined (__CYGWIN__) && (!__MINGW32__) 4 #if defined(WIN32) && !defined (__CYGWIN__) && (!__MINGW32__)
5 #include <win32config.h> 5 #include <win32config.h>
6 #else 6 #else
7 #include "config.h" 7 #include "config.h"
8 #endif 8 #endif
9 9
10 #include <libxml/tree.h> 10 #include <libxml/tree.h>
(...skipping 816 matching lines...) Expand 10 before | Expand all | Expand 10 after
827 (const xmlChar *) EXSLT_STRINGS_NAMESPACE, 827 (const xmlChar *) EXSLT_STRINGS_NAMESPACE,
828 exsltStrAlignFunction) 828 exsltStrAlignFunction)
829 && !xmlXPathRegisterFuncNS(ctxt, 829 && !xmlXPathRegisterFuncNS(ctxt,
830 (const xmlChar *) "concat", 830 (const xmlChar *) "concat",
831 (const xmlChar *) EXSLT_STRINGS_NAMESPACE, 831 (const xmlChar *) EXSLT_STRINGS_NAMESPACE,
832 exsltStrConcatFunction)) { 832 exsltStrConcatFunction)) {
833 return 0; 833 return 0;
834 } 834 }
835 return -1; 835 return -1;
836 } 836 }
OLDNEW
« no previous file with comments | « third_party/libxslt/src/libexslt/sets.c ('k') | third_party/libxslt/src/libxslt.m4 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698