From 8dc00b2f1e6523c634df3e24379afbe712a32b27 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 27 Apr 2019 11:34:05 +0300 Subject: Fix -nw sessions on MS-Windows broken by a recent commit * src/w32console.c: Include dispextern.h. (initialize_w32_display): Populate defined_color_hook. --- src/w32console.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/w32console.c b/src/w32console.c index df232ecd1a1..8575c930a85 100644 --- a/src/w32console.c +++ b/src/w32console.c @@ -30,6 +30,7 @@ along with GNU Emacs. If not, see . */ #include "lisp.h" #include "coding.h" #include "termchar.h" /* for FRAME_TTY */ +#include "dispextern.h" /* for tty_defined_color */ #include "menu.h" /* for tty_menu_show */ #include "w32term.h" #include "w32common.h" /* for os_subtype */ @@ -673,6 +674,7 @@ initialize_w32_display (struct terminal *term, int *width, int *height) term->update_begin_hook = w32con_update_begin; term->update_end_hook = w32con_update_end; + term->defined_color_hook = &tty_defined_color; /* xfaces.c */ term->read_socket_hook = w32_console_read_socket; term->mouse_position_hook = w32_console_mouse_position; term->menu_show_hook = tty_menu_show; -- cgit v1.2.1