aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorEli Zaretskii2012-10-08 15:36:06 +0200
committerEli Zaretskii2012-10-08 15:36:06 +0200
commiteb3abb6141b91f4d940233979d7538ba4c3d1976 (patch)
tree3202ce162039907f092f425f03d8a044ef5cb204 /src/ChangeLog
parent7014794467aac02be3a935a093e1bfb8ad410c12 (diff)
parent15c720a3607ccbac1a5ff4bd10810f9342db0ad1 (diff)
downloademacs-eb3abb6141b91f4d940233979d7538ba4c3d1976.tar.gz
emacs-eb3abb6141b91f4d940233979d7538ba4c3d1976.zip
Merge from trunk after addition of w32common.h.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 30db50fbcc8..d0670d05af3 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -4,6 +4,13 @@
4 (W32TERM_H): Add $(ATIMER_H) and $(FRAME_H). 4 (W32TERM_H): Add $(ATIMER_H) and $(FRAME_H).
5 ($(BLD)/emacs.$(O), $(BLD)/w32console.$(O)): Update dependencies. 5 ($(BLD)/emacs.$(O), $(BLD)/w32console.$(O)): Update dependencies.
6 (GLOBAL_SOURCES): Add cygw32.c. 6 (GLOBAL_SOURCES): Add cygw32.c.
7 ($(BLD)/unexw32.$(O)):
8 ($(BLD)/w32.$(O)):
9 ($(BLD)/w32console.$(O)):
10 ($(BLD)/w32fns.$(O)):
11 ($(BLD)/w32heap.$(O)):
12 ($(BLD)/w32menu.$(O)):
13 ($(BLD)/w32proc.$(O)): Add w32common.h.
7 14
8 * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now 15 * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now
9 'const char *'. 16 'const char *'.
@@ -11,6 +18,59 @@
11 18
122012-10-08 Daniel Colascione <dancol@dancol.org> 192012-10-08 Daniel Colascione <dancol@dancol.org>
13 20
21 * w32term.h (WM_EMACS_BRINGTOTOP, WM_EMACS_INPUT_READY)
22 (WM_EMACS_END): Change WM_EMACS_BRINGTOTOP from 22 to 21 to close
23 accidental message numbering hole. Change other messages to
24 match.
25
26 * w32select.h (HAVE_W32SELECT): Remove.
27
28 * w32select.c, w32proc.c, w32menu.c, w32console.c, w32.c: Include
29 w32common.h instead of w32heap.h
30
31 * w32heap.h (ROUND_UP, ROUND_DOWN, get_page_size)
32 (get_allocation_unit, get_processor_type, get_w32_major_version)
33 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
34 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
35 (OS_NT, os_subtype, cache_system_info): Move declarations to
36 w32common.
37
38 * w32heap.c: Include w32common.h.
39 (sysinfo_cache, syspage_mask, osinfo_cache, w32_major_version)
40 (w32_minor_version, w32_build_number, w32_subtype): Remove
41 duplicate definitions.
42
43 * w32fns.c: Include w32common.h; include w32heap.h only in
44 WINDOWSNT.
45
46 (Fx_file_dialog): Clarify comment on GetOpenFileName structure.
47 Use `report_file_error' instead of `error' in order to better
48 inform users of what went wrong. Increase NTGUI_UNICODE file
49 dialog box file name length to 32k, the maximum allowed by the NT
50 kernel.
51
52 * w32common.h: New file.
53 (ROUND_UP, ROUND_DOWN, get_page_size)
54 (get_allocation_unit, get_processor_type, get_w32_major_version)
55 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
56 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
57 (OS_NT, os_subtype, cache_system_info): Move here.
58
59 * unexw32.c, unexcw.c: Include w32common.h.
60
61 * emacs.c (main): Use (defined (WINDOWSNT) || defined
62 HAVE_NTGUI) instead of removed HAVE_W32SELECT to decide whether
63 to call syms_of_w32select.
64
65 * cygw32.h: Remove obsolete EXFUN declarations.
66
67 * cygw32.c (Qutf_16_le): Rename to Qutf_16le.
68
69 * Makefile.in (SOME_MACHINE_OBJECTS): Reverse accidental removal
70 of w32inevt.o from SOME_MACHINE_OBJECTS.
71
722012-10-08 Daniel Colascione <dancol@dancol.org>
73
14 * image.c: Permanent fix for JPEG compilation issue --- limit 74 * image.c: Permanent fix for JPEG compilation issue --- limit
15 jpeglib `boolean' redefinition to Cygwin builds. 75 jpeglib `boolean' redefinition to Cygwin builds.
16 76