aboutsummaryrefslogtreecommitdiffstats
path: root/src/lastfile.c
diff options
context:
space:
mode:
authorPaul Eggert2016-01-30 18:59:49 -0800
committerPaul Eggert2016-01-30 19:00:17 -0800
commit72e3713dc10dfacaabb23bbc905e7a45e0960307 (patch)
tree68dd86a17c77b723047675491c05a468a1c8f07d /src/lastfile.c
parent692e410470250ea3c1feafaad077ff0758c01ec3 (diff)
downloademacs-72e3713dc10dfacaabb23bbc905e7a45e0960307.tar.gz
emacs-72e3713dc10dfacaabb23bbc905e7a45e0960307.zip
Port recent my_edata change to MS-Windows
* src/lastfile.c (my_edata): Also define if WINDOWSNT.
Diffstat (limited to 'src/lastfile.c')
-rw-r--r--src/lastfile.c4
1 files changed, 2 insertions, 2 deletions
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 <http://www.gnu.org/licenses/>. */
38 38
39#include "lisp.h" 39#include "lisp.h"
40 40
41#if ((!defined SYSTEM_MALLOC && !defined HYBRID_MALLOC && !defined WINDOWSNT) \ 41#if ((!defined SYSTEM_MALLOC && !defined HYBRID_MALLOC) \
42 || defined CYGWIN || defined DARWIN_OS) 42 || defined WINDOWSNT || defined CYGWIN || defined DARWIN_OS)
43char my_edata[] = "End of Emacs initialized data"; 43char my_edata[] = "End of Emacs initialized data";
44#endif 44#endif
45 45