mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-21 11:09:41 +00:00
workaround for - in names
This commit is contained in:
parent
8b909ff838
commit
a2aa3aaa0e
1 changed files with 5 additions and 1 deletions
|
@ -343,7 +343,11 @@ namespace Compiler
|
||||||
}
|
}
|
||||||
else if (!(c=='"' && name.empty()))
|
else if (!(c=='"' && name.empty()))
|
||||||
{
|
{
|
||||||
if (!(std::isalpha (c) || std::isdigit (c) || c=='_'))
|
if (!(std::isalpha (c) || std::isdigit (c) || c=='_' ||
|
||||||
|
/// \todo add an option to disable the following hack. Also, find out who is
|
||||||
|
/// responsible for allowing it in the first place and meet up with that person in
|
||||||
|
/// a dark alley.
|
||||||
|
(c=='-' && !name.empty() && std::isalpha (mStream.peek()))))
|
||||||
{
|
{
|
||||||
putback (c);
|
putback (c);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue