1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-19 21:23:52 +00:00

make [ a whitespace character in scripts (Fixes #2126)

This commit is contained in:
Marc Zinnschlag 2014-11-15 09:53:08 +01:00
parent 5eb9fd81e1
commit 95dfb07816

View file

@ -512,7 +512,8 @@ namespace Compiler
bool Scanner::isWhitespace (char c) bool Scanner::isWhitespace (char c)
{ {
return c==' ' || c=='\t'; return c==' ' || c=='\t'
|| c=='['; ///< \todo disable this when doing more strict compiling
} }
// constructor // constructor