summaryrefslogtreecommitdiffhomepage
path: root/Runnable.hs-boot
diff options
context:
space:
mode:
authorAndrea Rossato <andrea.rossato@ing.unitn.it>2007-07-12 23:56:15 +0200
committerAndrea Rossato <andrea.rossato@ing.unitn.it>2007-07-12 23:56:15 +0200
commit20846e8dddb61eed64100b4f21b4b493b5005eac (patch)
tree602c5e36ec8bacf5c12082ff708a59e768fcc039 /Runnable.hs-boot
parent1126dd15b8e25aa4d72cb8efc269abb2e1136481 (diff)
downloadxmobar-20846e8dddb61eed64100b4f21b4b493b5005eac.tar.gz
xmobar-20846e8dddb61eed64100b4f21b4b493b5005eac.tar.bz2
removed the Show instance requirement for plugins
darcs-hash:20070712215615-d6583-463ad3d9d1282fd1f129f34f405c66e0795962fd.gz
Diffstat (limited to 'Runnable.hs-boot')
-rw-r--r--Runnable.hs-boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/Runnable.hs-boot b/Runnable.hs-boot
index 90dbe81..bef4e39 100644
--- a/Runnable.hs-boot
+++ b/Runnable.hs-boot
@@ -2,10 +2,10 @@
module Runnable where
import Commands
-data Runnable = forall r . (Exec r,Show r, Read r) => Run r
+data Runnable = forall r . (Exec r,Read r) => Run r
instance Read Runnable
instance Exec Runnable
-instance Show Runnable
+