Show
Ignore:
Timestamp:
02/18/07 15:59:02 (21 months ago)
Author:
audreyt
Message:

* Revert the previous patch; everything back to normal.

Files:
1 modified

Legend:

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

    r15296 r15297  
    317317        _neg1   = return (VInt $ -1) 
    318318        _junc   = \jtyp -> return . VJunc $ MkJunc jtyp Set.empty Set.empty 
    319         _''     = return (_VStr "") 
     319        _''     = return (VStr "") 
    320320        _fail   = fail $ "reduce is nonsensical for " ++ cast name 
    321321 
     
    381381    list    <- readRef ref 
    382382    strList <- fromVals list 
    383     return . _VStr . concat . intersperse str $ strList 
     383    return . VStr . concat . intersperse str $ strList 
    384384 
    385385sortByM :: (Val -> Val -> Eval Bool) -> [Val] -> Eval [Val]