From ea0570abff272771698dc72116a3591665cc6fed Mon Sep 17 00:00:00 2001 From: cxl Date: Tue, 12 Mar 2013 13:44:16 +0000 Subject: [PATCH] *Core: Ini parser now skips space after '=' git-svn-id: svn://ultimatepp.org/upp/trunk@5900 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/Core/Ini.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uppsrc/Core/Ini.cpp b/uppsrc/Core/Ini.cpp index ca4f09b9c..990c99ee6 100644 --- a/uppsrc/Core/Ini.cpp +++ b/uppsrc/Core/Ini.cpp @@ -18,7 +18,7 @@ static void LoadIniStream(Stream& in, VectorMap& 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('@')) {