diff options
author | Eli Zaretskii <eliz@gnu.org> | 2024-10-13 18:29:34 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2024-10-13 18:29:34 +0300 |
commit | ae75ea62324598654b32ed28bf644ec2bc4c04b2 (patch) | |
tree | 6dd0b6568567871d3a5dc545119d9170d6e75586 /lisp | |
parent | b120397868502e8e4ffc09fdeea6ef4c65662cd1 (diff) | |
download | emacs-ae75ea62324598654b32ed28bf644ec2bc4c04b2.tar.gz emacs-ae75ea62324598654b32ed28bf644ec2bc4c04b2.tar.bz2 emacs-ae75ea62324598654b32ed28bf644ec2bc4c04b2.zip |
; * src/fileio.c (Ffile_newer_than_file_p): Fix wording (bug#73709).
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/net/dictionary.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/net/dictionary.el b/lisp/net/dictionary.el index f17dc160997..3343d29da0f 100644 --- a/lisp/net/dictionary.el +++ b/lisp/net/dictionary.el @@ -320,7 +320,11 @@ Otherwise, `dictionary-search' displays definitions in a *Dictionary* buffer." :version "30.1") (defface dictionary-word-definition-face - '((((supports (:family "DejaVu Serif"))) + ;; w32 first, because 'supports' doesn't really tell whether the font + ;; family exists, and MS-Windows selects an ugly font as result. + '((((type w32)) + (:font "Sans Serif")) + (((supports (:family "DejaVu Serif"))) (:family "DejaVu Serif")) (((type x)) (:font "Sans Serif")) @@ -328,7 +332,7 @@ Otherwise, `dictionary-search' displays definitions in a *Dictionary* buffer." (:font "default"))) "The face that is used for displaying the definition of the word." :group 'dictionary -:version "28.1") +:version "31.1") (defface dictionary-word-entry-face '((((type x)) |