]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix last change
authorEli Zaretskii <eliz@gnu.org>
Tue, 6 Oct 2020 08:24:15 +0000 (11:24 +0300)
committerEli Zaretskii <eliz@gnu.org>
Tue, 6 Oct 2020 08:24:15 +0000 (11:24 +0300)
* lisp/international/mule-util.el (truncate-string-ellipsis): Add
a FIXME comment that explains the last change.  (Bug#41250)

lisp/international/mule-util.el

index 05ef33ccf58b83479823762430e5025931cdf94d..faf00a76d6827d3fdc87f9d381ed89baf5bc5f2d 100644 (file)
@@ -52,12 +52,14 @@ returned by the function `truncate-string-ellipsis'.")
 (defun truncate-string-ellipsis ()
   "Return the string used to indicate truncation.
 Use the value of the variable `truncate-string-ellipsis' when it's non-nil.
-Otherwise, return the Unicode character \"HORIZONTAL ELLIPSIS\" when
-it's displayable on the selected frame, or `...'.  This function needs
-to be called on every use of `truncate-string-to-width' to decide
-whether the selected frame can display that Unicode character."
+Otherwise, return the Unicode character U+2026 \"HORIZONTAL ELLIPSIS\"
+when it's displayable on the selected frame, or `...'.  This function
+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 name instead of the character itself
+   ;; to avoid decoding problems when loading this file.  FIXME.
    ((char-displayable-p ?\N{HORIZONTAL ELLIPSIS}) "\N{HORIZONTAL ELLIPSIS}")
    ("...")))