aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-01-31 01:53:12 +0000
committerKarl Heuer1995-01-31 01:53:12 +0000
commita1b7a2ab661a5987dbf5ecaf57525b1c118437d3 (patch)
tree85f63cc2b088fbf9c54389ab72c8ea0a321f5ea5 /src
parente1e81fd6b3c311fedebb371189f00da875d9d640 (diff)
downloademacs-a1b7a2ab661a5987dbf5ecaf57525b1c118437d3.tar.gz
emacs-a1b7a2ab661a5987dbf5ecaf57525b1c118437d3.zip
[MULTI_PERDISPLAY] (get_perdisplay): Define this as an exported function.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c13
1 files changed, 13 insertions, 0 deletions
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)
264 264
265 return 0; 265 return 0;
266} 266}
267
268#ifdef MULTI_PERDISPLAY
269/* Return the perdisplay struct corresponding to FRAME. */
270#undef get_perdisplay
271
272PERDISPLAY *
273get_perdisplay(frame)
274 FRAME_PTR frame;
275{
276 return get_perdisplay_macro (frame);
277}
278#define get_perdisplay(frame) get_perdisplay_macro (frame)
279#endif
267 280
268/* Starting and ending updates. 281/* Starting and ending updates.
269 282