From: Paul Eggert Date: Sun, 31 Jan 2016 02:59:49 +0000 (-0800) Subject: Port recent my_edata change to MS-Windows X-Git-Tag: emacs-26.0.90~2771^2~1 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=72e3713dc10dfacaabb23bbc905e7a45e0960307;p=emacs.git Port recent my_edata change to MS-Windows * src/lastfile.c (my_edata): Also define if WINDOWSNT. --- diff --git a/src/lastfile.c b/src/lastfile.c index 9c73fb44700..de4e4f45362 100644 --- a/src/lastfile.c +++ b/src/lastfile.c @@ -38,8 +38,8 @@ along with GNU Emacs. If not, see . */ #include "lisp.h" -#if ((!defined SYSTEM_MALLOC && !defined HYBRID_MALLOC && !defined WINDOWSNT) \ - || defined CYGWIN || defined DARWIN_OS) +#if ((!defined SYSTEM_MALLOC && !defined HYBRID_MALLOC) \ + || defined WINDOWSNT || defined CYGWIN || defined DARWIN_OS) char my_edata[] = "End of Emacs initialized data"; #endif