Fix display of warnings on w32 console

* lisp/emacs-lisp/warnings.el (warnings-suppress): Use alternative
symbol for TTY frames on MS-Windows.
This commit is contained in:
Eli Zaretskii 2023-01-17 15:44:51 +02:00
parent bd094207c7
commit 09e9d7c749

View file

@ -204,8 +204,12 @@ SUPPRESS-LIST is the list of kinds of warnings to suppress."
some-match))
(define-icon warnings-suppress button
'((emoji "")
(symbol "")
`((emoji "")
;; Many MS-Windows console fonts don't have good glyphs for U+25A0.
(symbol ,(if (and (eq system-type 'windows-nt)
(null window-system))
" » "
""))
(text " stop "))
"Suppress warnings."
:version "29.1"