aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorKenichi Handa2013-03-16 01:04:47 +0900
committerKenichi Handa2013-03-16 01:04:47 +0900
commit646859d33a8ede0cbb3e1685a313420b6510c9c1 (patch)
treec8077a7e046ac64dd9bd680b5349bfc34cd6deac /src/ChangeLog
parent8a44e6d176989d8eef140314098c76a70248ba61 (diff)
parentd7251c31ab74219747e3755f78ee07b37a16697d (diff)
downloademacs-646859d33a8ede0cbb3e1685a313420b6510c9c1.tar.gz
emacs-646859d33a8ede0cbb3e1685a313420b6510c9c1.zip
merge trunk
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog76
1 files changed, 76 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 44e2ff1a1f1..606a6bcb7f6 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -26,6 +26,82 @@
26 * lisp.h (adjust_after_replace): Cancel externing it. 26 * lisp.h (adjust_after_replace): Cancel externing it.
27 (insert_from_gap): Adjust prototype. 27 (insert_from_gap): Adjust prototype.
28 28
292013-03-15 Eli Zaretskii <eliz@gnu.org>
30
31 * w32term.c (w32fullscreen_hook): Swap FULLSCREEN_BOTH and
32 FULLSCREEN_MAXIMIZED. (Bug#13935)
33
342013-03-15 Dmitry Antipov <dmantipov@yandex.ru>
35
36 * region-cache.c (find_cache_boundary, move_cache_gap)
37 (insert_cache_boundary, delete_cache_boundaries, set_cache_region):
38 Simplify debugging check and convert to eassert. Adjust comment.
39 (pp_cache): Put under ENABLE_CHECKING.
40
412013-03-14 Eli Zaretskii <eliz@gnu.org>
42
43 * w32term.c (w32_read_socket) <WM_WINDOWPOSCHANGED>: Remove old
44 and incorrect code. Treat WM_WINDOWPOSCHANGED like WM_ACTIVATE
45 and WM_ACTIVATEAPP.
46 (w32fullscreen_hook): If the frame is visible, reset
47 f->want_fullscreen flag after changing the frame size. If the
48 frame is not visible, set f->want_fullscreen to FULLSCREEN_WAIT.
49 (Bug#13953)
50
512013-03-13 Daniel Colascione <dancol@dancol.org>
52
53 * emacs.c (main): Call syms_of_cygw32 on CYGWIN non-NTGUI builds
54 too so that these builds can use Cygwin's file conversion
55 functions. (We've been building and linking cygw32.o all along
56 and just not using it.)
57
582013-03-13 Paul Eggert <eggert@cs.ucla.edu>
59
60 File synchronization fixes (Bug#13944).
61 * Makefile.in (LIB_FDATASYNC): New macro.
62 (LIBES): Use it.
63 * conf_post.h (BSD_SYSTEM, BSD_SYSTEM_AHB): Remove; no longer needed.
64 * fileio.c (Fwrite_region, write_region_inhibit_fsync):
65 Don't worry about HAVE_FSYNC, since a substitute fsync is
66 available if the system lacks one.
67 (Fwrite_regin): Retry fsync if interrupted.
68
692013-03-13 Eli Zaretskii <eliz@gnu.org>
70
71 * w32term.c (w32_read_socket): If the Emacs frame is being
72 activated, call w32fullscreen_hook, to make sure the new frame
73 dimensions are in effect. (Bug#13937)
74
752013-03-13 Dmitry Antipov <dmantipov@yandex.ru>
76
77 * xdisp.c (init_iterator): Simplify because both character and byte
78 positions are either specified or -1. Add eassert. Adjust comment.
79 * window.c (Fscroll_other_window): Use SET_PT_BOTH because both
80 character and byte positions can be obtained from marker.
81
822013-03-13 Paul Eggert <eggert@cs.ucla.edu>
83
84 Static checking by Sun C 5.12.
85 * alloc.c (buffer_memory_full) [REL_ALLOC]:
86 * bytecode.c (exec_byte_code):
87 * dispnew.c (init_display):
88 * eval.c (error):
89 * fileio.c (Fsubstitute_in_file_name):
90 * keyboard.c (Fevent_convert_list):
91 * keymap.c (Fsingle_key_description):
92 * term.c (maybe_fatal, fatal):
93 * xfns.c (Fx_display_backing_store, Fx_display_visual_class):
94 * xsmfns.c (Fhandle_save_session):
95 Omit unreachable code.
96 * keymap.c (map_keymap_char_table_item): Cast void * to
97 a function pointer type; the C Standard requires this.
98
99 * sysdep.c: Remove a use of BSD_SYSTEM, which I'm trying to phase out.
100 Include <sys/param.h> unconditionally, as that works elsewhere and
101 is simpler here. Include <sys/sysctl.h> if DARWIN_OS ||
102 __FreeBSD__, not if BSD_SYSTEM, since it's needed only for Darwin
103 and FreeBSD now.
104
292013-03-11 Paul Eggert <eggert@cs.ucla.edu> 1052013-03-11 Paul Eggert <eggert@cs.ucla.edu>
30 106
31 * insdel.c (adjust_after_replace): Use bool for boolean. 107 * insdel.c (adjust_after_replace): Use bool for boolean.