]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix last changes in src/ftfont.c
authorYAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
Sun, 5 May 2019 06:55:07 +0000 (15:55 +0900)
committerYAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
Sun, 5 May 2019 06:55:07 +0000 (15:55 +0900)
* src/ftfont.c (ftfont_shape): Add missing argument direction.
(fthbfont_shape) [HAVE_HARFBUZZ]: Remove unused variable ftfont_info.
(fthbfont_driver) [HAVE_HARFBUZZ]: Remove redundant redeclaration.

src/ftfont.c

index f4e0d7d84082af0ab524f82d8d9c2711b9bf0706..2373af8766a181dfe5819232eee058c216784f80 100644 (file)
@@ -2691,7 +2691,7 @@ ftfont_shape_by_flt (Lisp_Object lgstring, struct font *font,
 }
 
 Lisp_Object
-ftfont_shape (Lisp_Object lgstring)
+ftfont_shape (Lisp_Object lgstring, Lisp_Object direction)
 {
   struct font *font = CHECK_FONT_GET_OBJECT (LGSTRING_FONT (lgstring));
   struct font_info *ftfont_info = (struct font_info *) font;
@@ -3019,7 +3019,6 @@ Lisp_Object
 fthbfont_shape (Lisp_Object lgstring, Lisp_Object direction)
 {
   struct font *font = CHECK_FONT_GET_OBJECT (LGSTRING_FONT (lgstring));
-  struct font_info *ftfont_info = (struct font_info *) font;
 
   return fthbfont_shape_by_hb (lgstring, font, direction);
 }
@@ -3116,9 +3115,6 @@ static struct font_driver const ftfont_driver =
   .filter_properties = ftfont_filter_properties,
   .combining_capability = ftfont_combining_capability,
   };
-#ifdef HAVE_HARFBUZZ
-static struct font_driver fthbfont_driver;
-#endif /* HAVE_HARFBUZZ */
 
 void
 syms_of_ftfont (void)