Changeset 2907 for src/Pugs/Types/Hash.hs
- Timestamp:
- 05/09/05 23:48:13 (4 years ago)
- svk:copy_cache_prev:
- 4437
- Files:
-
- 1 modified
-
src/Pugs/Types/Hash.hs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Pugs/Types/Hash.hs
r2441 r2907 81 81 hash_fetchVal _ key = tryIO undef $ do 82 82 str <- getEnv key 83 return $ VStr str83 return $ fromMaybe VUndef (fmap VStr str) 84 84 hash_storeVal _ key val = do 85 85 str <- fromVal val
