From a1b7a2ab661a5987dbf5ecaf57525b1c118437d3 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Tue, 31 Jan 1995 01:53:12 +0000 Subject: [PATCH] [MULTI_PERDISPLAY] (get_perdisplay): Define this as an exported function. --- src/xterm.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/xterm.c b/src/xterm.c index 6e3d2056cb1..7a3249a4675 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -264,6 +264,19 @@ x_display_info_for_display (dpy) return 0; } + +#ifdef MULTI_PERDISPLAY +/* Return the perdisplay struct corresponding to FRAME. */ +#undef get_perdisplay + +PERDISPLAY * +get_perdisplay(frame) + FRAME_PTR frame; +{ + return get_perdisplay_macro (frame); +} +#define get_perdisplay(frame) get_perdisplay_macro (frame) +#endif /* Starting and ending updates. -- 2.39.5