1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00

Don't consider strings starting with - or ' as variable names.

This commit is contained in:
Scott Olson 2016-02-14 01:29:48 -06:00
parent f7980b4712
commit 2111098a3a

View file

@ -250,7 +250,8 @@ static int runProgram(const string & program, const Strings & args)
bool isVarName(const string & s) bool isVarName(const string & s)
{ {
// FIXME: not quite correct. if (s.size() > 0 && (s[0] == '-' || s[0] == '\''))
return false;
for (auto & i : s) for (auto & i : s)
if (!((i >= 'a' && i <= 'z') || if (!((i >= 'a' && i <= 'z') ||
(i >= 'A' && i <= 'Z') || (i >= 'A' && i <= 'Z') ||