Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b6e64c41
Commit
b6e64c41
authored
Nov 22, 2011
by
Glenn Morris
Browse files
* src/font.c (font_find_for_lface) [HAVE_NS]: Ignore case.
Fixes: debbugs:2526
parent
ee7683eb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
8 deletions
+5
-8
src/ChangeLog
src/ChangeLog
+4
-0
src/font.c
src/font.c
+1
-8
No files found.
src/ChangeLog
View file @
b6e64c41
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
...
...
src/font.c
View file @
b6e64c41
...
...
@@ -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))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment