From: Richard M. Stallman Date: Thu, 16 Nov 1995 20:00:37 +0000 (+0000) Subject: (FRAME_WINDOW_P): Always define it one way or another. X-Git-Tag: emacs-19.34~2292 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7651b07e90433ca7322d9dac1e9498dc3cb51a8b;p=emacs.git (FRAME_WINDOW_P): Always define it one way or another. --- diff --git a/src/frame.h b/src/frame.h index e1183e9c515..cfb42dad720 100644 --- a/src/frame.h +++ b/src/frame.h @@ -313,6 +313,9 @@ typedef struct frame *FRAME_PTR; #ifdef HAVE_NTGUI #define FRAME_WINDOW_P(f) FRAME_WIN32_P (f) #endif +#ifndef FRAME_WINDOW_P +#define FRAME_WINDOW_P(f) (0) +#endif #define FRAME_LIVE_P(f) ((f)->output_data.nothing != 0) #define FRAME_TERMCAP_P(f) ((f)->output_method == output_termcap)