diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 4378cfce5d3..959f29a2675 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,35 @@ | |||
| 1 | 2014-05-27 Fabrice Popineau <fabrice.popineau@gmail.com> | ||
| 2 | |||
| 3 | * Makefile.in (C_HEAP_SWITCH): Get the predefined heap size from | ||
| 4 | configure. | ||
| 5 | (ADDSECTION, MINGW_TEMACS_POST_LINK): Remove, no longer used. | ||
| 6 | |||
| 7 | * lisp.h (NONPOINTER_BITS): Modify the condition to define to zero | ||
| 8 | for MinGW, since it no longer uses gmalloc. | ||
| 9 | |||
| 10 | * buffer.c: Do not define mmap allocations functions for Windows. | ||
| 11 | Remove mmap_find which is unused. Remove mmap_set_vars which does | ||
| 12 | nothing useful. | ||
| 13 | [WINDOWSNT]: Include w32heap.h. | ||
| 14 | (init_buffer): Always allocate new memory for buffers. | ||
| 15 | |||
| 16 | * emacs.c: Remove mmap_set_vars calls. | ||
| 17 | |||
| 18 | * image.c (free_image): Undef free for Windows because it is | ||
| 19 | redirected to our private version. | ||
| 20 | |||
| 21 | * unexw32.c (COPY_PROC_CHUNK): Use %p format for 64bits | ||
| 22 | compatibility. | ||
| 23 | (copy_executable_and_dump_data): Remove dumping the heap section. | ||
| 24 | (unexec): Restore using_dynamic_heap after dumping. | ||
| 25 | |||
| 26 | * w32heap.c (dumped_data_commit, malloc_after_dump) | ||
| 27 | (malloc_before_dump, realloc_after_dump, realloc_before_dump) | ||
| 28 | (free_after_dump, free_before_dump, mmap_alloc, mmap_realloc) | ||
| 29 | (mmap_free): New functions. | ||
| 30 | |||
| 31 | * w32heap.h: Declare dumped_data and mmap_* function prototypes. | ||
| 32 | |||
| 1 | 2014-05-27 Paul Eggert <eggert@cs.ucla.edu> | 33 | 2014-05-27 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 34 | ||
| 3 | * image.c (imagemagick_load_image): Use MagickRealType for local | 35 | * image.c (imagemagick_load_image): Use MagickRealType for local |