diff options
| author | Paul Eggert | 2016-01-30 18:59:49 -0800 |
|---|---|---|
| committer | Paul Eggert | 2016-01-30 19:00:17 -0800 |
| commit | 72e3713dc10dfacaabb23bbc905e7a45e0960307 (patch) | |
| tree | 68dd86a17c77b723047675491c05a468a1c8f07d /src/lastfile.c | |
| parent | 692e410470250ea3c1feafaad077ff0758c01ec3 (diff) | |
| download | emacs-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.c | 4 |
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) |
| 43 | char my_edata[] = "End of Emacs initialized data"; | 43 | char my_edata[] = "End of Emacs initialized data"; |
| 44 | #endif | 44 | #endif |
| 45 | 45 | ||