Changeset 4870 for src/Pugs/Internals.hs

Show
Ignore:
Timestamp:
06/20/05 16:10:43 (4 years ago)
Author:
autrijus
svk:copy_cache_prev:
6641
Message:

* clean some warnings

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Internals.hs

    r4866 r4870  
    154154 
    155155split_n :: (Eq a) => [a] -> [a] -> Int -> [[a]] 
    156 split_n []  _ n = internalError "splitting by an empty list" 
     156split_n [] _ _ = internalError "splitting by an empty list" 
    157157split_n sep str n 
    158158   | n == 1 = [str]