diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-11-13 12:45:00 +0000 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-11-13 12:45:00 +0000 |
commit | 4aa410f49ff01991fab2da59478d847a3c276844 (patch) | |
tree | 8e33cf29dd7c83257a297e8e7353619775562d9b /sx-encoding.el | |
parent | 85b9b8d2b392210f350af5f7cc96456d0c2002cb (diff) |
Replace ^M with \r
^M isn't wrong, I'm just a little paranoid.
Diffstat (limited to 'sx-encoding.el')
-rw-r--r-- | sx-encoding.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sx-encoding.el b/sx-encoding.el index bea9071..58bbd80 100644 --- a/sx-encoding.el +++ b/sx-encoding.el @@ -76,7 +76,7 @@ (defun sx-encoding-normalize-line-endings (string) "Normalize the line endings for STRING" - (delete ?
string)) + (delete ?\r string)) (defun sx-encoding-clean-content (string) "Cleans STRING for display. |