@@ -630,39 +630,39 @@ genModules indir outdir props = do
630630 where
631631
632632 propList =
633- (" Unicode.Internal.Generated .PropList"
633+ (" Unicode.Internal.Char .PropList"
634634 , (`genCorePropertiesModule` (`elem` props)))
635635
636636 derivedCoreProperties =
637- (" Unicode.Internal.Generated .DerivedCoreProperties"
637+ (" Unicode.Internal.Char .DerivedCoreProperties"
638638 , (`genCorePropertiesModule` (`elem` props)))
639639
640640 compositions exc non0 =
641- ( " Unicode.Internal.Generated .UnicodeData.Compositions"
641+ ( " Unicode.Internal.Char .UnicodeData.Compositions"
642642 , \ m -> genCompositionsModule m exc non0)
643643
644644 combiningClass =
645- ( " Unicode.Internal.Generated .UnicodeData.CombiningClass"
645+ ( " Unicode.Internal.Char .UnicodeData.CombiningClass"
646646 , genCombiningClassModule)
647647
648648 decomposable =
649- ( " Unicode.Internal.Generated .UnicodeData.Decomposable"
649+ ( " Unicode.Internal.Char .UnicodeData.Decomposable"
650650 , (`genDecomposableModule` Canonical ))
651651
652652 decomposableK =
653- ( " Unicode.Internal.Generated .UnicodeData.DecomposableK"
653+ ( " Unicode.Internal.Char .UnicodeData.DecomposableK"
654654 , (`genDecomposableModule` Kompat ))
655655
656656 decompositions =
657- ( " Unicode.Internal.Generated .UnicodeData.Decompositions"
657+ ( " Unicode.Internal.Char .UnicodeData.Decompositions"
658658 , \ m -> genDecomposeDefModule m [] [] Canonical (const True ))
659659
660660 decompositionsK2 =
661- ( " Unicode.Internal.Generated .UnicodeData.DecompositionsK2"
661+ ( " Unicode.Internal.Char .UnicodeData.DecompositionsK2"
662662 , \ m -> genDecomposeDefModule m [] [] Kompat (>= 60000 ))
663663
664664 decompositionsK =
665665 let pre = [" import qualified " <> fst decompositionsK2 <> " as DK2" , " " ]
666666 post = [" decompose c = DK2.decompose c" ]
667- in ( " Unicode.Internal.Generated .UnicodeData.DecompositionsK"
667+ in ( " Unicode.Internal.Char .UnicodeData.DecompositionsK"
668668 , \ m -> genDecomposeDefModule m pre post Kompat (< 60000 ))
0 commit comments