GNU bug report logs -
#54188
Crash when eval-ing font test elisp code
Previous Next
Full log
View this message in rfc822 format
On 2/28/22 14:19, Eli Zaretskii wrote:
> If you can establish which font causes this, it could allow us to
> decide whether and how to deal with this issue. Thanks.
Tested on Emacs: 27.2 | 28.0.60 | 29.0.50
Crashes with fonts: terminal, lucida, charter, Caladings CLM.
For clarity replaced (font-family-list) with an actual font list:
(require 'cl-lib)
(require 'cl-extra)
(let ((str "The quick brown fox jumps over the lazy dog
´`''\"\"1lI|¦!Ø0Oo{[()]}.,:; ")
(font-families (cl-remove-duplicates
(sort '("Standard Symbols PS" "URW Gothic" "Roboto
Condensed" "Droid Sans") ;; <-- WORKS
;; '("terminal") ;; <--
CRASH
;; '("lucida" ) ;;<-- CRASH
;; '("Caladings CLM") ;; <-- CRASH
;; '("charter") ;; <-- CRASH
(lambda(x y) (string< (upcase x) (upcase y))))
:test 'cl-equalp)))
(dolist (ff font-families)
(insert
(propertize str 'font-lock-face `(:family ,ff)) ff "\n"
(propertize str 'font-lock-face `(:family ,ff :slant italic)) ff
"\n")))
This bug report was last modified 3 years and 192 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.