Changeset 13863 for src/Pugs/Compile

Show
Ignore:
Timestamp:
10/04/06 15:43:40 (2 years ago)
Author:
audreyt
Message:

* Disable the PIL2 backend; it's not for this release. :-)

Location:
src/Pugs/Compile
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Compile/PIL2.hs

    r13594 r13863  
    397397    compile (Syn "rx" [exp, _]) = compile exp -- XXX WRONG - use PCRE 
    398398    compile (Syn "subst" [exp, _, _]) = compile exp -- XXX WRONG - use PCRE 
     399    compile (Syn "|" [exp]) = compile exp -- XXX WRONG 
     400    compile (Syn "|<<" [exp]) = compile exp -- XXX WRONG 
    399401    compile exp@(App _ _ _) = fmap PExp $ compile exp 
    400402    compile exp@(Syn _ _) = fmap PExp $ compile exp 
  • src/Pugs/Compile/Pugs.hs

    r13448 r13863  
    55import Pugs.Types 
    66import Pugs.Internals 
    7 import qualified Data.ByteString.Char8 as Str 
     7import qualified UTF8 as Str 
    88import qualified Data.Map as Map 
    99