From b80a24b221e039995dfa82604a74b27e481604c4 Mon Sep 17 00:00:00 2001 From: Yuuki Harano Date: Tue, 23 Nov 2021 23:05:17 +0900 Subject: [PATCH] * src/font.h: Remove redundant condition It is redundant because pgtk build always defines HAVE_FREETYPE. --- src/font.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/font.h b/src/font.h index a847f232f6d..1da72cca079 100644 --- a/src/font.h +++ b/src/font.h @@ -822,7 +822,7 @@ extern Lisp_Object merge_font_spec (Lisp_Object, Lisp_Object); extern Lisp_Object font_make_entity (void); extern Lisp_Object font_make_object (int, Lisp_Object, int); -#if defined (HAVE_XFT) || defined (HAVE_FREETYPE) || defined (HAVE_NS) || defined (HAVE_PGTK) +#if defined (HAVE_XFT) || defined (HAVE_FREETYPE) || defined (HAVE_NS) extern Lisp_Object font_build_object (int, Lisp_Object, Lisp_Object, double); #endif -- 2.39.5