From: Stefan Monnier Date: Tue, 6 Oct 2020 13:38:25 +0000 (-0400) Subject: * lisp/international/mule-util.el: Revert bug#41250 workaround X-Git-Tag: emacs-28.0.90~5732 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bcd09e9869a3f371024286d25743ebaf17f0be9d;p=emacs.git * 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. --- diff --git a/lisp/international/mule-util.el b/lisp/international/mule-util.el index c369374022d..8f316332249 100644 --- a/lisp/international/mule-util.el +++ b/lisp/international/mule-util.el @@ -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