diff options
| author | Kenichi Handa | 2013-03-16 01:04:47 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2013-03-16 01:04:47 +0900 |
| commit | 646859d33a8ede0cbb3e1685a313420b6510c9c1 (patch) | |
| tree | c8077a7e046ac64dd9bd680b5349bfc34cd6deac /src/ChangeLog | |
| parent | 8a44e6d176989d8eef140314098c76a70248ba61 (diff) | |
| parent | d7251c31ab74219747e3755f78ee07b37a16697d (diff) | |
| download | emacs-646859d33a8ede0cbb3e1685a313420b6510c9c1.tar.gz emacs-646859d33a8ede0cbb3e1685a313420b6510c9c1.zip | |
merge trunk
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 76 |
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 | ||
| 29 | 2013-03-15 Eli Zaretskii <eliz@gnu.org> | ||
| 30 | |||
| 31 | * w32term.c (w32fullscreen_hook): Swap FULLSCREEN_BOTH and | ||
| 32 | FULLSCREEN_MAXIMIZED. (Bug#13935) | ||
| 33 | |||
| 34 | 2013-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 | |||
| 41 | 2013-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 | |||
| 51 | 2013-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 | |||
| 58 | 2013-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 | |||
| 69 | 2013-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 | |||
| 75 | 2013-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 | |||
| 82 | 2013-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 | |||
| 29 | 2013-03-11 Paul Eggert <eggert@cs.ucla.edu> | 105 | 2013-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. |