Fixed the ejabberd importer to work with the pipe sign "|" as a separator in erlang lists

This commit is contained in:
Waqas Hussain 2008-11-30 02:08:37 +05:00
parent f5830f6ada
commit 48e386d5de
2 changed files with 176 additions and 178 deletions

View file

@ -98,7 +98,7 @@ readItem = function()
return readString();
elseif ch == "<" then
return readSpecialString();
elseif isSpace(ch) or ch == "," then
elseif isSpace(ch) or ch == "," or ch == "|" then
read();
return readItem();
else