* lisp/international/mule-util.el: Revert bug#41250 workaround

(truncate-string-ellipsis): Use the '…' character itself since it
should work now and is more readable.
This commit is contained in:
Stefan Monnier 2020-10-06 09:38:25 -04:00
parent 9a819568cc
commit bcd09e9869

View file

@ -58,10 +58,7 @@ needs to be called on every use of `truncate-string-to-width' to
decide whether the selected frame can display that Unicode character."
(cond
(truncate-string-ellipsis)
;; This uses the character's codepoint instead of the character
;; itself to avoid decoding problems when loading this file.
;; FIXME.
((char-displayable-p ?\u2026) "\u2026")
((char-displayable-p ?…) "")
("...")))
;;;###autoload