diff options
author | Araq <rumpf_a@web.de> | 2013-10-07 21:36:43 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-10-07 21:36:43 +0200 |
commit | 96529063bf08cb4e62a39d50e3c0cf167e50bd36 (patch) | |
tree | 40af5e55838ec5377a5c2844c7bb9be35518e943 /lib | |
parent | 9bf32ff72d0d61c2ec42eda594a95312f6e57a3c (diff) | |
parent | 3d8b883c15e5d665cd0308e6a9cdbe916f721c24 (diff) | |
download | Nim-96529063bf08cb4e62a39d50e3c0cf167e50bd36.tar.gz |
Merge branch 'master' of https://github.com/Araq/Nimrod
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/xmlparser.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/xmlparser.nim b/lib/pure/xmlparser.nim index 355053e0d..16bbe1455 100644 --- a/lib/pure/xmlparser.nim +++ b/lib/pure/xmlparser.nim @@ -110,7 +110,7 @@ proc parseXml*(s: PStream, filename: string, of xmlElementOpen, xmlElementStart: result = parse(x, errors) break - of xmlComment, xmlWhitespace, xmlSpecial: nil # just skip it + of xmlComment, xmlWhitespace, xmlSpecial, xmlPI: nil # just skip it of xmlError: errors.add(errorMsg(x)) else: |