mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-23 22:03:07 -06:00
*Core: Ini parser now skips space after '='
git-svn-id: svn://ultimatepp.org/upp/trunk@5900 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
545fafa5d0
commit
ea0570abff
1 changed files with 1 additions and 1 deletions
|
|
@ -18,7 +18,7 @@ static void LoadIniStream(Stream& in, VectorMap<String, String>& key, const char
|
|||
if(p.IsId()) {
|
||||
String k = p.ReadId();
|
||||
if(p.Char('='))
|
||||
key.Add(k, p.GetSpacePtr());
|
||||
key.Add(k, p.GetPtr());
|
||||
}
|
||||
else
|
||||
if(p.Char('@')) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue