diff options
| author | Daniel Colascione | 2012-10-08 04:53:18 -0800 |
|---|---|---|
| committer | Daniel Colascione | 2012-10-08 04:53:18 -0800 |
| commit | 501199a3dbccc83f91a561c6664ae4c1d3dde20a (patch) | |
| tree | c9b24607e5e44b61fad483b10a0c77862d4d2661 /src/ChangeLog | |
| parent | c54ebba4e076caeb6105c6bb682252b139a169fa (diff) | |
| download | emacs-501199a3dbccc83f91a561c6664ae4c1d3dde20a.tar.gz emacs-501199a3dbccc83f91a561c6664ae4c1d3dde20a.zip | |
Code cleanup for cygw32
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 9e8377c2f7c..b252f5deef8 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -11,6 +11,59 @@ | |||
| 11 | 11 | ||
| 12 | 2012-10-08 Daniel Colascione <dancol@dancol.org> | 12 | 2012-10-08 Daniel Colascione <dancol@dancol.org> |
| 13 | 13 | ||
| 14 | * w32term.h (WM_EMACS_BRINGTOTOP, WM_EMACS_INPUT_READY) | ||
| 15 | (WM_EMACS_END): Change WM_EMACS_BRINGTOTOP from 22 to 21 to close | ||
| 16 | accidental message numbering hole. Change other messages to | ||
| 17 | match. | ||
| 18 | |||
| 19 | * w32select.h (HAVE_W32SELECT): Remove. | ||
| 20 | |||
| 21 | * w32select.c, w32proc.c, w32menu.c, w32console.c, w32.c: Include | ||
| 22 | w32common.h instead of w32heap.h | ||
| 23 | |||
| 24 | * w32heap.h (ROUND_UP, ROUND_DOWN, get_page_size) | ||
| 25 | (get_allocation_unit, get_processor_type, get_w32_major_version) | ||
| 26 | (get_w32_minor_version, sysinfo_cache, osinfo_cache) | ||
| 27 | (w32_major_version, w32_minor_version, w32_build_number, OS_9X) | ||
| 28 | (OS_NT, os_subtype, cache_system_info): Move declarations to | ||
| 29 | w32common. | ||
| 30 | |||
| 31 | * w32heap.c: Include w32common.h. | ||
| 32 | (sysinfo_cache, syspage_mask, osinfo_cache, w32_major_version) | ||
| 33 | (w32_minor_version, w32_build_number, w32_subtype): Remove | ||
| 34 | duplicate definitions. | ||
| 35 | |||
| 36 | * w32fns.c: Include w32common.h; include w32heap.h only in | ||
| 37 | WINDOWSNT. | ||
| 38 | |||
| 39 | (Fx_file_dialog): Clarify comment on GetOpenFileName structure. | ||
| 40 | Use `report_file_error' instead of `error' in order to better | ||
| 41 | inform users of what went wrong. Increase NTGUI_UNICODE file | ||
| 42 | dialog box file name length to 32k, the maximum allowed by the NT | ||
| 43 | kernel. | ||
| 44 | |||
| 45 | * w32common.h: New file. | ||
| 46 | (ROUND_UP, ROUND_DOWN, get_page_size) | ||
| 47 | (get_allocation_unit, get_processor_type, get_w32_major_version) | ||
| 48 | (get_w32_minor_version, sysinfo_cache, osinfo_cache) | ||
| 49 | (w32_major_version, w32_minor_version, w32_build_number, OS_9X) | ||
| 50 | (OS_NT, os_subtype, cache_system_info): Move here. | ||
| 51 | |||
| 52 | * unexw32.c, unexcw.c: Include w32common.h. | ||
| 53 | |||
| 54 | * emacs.c (main): Use (defined (WINDOWSNT) || defined | ||
| 55 | HAVE_NTGUI) instead of removed HAVE_W32SELECT to decide whether | ||
| 56 | to call syms_of_w32select. | ||
| 57 | |||
| 58 | * cygw32.h: Remove obsolete EXFUN declarations. | ||
| 59 | |||
| 60 | * cygw32.c (Qutf_16_le): Rename to Qutf_16le. | ||
| 61 | |||
| 62 | * Makefile.in (SOME_MACHINE_OBJECTS): Reverse accidental removal | ||
| 63 | of w32inevt.o from SOME_MACHINE_OBJECTS. | ||
| 64 | |||
| 65 | 2012-10-08 Daniel Colascione <dancol@dancol.org> | ||
| 66 | |||
| 14 | * image.c: Permanent fix for JPEG compilation issue --- limit | 67 | * image.c: Permanent fix for JPEG compilation issue --- limit |
| 15 | jpeglib `boolean' redefinition to Cygwin builds. | 68 | jpeglib `boolean' redefinition to Cygwin builds. |
| 16 | 69 | ||