Changeset 6793 for src/Pugs/Types

Show
Ignore:
Timestamp:
09/06/05 14:11:41 (3 years ago)
Author:
autrijus
Message:

* massive retab for src/, expanding all tabs into spaces,

except for the generated PIL1.hs.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Types/Scalar.hs

    r5173 r6793  
    3434    scalar_fetch _ = do 
    3535        str <- liftIO $ getCurrentDirectory 
    36         return $ VStr str 
     36        return $ VStr str 
    3737    scalar_store _ val = do 
    3838        str <- fromVal val 
    39         tryIO () $ setCurrentDirectory str 
     39        tryIO () $ setCurrentDirectory str 
    4040    scalar_const = const Nothing 
    4141