diff options
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/nsfont.m | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 0b67340c1fd..60c63a8ea97 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-02-26 David Reitter <david.reitter@gmail.com> | ||
| 2 | |||
| 3 | * nsfont.m (nsfont_draw): ns_antialias_text should be a | ||
| 4 | Lisp_Object (Bug#4736). | ||
| 5 | |||
| 1 | 2010-02-25 Kenichi Handa <handa@m17n.org> | 6 | 2010-02-25 Kenichi Handa <handa@m17n.org> |
| 2 | 7 | ||
| 3 | * xdisp.c (reseat_to_string): Fix previous change (bug#5609). | 8 | * xdisp.c (reseat_to_string): Fix previous change (bug#5609). |
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; | |||
| 50 | static Lisp_Object Vns_reg_to_script; | 50 | static Lisp_Object Vns_reg_to_script; |
| 51 | static Lisp_Object Qapple, Qroman, Qmedium; | 51 | static Lisp_Object Qapple, Qroman, Qmedium; |
| 52 | extern Lisp_Object Qappend; | 52 | extern Lisp_Object Qappend; |
| 53 | extern int ns_antialias_text; | 53 | extern Lisp_Object ns_antialias_text; |
| 54 | extern float ns_antialias_threshold; | 54 | extern float ns_antialias_threshold; |
| 55 | extern int ns_tmp_flags; | 55 | extern int ns_tmp_flags; |
| 56 | extern struct nsfont_info *ns_tmp_font; | 56 | 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, | |||
| 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); |