1
0
mirror of https://github.com/djcb/mu.git synced 2024-06-21 06:56:48 +02:00

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

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)))