]> git.eshelyaron.com Git - emacs.git/commitdiff
Port recent my_edata change to MS-Windows
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 31 Jan 2016 02:59:49 +0000 (18:59 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 31 Jan 2016 03:00:17 +0000 (19:00 -0800)
* src/lastfile.c (my_edata): Also define if WINDOWSNT.

src/lastfile.c

index 9c73fb44700eeee7c0cf5d42a01d70c3694801a7..de4e4f453628c6dde4769973d1a0d537e83c49b9 100644 (file)
@@ -38,8 +38,8 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 
 #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