emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r106483: * src/font.c (font_find_for_


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r106483: * src/font.c (font_find_for_lface) [HAVE_NS]: Ignore case.
Date: Tue, 22 Nov 2011 23:09:27 -0800
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 106483
fixes bug(s): http://debbugs.gnu.org/2526
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Tue 2011-11-22 23:09:27 -0800
message:
  * src/font.c (font_find_for_lface) [HAVE_NS]: Ignore case.
modified:
  src/ChangeLog
  src/font.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2011-11-23 07:03:56 +0000
+++ b/src/ChangeLog     2011-11-23 07:09:27 +0000
@@ -1,3 +1,7 @@
+2011-11-23  Glenn Morris  <address@hidden>
+
+       * font.c (font_find_for_lface) [HAVE_NS]: Ignore case.  (Bug#2526)
+
 2011-11-23  Chong Yidong  <address@hidden>
 
        * xdisp.c (compute_stop_pos): Check validity of end_charpos before

=== modified file 'src/font.c'
--- a/src/font.c        2011-11-17 17:40:48 +0000
+++ b/src/font.c        2011-11-23 07:09:27 +0000
@@ -3160,14 +3160,7 @@
   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))
        {


reply via email to

[Prev in Thread] Current Thread [Next in Thread]