aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xterm.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/xterm.h b/src/xterm.h
index 10d376f4fd1..03e3436f9fa 100644
--- a/src/xterm.h
+++ b/src/xterm.h
@@ -347,7 +347,9 @@ struct x_display
347 Window icon_desc; 347 Window icon_desc;
348 348
349 /* The X window that is the parent of this X window. 349 /* The X window that is the parent of this X window.
350 Usually but not always RootWindow. */ 350 Usually this is a window that was made by the window manager,
351 but it can be the root window, and it can be explicitly specified
352 (see the explicit_parent field, below). */
351 Window parent_desc; 353 Window parent_desc;
352 354
353#ifdef USE_X_TOOLKIT 355#ifdef USE_X_TOOLKIT
@@ -439,6 +441,10 @@ struct x_display
439 441
440 /* This is the Emacs structure for the X display this frame is on. */ 442 /* This is the Emacs structure for the X display this frame is on. */
441 struct x_display_info *display_info; 443 struct x_display_info *display_info;
444
445 /* Nonzero means our parent is another application's window
446 and was explicitly specified. */
447 char explicit_parent;
442}; 448};
443 449
444/* Get at the computed faces of an X window frame. */ 450/* Get at the computed faces of an X window frame. */