]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix last change
authorMattias Engdegård <mattiase@acm.org>
Tue, 6 Oct 2020 11:09:58 +0000 (13:09 +0200)
committerMattias Engdegård <mattiase@acm.org>
Tue, 6 Oct 2020 11:14:19 +0000 (13:14 +0200)
* lisp/international/mule-util.el (truncate-string-ellipsis):
Use Unicode hex escapes instead of named escapes here, because \N{...}
is not available during bootstrapping.  (Bug#41250)

lisp/international/mule-util.el

index faf00a76d6827d3fdc87f9d381ed89baf5bc5f2d..ad560007655c87d98558b323573fad59974b8745 100644 (file)
@@ -58,9 +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 name instead of the character itself
+   ;; This uses the character's number instead of the character itself
    ;; to avoid decoding problems when loading this file.  FIXME.
-   ((char-displayable-p ?\N{HORIZONTAL ELLIPSIS}) "\N{HORIZONTAL ELLIPSIS}")
+   ((char-displayable-p ?\u2026) "\u2026")
    ("...")))
 
 ;;;###autoload