mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-09-22 03:13:15 -04:00
make [ a whitespace character in scripts (Fixes #2126)
This commit is contained in:
parent
5eb9fd81e1
commit
95dfb07816
@ -512,7 +512,8 @@ namespace Compiler
|
||||
|
||||
bool Scanner::isWhitespace (char c)
|
||||
{
|
||||
return c==' ' || c=='\t';
|
||||
return c==' ' || c=='\t'
|
||||
|| c=='['; ///< \todo disable this when doing more strict compiling
|
||||
}
|
||||
|
||||
// constructor
|
||||
|
Loading…
x
Reference in New Issue
Block a user