1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-14 16:50:58 +00:00

Must define x_*_window_to_frame for non-toolkit.

This commit is contained in:
Jan Djärv 2009-09-04 04:47:36 +00:00
parent 04f4b72d09
commit 0a5e331a0e

View File

@ -380,6 +380,11 @@ extern struct frame *x_any_window_to_frame P_ ((struct x_display_info *, int));
extern struct frame *x_menubar_window_to_frame P_ ((struct x_display_info *, int));
extern struct frame *x_top_window_to_frame P_ ((struct x_display_info *, int));
#if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
#define x_any_window_to_frame x_window_to_frame
#define x_top_window_to_frame x_window_to_frame
#endif
/* This is a chain of structures for all the X displays currently in use. */
extern struct x_display_info *x_display_list;