definition:
|
setRCProperty :: CCDescription -> String -> String -> IO ()
setRCProperty cd pname pval = do
readRC cd -- just be to sure that rc file exists and is up-to-date
rcname <- rcFileName cd
updatePropertyFile rcname pname pval
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Sets a property in the rc file.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
setRCProperty
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
REPL.Compiler.CCDescription -> String -> String -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|