Created
December 18, 2011 13:29
-
-
Save simonwhitaker/1493422 to your computer and use it in GitHub Desktop.
Diffs between TBXML as downloaded from tbxml.co.uk and the initial commit on https://github.com/steipete/TBXML/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ diff -r TBXML-orig/ TBXML-github-fc2db6c/ | |
Only in TBXML-github-fc2db6c/: .git | |
diff -r TBXML-orig/TBXML.m TBXML-github-fc2db6c/TBXML.m | |
258c258 | |
< while (elementStart = strstr(elementStart,"<")) { | |
--- | |
> while ((elementStart = strstr(elementStart,"<"))) { | |
311c311 | |
< while (elementEnd = strpbrk(elementEnd, "<>")) { | |
--- | |
> while ((elementEnd = strpbrk(elementEnd, "<>"))) { | |
458c458 | |
< while (CDATAStart = strstr(value, "<![CDATA[")) { | |
--- | |
> while ((CDATAStart = strstr(value, "<![CDATA["))) { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment