Don't throw an error if the output buffer had no room
[ghc-base.git] / GHC / Unicode.hs
index 73e453a..baca833 100644 (file)
@@ -31,7 +31,6 @@ module GHC.Unicode (
 import GHC.Base
 import GHC.Real        (fromIntegral)
 import Foreign.C.Types (CInt)
-import GHC.Num         (fromInteger)
 
 #include "HsBaseConfig.h"
 
@@ -64,7 +63,7 @@ isControl               :: Char -> Bool
 isPrint                 :: Char -> Bool
 
 -- | Returns 'True' for any Unicode space character, and the control
--- characters @\t@, @\\n@, @\\r@, @\\f@, @\\v@.
+-- characters @\\t@, @\\n@, @\\r@, @\\f@, @\\v@.
 isSpace                 :: Char -> Bool
 -- isSpace includes non-breaking space
 -- Done with explicit equalities both for efficiency, and to avoid a tiresome