Fix isConstantName
This commit is contained in:
parent
2383345f88
commit
90643cb56b
|
@ -98,7 +98,7 @@ removeFreeNames = doGeneric `extM` doSpecification `extM` doProcess
|
|||
A.ChannelName -> True
|
||||
A.VariableName -> True
|
||||
_ -> False]
|
||||
freeNames <- filterM isConstantName freeNames''
|
||||
freeNames <- filterM (liftM not . isConstantName) freeNames''
|
||||
types <- mapM typeOfName freeNames
|
||||
origAMs <- mapM abbrevModeOfName freeNames
|
||||
let ams = map makeAbbrevAM origAMs
|
||||
|
|
Loading…
Reference in New Issue
Block a user