emacs-keys 0.0.1.0 → 0.0.2.0
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- emacs-keys.cabal +1/−1
- src/EmacsKeys/TH.hs +1/−1
emacs-keys.cabal view
@@ -1,5 +1,5 @@ name: emacs-keys-version: 0.0.1.0+version: 0.0.2.0 synopsis: library to parse emacs style keybinding into the modifiers and the chars description: Allows parsing emacs style keybindings like "M-a", "C-M-a" or "M-Return". For convenience a TH helper that turns parse
src/EmacsKeys/TH.hs view
@@ -17,6 +17,6 @@ [|($(lift mods) ,$(ListE <$> traverse (\(Keysym x) ->- AppE (VarE (mkName "Keysym")) <$>+ AppE (ConE (mkName "Keysym")) <$> lift x) keysyms))|]