aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-03-15 01:53:17 +0000
committerKarl Heuer1995-03-15 01:53:17 +0000
commit73410c7662eebd9ad1473de4d34768f103f29f50 (patch)
tree7f2fbc5a85d7cbf1b8f5074abbb6f5088b168067 /src
parent6909e850d24b14db5f9107b5566087ada73be03b (diff)
downloademacs-73410c7662eebd9ad1473de4d34768f103f29f50.tar.gz
emacs-73410c7662eebd9ad1473de4d34768f103f29f50.zip
(Fx_create_frame): set the frame's kboard member.
Diffstat (limited to 'src')
-rw-r--r--src/xfns.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/xfns.c b/src/xfns.c
index 7a5e4ff9d71..6eebc7deb04 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -2707,6 +2707,9 @@ This function is an internal primitive--use `make-frame' instead.")
2707 f->display.x->icon_bitmap = -1; 2707 f->display.x->icon_bitmap = -1;
2708 2708
2709 FRAME_X_DISPLAY_INFO (f) = dpyinfo; 2709 FRAME_X_DISPLAY_INFO (f) = dpyinfo;
2710#ifdef MULTI_KBOARD
2711 FRAME_KBOARD (f) = dpyinfo->kboard;
2712#endif
2710 2713
2711 /* Specify the parent under which to make this X window. */ 2714 /* Specify the parent under which to make this X window. */
2712 2715