aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/font.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/font.h b/src/font.h
index 74dde194dda..053d6cca791 100644
--- a/src/font.h
+++ b/src/font.h
@@ -761,7 +761,7 @@ EXFUN (Ffont_put, 3);
761EXFUN (Flist_fonts, 4); 761EXFUN (Flist_fonts, 4);
762EXFUN (Ffont_family_list, 1); 762EXFUN (Ffont_family_list, 1);
763EXFUN (Fclear_font_cache, 0); 763EXFUN (Fclear_font_cache, 0);
764EXFUN (Ffont_xlfd_name, 1); 764EXFUN (Ffont_xlfd_name, 2);
765 765
766extern Lisp_Object font_make_spec P_ ((void)); 766extern Lisp_Object font_make_spec P_ ((void));
767extern Lisp_Object font_make_entity P_ ((void)); 767extern Lisp_Object font_make_entity P_ ((void));
@@ -856,6 +856,18 @@ extern struct font_driver uniscribe_font_driver;
856extern struct font_driver atmfont_driver; 856extern struct font_driver atmfont_driver;
857#endif /* MAC_OS */ 857#endif /* MAC_OS */
858 858
859#ifndef FONT_DEBUG
860#define FONT_DEBUG
861#endif
862
863extern void font_add_log P_ ((char *, Lisp_Object, Lisp_Object));
864
865#ifdef FONT_DEBUG
866#define font_assert(X) do {if (!(X)) abort ();} while (0)
867#else /* not FONT_DEBUG */
868#define font_assert(X) (void) 0
869#endif /* not FONT_DEBUG */
870
859#endif /* not EMACS_FONT_H */ 871#endif /* not EMACS_FONT_H */
860 872
861/* arch-tag: 3b7260c3-5bec-4d6b-a0db-95c1b431b1a2 873/* arch-tag: 3b7260c3-5bec-4d6b-a0db-95c1b431b1a2