diff options
author | Juri Linkov <juri@linkov.net> | 2019-09-04 22:05:05 +0300 |
---|---|---|
committer | Juri Linkov <juri@linkov.net> | 2019-09-04 22:05:05 +0300 |
commit | 7970c89c770f475ab67a8de84223e45c5bb23d8c (patch) | |
tree | 474cc82c12e36cce942a079569e74c79440c49ae /src/window.h | |
parent | d1c14de9a905b2278c3a450963aa8b9498198e25 (diff) | |
download | emacs-7970c89c770f475ab67a8de84223e45c5bb23d8c.tar.gz emacs-7970c89c770f475ab67a8de84223e45c5bb23d8c.tar.bz2 emacs-7970c89c770f475ab67a8de84223e45c5bb23d8c.zip |
Text-based nox builds compiled without X window support
Diffstat (limited to 'src/window.h')
-rw-r--r-- | src/window.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/window.h b/src/window.h index 2683c6b1433..21d2f3d3671 100644 --- a/src/window.h +++ b/src/window.h @@ -753,6 +753,8 @@ wset_next_buffers (struct window *w, Lisp_Object val) #define WINDOW_TAB_BAR_P(W) \ (WINDOWP (WINDOW_XFRAME (W)->tab_bar_window) \ && (W) == XWINDOW (WINDOW_XFRAME (W)->tab_bar_window)) +#else +#define WINDOW_TAB_BAR_P(W) false #endif /* True if W is a tool bar window. */ |