diff options
Diffstat (limited to 'Main.hs')
-rw-r--r-- | Main.hs | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -152,12 +152,6 @@ modifyBuffer f = modify $ \st -> st { buffer = f (buffer st) } --- TODO instance Show Buffer (w/newtype Buffer) - -showBuffer :: Buffer -> String -showBuffer (lhs, rhs) = lhs ++ rhs - - newtype ExecM a = ExecM ( ErrorT ExecError (WriterT [String] (StateT VTState IO)) a |