diff options
author | 2011-05-16 15:01:05 -0400 | |
---|---|---|
committer | 2011-05-16 15:01:05 -0400 | |
commit | 3ab15b9f4f22aaa77a09e198d03dd4296a83bb44 (patch) | |
tree | e407c472e9f9fbd75e2e6dea9d7f64e344eaa0a7 /Remote.hs | |
parent | 760cde28b67c14e0ad68e8649c0abe0544c44947 (diff) |
releasing version 0.201105160.20110516
Diffstat (limited to 'Remote.hs')
-rw-r--r-- | Remote.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -188,7 +188,7 @@ configToKeyVal m = map toword $ sort $ M.toList m toword (k, v) = k ++ "=" ++ configEscape v configEscape :: String -> String -configEscape = concat . (map escape) +configEscape = (>>= escape) where escape c | isSpace c || c `elem` "&" = "&" ++ show (ord c) ++ ";" |