diff options
| author | Alan Third | 2019-09-23 19:17:38 +0100 |
|---|---|---|
| committer | Alan Third | 2019-09-23 19:17:38 +0100 |
| commit | 64f9d6d4537638e2ba710dbadcabc51d37d92c8c (patch) | |
| tree | 70e6455dc7b21fe7f7b5b17eea54cb343a8cfd62 | |
| parent | 83864ac7afcd1ce9345c9b4390a66d55aa7135a5 (diff) | |
| download | emacs-64f9d6d4537638e2ba710dbadcabc51d37d92c8c.tar.gz emacs-64f9d6d4537638e2ba710dbadcabc51d37d92c8c.zip | |
Fix GNUstep build
* src/nsfont.m (nsfont_draw): Change type to match.
Co-authored-by: martin rudalics <rudalics@gmx.at>
| -rw-r--r-- | src/nsfont.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nsfont.m b/src/nsfont.m index dc609cc5d08..437776e7df0 100644 --- a/src/nsfont.m +++ b/src/nsfont.m | |||
| @@ -1010,7 +1010,7 @@ nsfont_draw (struct glyph_string *s, int from, int to, int x, int y, | |||
| 1010 | NSRect r; | 1010 | NSRect r; |
| 1011 | struct nsfont_info *font; | 1011 | struct nsfont_info *font; |
| 1012 | NSColor *col, *bgCol; | 1012 | NSColor *col, *bgCol; |
| 1013 | unsigned short *t = s->char2b; | 1013 | unsigned *t = s->char2b; |
| 1014 | int i, len, flags; | 1014 | int i, len, flags; |
| 1015 | char isComposite = s->first_glyph->type == COMPOSITE_GLYPH; | 1015 | char isComposite = s->first_glyph->type == COMPOSITE_GLYPH; |
| 1016 | 1016 | ||