From 6615a04d5d42a0e1875bd1a281372509ca64e641 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Thu, 19 Feb 2009 15:13:45 +0100 Subject: [PATCH] Also allow uppercase letters and a period in VHDL ids. --- VHDL.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VHDL.hs b/VHDL.hs index 4ab3be3..37bcd74 100644 --- a/VHDL.hs +++ b/VHDL.hs @@ -330,4 +330,4 @@ mkVHDLId s = AST.unsafeVHDLBasicId s' where -- Strip invalid characters. - s' = filter (`elem` ['a'..'z'] ++ ['0'..'9'] ++ ['_']) s + s' = filter (`elem` ['A'..'Z'] ++ ['a'..'z'] ++ ['0'..'9'] ++ "_.") s -- 2.30.2