Non-breaking spaces should be replaced with a space and not removed

Fixes #1339
This commit is contained in:
Alex Murray 2018-11-14 11:36:36 +10:30
parent 7b6bccd49a
commit 283ba93b8a
1 changed files with 1 additions and 0 deletions

View File

@ -247,6 +247,7 @@ unless PREFER-HTML is non-nil."
(replace-match
(cond
((string= (match-string 0) "") "'")
((string= (match-string 0) " ") " ")
(t ""))))
(buffer-string)))