vty 4.7.2 → 4.7.3
raw patch · 3 files changed
+5/−16 lines, 3 filesdep ~base
Dependency ranges changed: base
Files
- src/Graphics/Vty/Error.hs +0/−11
- test/interactive_terminal_test.hs +4/−3
- vty.cabal +1/−2
− src/Graphics/Vty/Error.hs
@@ -1,11 +0,0 @@-module Graphics.Vty.Error- where--import Control.Exception----- | The type of exceptions specific to vty.------ These have fully qualified names by default since, IMO, exception handling requires this.-data VtyException- = VtyFailure String -- | Uncategorized failure specific to vty.
test/interactive_terminal_test.hs view
@@ -74,9 +74,10 @@ |] wait_for_return results <- do_test_menu 1- env_attributes <- mapM ( \env_name -> catch ( Env.getEnv env_name >>= return . (,) env_name ) - ( \ (_ :: SomeException) -> return (env_name, "") ) - ) + env_attributes <- mapM ( \env_name -> Control.Exception.catch+ ( Env.getEnv env_name >>= return . (,) env_name )+ ( \ (_ :: SomeException) -> return (env_name, "") )+ ) [ "TERM", "COLORTERM", "LANG", "TERM_PROGRAM", "XTERM_VERSION" ] t <- terminal_handle let results_txt = show env_attributes ++ "\n"
vty.cabal view
@@ -1,5 +1,5 @@ name: vty-version: 4.7.2+version: 4.7.3 license: BSD3 license-file: LICENSE author: AUTHORS@@ -54,7 +54,6 @@ exposed-modules: Graphics.Vty Graphics.Vty.Attributes Graphics.Vty.DisplayRegion- Graphics.Vty.Error Graphics.Vty.Image Graphics.Vty.Inline Graphics.Vty.LLInput