]> git.eshelyaron.com Git - emacs.git/commitdiff
* nsfont.m (nsfont_draw): ns_antialias_text should be a Lisp_Object (Bug#4736).
authorChong Yidong <cyd@stupidchicken.com>
Fri, 26 Feb 2010 00:48:53 +0000 (19:48 -0500)
committerChong Yidong <cyd@stupidchicken.com>
Fri, 26 Feb 2010 00:48:53 +0000 (19:48 -0500)
src/ChangeLog
src/nsfont.m

index 0b67340c1fd1035addae2cddf9bff06d824647ec..60c63a8ea976f74342a4c0e793ea555fc402d309 100644 (file)
@@ -1,3 +1,8 @@
+2010-02-26  David Reitter  <david.reitter@gmail.com>
+
+       * nsfont.m (nsfont_draw): ns_antialias_text should be a
+       Lisp_Object (Bug#4736).
+
 2010-02-25  Kenichi Handa  <handa@m17n.org>
 
        * xdisp.c (reseat_to_string): Fix previous change (bug#5609).
index 97d74a82f2bc22ba7bb126532c46c32c206efbcf..59d5ee73db1f4c96b37405d1afcfa4db4d04a885 100644 (file)
@@ -50,7 +50,7 @@ extern Lisp_Object Qnormal, Qbold, Qitalic, Qcondensed, Qexpanded;
 static Lisp_Object Vns_reg_to_script;
 static Lisp_Object Qapple, Qroman, Qmedium;
 extern Lisp_Object Qappend;
-extern int ns_antialias_text;
+extern Lisp_Object ns_antialias_text;
 extern float ns_antialias_threshold;
 extern int ns_tmp_flags;
 extern struct nsfont_info *ns_tmp_font;
@@ -1231,7 +1231,7 @@ nsfont_draw (struct glyph_string *s, int from, int to, int x, int y,
 
     CGContextSetFont (gcontext, font->cgfont);
     CGContextSetFontSize (gcontext, font->size);
-    if (ns_antialias_text == Qnil || font->size <= ns_antialias_threshold)
+    if (NILP (ns_antialias_text) || font->size <= ns_antialias_threshold)
       CGContextSetShouldAntialias (gcontext, 0);
     else
       CGContextSetShouldAntialias (gcontext, 1);