]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/international/mule-util.el (truncate-string-ellipsis): Fix comment.
authorEli Zaretskii <eliz@gnu.org>
Tue, 6 Oct 2020 11:51:13 +0000 (14:51 +0300)
committerEli Zaretskii <eliz@gnu.org>
Tue, 6 Oct 2020 11:51:13 +0000 (14:51 +0300)
lisp/international/mule-util.el

index ad560007655c87d98558b323573fad59974b8745..c369374022dd303db2e09b863a41ffc9bfdd9fb3 100644 (file)
@@ -58,8 +58,9 @@ 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 number instead of the character itself
-   ;; to avoid decoding problems when loading this file.  FIXME.
+   ;; 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")
    ("...")))