definition:
|
readRC :: IO [(String, String)]
readRC = do
rcname <- rcFileName
rcexists <- doesFileExist rcname
catch (if rcexists then updateRC else installRC rcname)
(const $ return ())
readPropertyFile rcname
where
installRC rcname = do
exhomedir <- getHomeDirectory >>= doesDirectoryExist
when exhomedir $ do
hPutStrLn stderr $ "Installing '" ++ rcname ++ "'..."
writeFile rcname defaultRC
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Reads the rc file. If it is not present, a new file will be created
--- with the contents of `defaultRC`.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> _}
|
name:
|
readRC
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.IO [(String, String)]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|