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

Don't consider empty strings or strings beginning with numbers as variable names.

This commit is contained in:
Scott Olson 2016-02-14 01:50:47 -06:00
parent 2111098a3a
commit f30fd9c47b

View file

@ -250,8 +250,9 @@ static int runProgram(const string & program, const Strings & args)
bool isVarName(const string & s) bool isVarName(const string & s)
{ {
if (s.size() > 0 && (s[0] == '-' || s[0] == '\'')) if (s.size() == 0) return false;
return false; char c = s[0];
if ((c >= '0' && c <= '9') || c == '-' || c == '\'') 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') ||