From: Eli Zaretskii Date: Thu, 2 Mar 2000 12:22:49 +0000 (+0000) Subject: [MSDOS]: Include msdos.h (for the definition of FRAME_INTERNAL_BORDER_WIDTH). X-Git-Tag: emacs-pretest-21.0.90~4801 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1e3c88855b48122facf920eaa5ff6ec712475f4f;p=emacs.git [MSDOS]: Include msdos.h (for the definition of FRAME_INTERNAL_BORDER_WIDTH). --- diff --git a/src/window.c b/src/window.c index e55cf0dac63..a838c0b6558 100644 --- a/src/window.c +++ b/src/window.c @@ -39,6 +39,9 @@ Boston, MA 02111-1307, USA. */ #ifdef WINDOWSNT #include "w32term.h" #endif +#ifdef MSDOS +#include "msdos.h" +#endif #ifndef max #define max(a, b) ((a) < (b) ? (b) : (a))