From f7dc299c876e4fba2dc9af73dd77e87e2ff86b66 Mon Sep 17 00:00:00 2001 From: aarne Date: Tue, 25 Oct 2011 14:03:27 +0000 Subject: [PATCH] qualification with real module name accepted, as in GF refman --- src/compiler/GF/Compile/Rename.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/GF/Compile/Rename.hs b/src/compiler/GF/Compile/Rename.hs index 2a7f020a9..8cd84a1a0 100644 --- a/src/compiler/GF/Compile/Rename.hs +++ b/src/compiler/GF/Compile/Rename.hs @@ -92,6 +92,7 @@ renameIdentTerm env@(act,imps) t = where opens = [st | (OSimple _,st) <- imps] qualifs = [(m, st) | (OQualif m _, st) <- imps] ++ + [(m, st) | (OQualif _ m, st) <- imps] ++ [(m, st) | (OSimple m, st) <- imps] -- qualif is always possible -- this facility is mainly for BWC with GF1: you need not import PredefAbs