]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix no-toolkit build
authorPo Lu <luangruo@yahoo.com>
Sun, 27 Mar 2022 01:48:37 +0000 (09:48 +0800)
committerPo Lu <luangruo@yahoo.com>
Sun, 27 Mar 2022 01:48:37 +0000 (09:48 +0800)
* src/xterm.c (x_top_window_to_frame): Declare correctly on
no-toolkit builds.

src/xterm.c

index 3be5733215531e85e0e2d5e72d4f1c4b93f0123d..a99089302969a64a1a8083399560b247b10259cc 100644 (file)
@@ -7657,7 +7657,12 @@ x_top_window_to_frame (struct x_display_info *dpyinfo, int wdesc)
 #else /* !USE_X_TOOLKIT && !USE_GTK */
 
 #define x_any_window_to_frame(d, i) x_window_to_frame (d, i)
-#define x_top_window_to_frame(d, i) x_window_to_frame (d, i)
+
+struct frame *
+x_top_window_to_frame (struct x_display_info *dpyinfo, int wdesc)
+{
+  return x_window_to_frame (dpyinfo, wdesc);
+}
 
 #endif /* USE_X_TOOLKIT || USE_GTK */