Commit a80a788a authored by Dag Haavi Finstad's avatar Dag Haavi Finstad Committed by Lasse Karstensen

Permit uppercase letters in vmod.vcc identifiers.

parent 55154c9c
......@@ -104,7 +104,7 @@ def lwrap(s, w=72):
#######################################################################
def is_c_name(s):
return None != re.match("^[a-z][a-z0-9_]*$", s)
return None != re.match("^[a-zA-Z][a-zA-Z0-9_]*$", s)
class ParseError(Exception):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment