darcs-2.4.1: a distributed, interactive, smart revision control system

Darcs.Global

Description

This was originally Tomasz Zielonka's AtExit module, slightly generalised to include global variables. Here, we attempt to cover broad, global features, such as exit handlers. These features slightly break the Haskellian purity of darcs, in favour of programming convenience.

Synopsis

Documentation

atexit :: IO () -> IO ()Source

Registers an IO action to run just before darcs exits. Useful for removing temporary files and directories, for example.

withDebugMode :: (Bool -> IO a) -> IO aSource