aboutsummaryrefslogtreecommitdiffstats
path: root/src/nsfont.m
diff options
context:
space:
mode:
authorChong Yidong2010-02-25 19:48:53 -0500
committerChong Yidong2010-02-25 19:48:53 -0500
commitcf2fdcfbd30470838239d8199da909a990cdeb3b (patch)
treea6234bcdd97cc7faeabafccf131310fee497f612 /src/nsfont.m
parent8a249abc87b8775c9412fe3a1bed73e429cdacab (diff)
downloademacs-cf2fdcfbd30470838239d8199da909a990cdeb3b.tar.gz
emacs-cf2fdcfbd30470838239d8199da909a990cdeb3b.zip
* nsfont.m (nsfont_draw): ns_antialias_text should be a Lisp_Object (Bug#4736).
Diffstat (limited to 'src/nsfont.m')
-rw-r--r--src/nsfont.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nsfont.m b/src/nsfont.m
index 97d74a82f2b..59d5ee73db1 100644
--- a/src/nsfont.m
+++ b/src/nsfont.m
@@ -50,7 +50,7 @@ extern Lisp_Object Qnormal, Qbold, Qitalic, Qcondensed, Qexpanded;
50static Lisp_Object Vns_reg_to_script; 50static Lisp_Object Vns_reg_to_script;
51static Lisp_Object Qapple, Qroman, Qmedium; 51static Lisp_Object Qapple, Qroman, Qmedium;
52extern Lisp_Object Qappend; 52extern Lisp_Object Qappend;
53extern int ns_antialias_text; 53extern Lisp_Object ns_antialias_text;
54extern float ns_antialias_threshold; 54extern float ns_antialias_threshold;
55extern int ns_tmp_flags; 55extern int ns_tmp_flags;
56extern struct nsfont_info *ns_tmp_font; 56extern struct nsfont_info *ns_tmp_font;
@@ -1231,7 +1231,7 @@ nsfont_draw (struct glyph_string *s, int from, int to, int x, int y,
1231 1231
1232 CGContextSetFont (gcontext, font->cgfont); 1232 CGContextSetFont (gcontext, font->cgfont);
1233 CGContextSetFontSize (gcontext, font->size); 1233 CGContextSetFontSize (gcontext, font->size);
1234 if (ns_antialias_text == Qnil || font->size <= ns_antialias_threshold) 1234 if (NILP (ns_antialias_text) || font->size <= ns_antialias_threshold)
1235 CGContextSetShouldAntialias (gcontext, 0); 1235 CGContextSetShouldAntialias (gcontext, 0);
1236 else 1236 else
1237 CGContextSetShouldAntialias (gcontext, 1); 1237 CGContextSetShouldAntialias (gcontext, 1);