Man reader: handle \~ for nonbreaking space.

This commit is contained in:
John MacFarlane 2018-10-22 11:06:27 -07:00
parent 70d2a1d9c1
commit 22078a8690

View file

@ -188,6 +188,7 @@ escapeLexer = try $ do
'|' -> return " "
'\'' -> return "`"
'.' -> return "`"
'~' -> return "\160" -- nonbreaking space
_ -> escUnknown [c] "\xFFFD"
where