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

Side by Side Diff: third_party/libxslt/src/libxslt/documents.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 * documents.c: Implementation of the documents handling 2 * documents.c: Implementation of the documents handling
3 * 3 *
4 * See Copyright for the status of this software. 4 * See Copyright for the status of this software.
5 * 5 *
6 * daniel@veillard.com 6 * daniel@veillard.com
7 */ 7 */
8 8
9 #define IN_LIBXSLT 9 #define IN_LIBXSLT
10 #include "libxslt.h" 10 #include "libxslt.h"
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 while (ret != NULL) { 425 while (ret != NULL) {
426 if (ret->doc == doc) 426 if (ret->doc == doc)
427 return(ret); 427 return(ret);
428 ret = ret->next; 428 ret = ret->next;
429 } 429 }
430 if (doc == ctxt->style->doc) 430 if (doc == ctxt->style->doc)
431 return(ctxt->document); 431 return(ctxt->document);
432 return(NULL); 432 return(NULL);
433 } 433 }
434 434
OLDNEW
« no previous file with comments | « third_party/libxslt/src/libxslt/documents.h ('k') | third_party/libxslt/src/libxslt/extensions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698