
28 Feb
2002
28 Feb
'02
5:21 a.m.
It seems that if you are in a module X which imports Foo.Bar, you cannot use :m to get to the Bar module.
X> :m Bar can't find module `Bar' X> :m Foo.Bar strange looking module name: `Foo.Bar'
It appears the remedy to this would be to modify the definition of isAlphaNumEx in ghci/InteractiveUI.hs to:
isAlphaNumEx c = isAlphaNum c || c == '_' || c == '.'
it seems that the code in setContext and newContext know how to handle qualified module name switches; it's just being blocked before they can try.
Thanks, fixed. Simon
8482
Age (days ago)
8482
Last active (days ago)
0 comments
1 participants
participants (1)
-
Simon Marlow