CurryInfo: curry-repl-1.2.0 / REPL.RCFile.readRC

definition:
readRC :: CCDescription -> IO [(String, String)]
readRC cd = do
  rcname <- rcFileName cd
  rcdefname <- getDefaultRC cd
  rcexists  <- doesFileExist rcname
  catch (if rcexists
           then updateRC cd rcdefname
           else do putStrLn $ "Installing '" ++ rcname ++ "'..."
                   copyFile rcdefname rcname)
        (const $ return ())
  readPropertyFile rcname
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Reads the rc file. If it is not present, the standard file
--- from the distribution will be copied.
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> _}
name:
readRC
precedence:
no precedence defined
result-values:
_
signature:
REPL.Compiler.CCDescription -> 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