Skip to content

Commit

Permalink
Ignore case for VHDL
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpt committed Feb 16, 2018
1 parent 3560160 commit be7cdab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hdlparse/vhdl_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
],
}

VhdlLexer = MiniLexer(vhdl_tokens)
VhdlLexer = MiniLexer(vhdl_tokens, flags=re.MULTILINE | re.IGNORECASE)


class VhdlObject(object):
Expand Down

0 comments on commit be7cdab

Please sign in to comment.