]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix GNUstep build
authorAlan Third <alan@idiocy.org>
Sun, 11 Oct 2020 19:46:07 +0000 (20:46 +0100)
committerAlan Third <alan@idiocy.org>
Sun, 11 Oct 2020 19:47:59 +0000 (20:47 +0100)
Fix mistakes made when removing Cocoa code from nsfont.m.

* src/nsfont.m (nsfont_draw): Remove spurious #ifdef.
(ns_uni_to_glyphs): The #if/#endif was removed from this code, but the
code itself not removed.  Remove it now.

src/nsfont.m

index d1543ec69ce02030b4cda74fb1cb1e06bf6ec66a..378a64084014881e3414d566c8dd49dbdfa0d77a 100644 (file)
@@ -1089,7 +1089,6 @@ nsfont_draw (struct glyph_string *s, int from, int to, int x, int y,
               : FRAME_BACKGROUND_COLOR (s->f)));
 
   /* render under GNUstep using DPS */
-#ifdef NS_IMPL_GNUSTEP
   {
     NSGraphicsContext *context = GSCurrentContext ();
 
@@ -1162,10 +1161,6 @@ ns_uni_to_glyphs (struct nsfont_info *font_info, unsigned char block)
     for (i = 0; i < 0x100; i++, glyphs++)
       {
         g = unichars[i];
-        g = glyphStorage->cglyphs[i];
-        /* TODO: is this a good check?  Maybe need to use coveredChars.  */
-        if (g > numGlyphs || g == NSNullGlyph)
-          g = INVALID_GLYPH; /* Hopefully unused...  */
         *glyphs = g;
       }
   }