Show
Ignore:
Timestamp:
10/09/06 17:26:24 (2 years ago)
Author:
audreyt
Message:

r14985@T: audreyt | 2006-10-09 16:45:12 +0800

  • Use MonadError? instead of MonadCont? for error handling. This will help separate out continuations with exceptions.
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Prim/List.hs

    r13976 r14113  
    200200                    then fail 
    201201                        "When reducing using a chain-associative sub,\nthe sub must take exactly two arguments." 
    202                     else callCC $ \esc -> do 
     202                    else catchT $ \esc -> do 
    203203                        let doFold' x y = do 
    204204                            val <- doFold [x, y]