diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2010-02-10 03:21:03 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2010-02-10 03:21:03 +0100 |
commit | f721ddd75b61600a06995ee728f332fa96f45dd2 (patch) | |
tree | 50e6b745db5c037e8054007723770283eb6d88e3 /lib/pure/parsexml.nim | |
parent | d4107728d369042e43c2229cbf59c0b89619ae55 (diff) | |
download | Nim-f721ddd75b61600a06995ee728f332fa96f45dd2.tar.gz |
new XML modules
Diffstat (limited to 'lib/pure/parsexml.nim')
-rwxr-xr-x | lib/pure/parsexml.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/parsexml.nim b/lib/pure/parsexml.nim index 6809c0f7c..a209e8be0 100755 --- a/lib/pure/parsexml.nim +++ b/lib/pure/parsexml.nim @@ -364,7 +364,7 @@ proc parsePI(my: var TXmlParser) = break add(my.b, '?') inc(pos) - of '\c': + of '\c': # the specification says that CR-LF, CR are to be transformed to LF pos = lexbase.HandleCR(my, pos) buf = my.buf |