Remove non-directory stuff (of base), and rename package to "directory"
[haskell-directory.git] / Text / Show / Functions.hs
diff --git a/Text/Show/Functions.hs b/Text/Show/Functions.hs
deleted file mode 100644 (file)
index d0e2207..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
------------------------------------------------------------------------------
--- |
--- Module      :  Text.Show.Functions
--- Copyright   :  (c) The University of Glasgow 2001
--- License     :  BSD-style (see the file libraries/base/LICENSE)
--- 
--- Maintainer  :  libraries@haskell.org
--- Stability   :  provisional
--- Portability :  portable
---
--- Optional instance of 'Text.Show.Show' for functions:
---
--- > instance Show (a -> b) where
--- >   showsPrec _ _ = showString \"\<function\>\"
---
------------------------------------------------------------------------------
-
-module Text.Show.Functions () where
-
-import Prelude
-
-#ifndef __NHC__
-instance Show (a -> b) where
-       showsPrec _ _ = showString "<function>"
-#endif