summaryrefslogtreecommitdiffhomepage
path: root/Runnable.hs-boot
diff options
context:
space:
mode:
authorAndrea Rossato <andrea.rossato@ing.unitn.it>2007-09-27 19:29:24 +0200
committerAndrea Rossato <andrea.rossato@ing.unitn.it>2007-09-27 19:29:24 +0200
commit3b977fbdd2bd8a0208d32c841c9d11b8cd613fd8 (patch)
treea643856da0f6d563a0b835de65735f17f5582b15 /Runnable.hs-boot
parent6b728f44dbd67b8c8507e52b2b7daeee2a0dcc3f (diff)
downloadxmobar-3b977fbdd2bd8a0208d32c841c9d11b8cd613fd8.tar.gz
xmobar-3b977fbdd2bd8a0208d32c841c9d11b8cd613fd8.tar.bz2
Added Show instance to Runnable
darcs-hash:20070927172924-d6583-debc8c0d457d06491ce494aef7429d1436c6526f.gz
Diffstat (limited to 'Runnable.hs-boot')
-rw-r--r--Runnable.hs-boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/Runnable.hs-boot b/Runnable.hs-boot
index bef4e39..3c5f8db 100644
--- a/Runnable.hs-boot
+++ b/Runnable.hs-boot
@@ -2,7 +2,7 @@
module Runnable where
import Commands
-data Runnable = forall r . (Exec r,Read r) => Run r
+data Runnable = forall r . (Exec r,Read r,Show r) => Run r
instance Read Runnable
instance Exec Runnable