haskeline 0.8.1.2 → 0.8.1.3
raw patch · 3 files changed
+7/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Changelog +3/−0
- System/Console/Haskeline/Backend/Posix.hsc +3/−1
- haskeline.cabal +1/−1
Changelog view
@@ -1,3 +1,6 @@+Changed in version 0.8.1.3:+ * Use the capi calling convention for ioctl (#163).+ Changed in version 0.8.1.2: * Add import list to Data.List (#153)
System/Console/Haskeline/Backend/Posix.hsc view
@@ -1,3 +1,5 @@+{-# LANGUAGE CApiFFI #-}+ module System.Console.Haskeline.Backend.Posix ( withPosixGetEvent, posixLayouts,@@ -61,7 +63,7 @@ ------------------- -- Window size -foreign import ccall ioctl :: FD -> CULong -> Ptr a -> IO CInt+foreign import capi "sys/ioctl.h ioctl" ioctl :: FD -> CULong -> Ptr a -> IO CInt posixLayouts :: Handles -> [IO (Maybe Layout)] posixLayouts h = [ioctlLayout $ ehOut h, envLayout]
haskeline.cabal view
@@ -1,6 +1,6 @@ Name: haskeline Cabal-Version: >=1.10-Version: 0.8.1.2+Version: 0.8.1.3 Category: User Interfaces License: BSD3 License-File: LICENSE