mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-02-07 20:54:32 +00:00
* src/font.c (font_find_for_lface) [HAVE_NS]: Ignore case.
Fixes: debbugs:2526
This commit is contained in:
parent
ee7683ebb7
commit
b6e64c4136
@ -1,3 +1,7 @@
|
||||
2011-11-23 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
|
||||
|
||||
2011-11-23 Chong Yidong <cyd@gnu.org>
|
||||
|
||||
* xdisp.c (compute_stop_pos): Check validity of end_charpos before
|
||||
|
@ -3160,14 +3160,7 @@ font_find_for_lface (FRAME_PTR f, Lisp_Object *attrs, Lisp_Object spec, int c)
|
||||
else
|
||||
{
|
||||
Lisp_Object alters
|
||||
= Fassoc_string (val, Vface_alternative_font_family_alist,
|
||||
/* Font family names are case-sensitive under NS. */
|
||||
#ifndef HAVE_NS
|
||||
Qt
|
||||
#else
|
||||
Qnil
|
||||
#endif
|
||||
);
|
||||
= Fassoc_string (val, Vface_alternative_font_family_alist, Qt);
|
||||
|
||||
if (! NILP (alters))
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user