From 47021b111d00462106780480c6c690bb7f0d0ae3 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Wed, 22 Mar 2006 22:47:32 +0000 Subject: [PATCH] Define aliases for append_glyph and produce_stretch_glyph when `static' is defined to avoid name clash with those in xdisp.c. --- src/term.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/term.c b/src/term.c index 2b44653b961..603305c8f17 100644 --- a/src/term.c +++ b/src/term.c @@ -1629,6 +1629,12 @@ term_get_fkeys_1 () Character Display Information ***********************************************************************/ +/* Avoid name clash with functions defined in xterm.c */ +#ifdef static +#define append_glyph append_glyph_term +#define produce_stretch_glyph produce_stretch_glyph_term +#endif + static void append_glyph P_ ((struct it *)); static void produce_stretch_glyph P_ ((struct it *)); -- 2.39.2