diff options
| author | Dmitry Antipov | 2013-08-15 09:23:40 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2013-08-15 09:23:40 +0400 |
| commit | 9c25330708e49ddaeb71f16a65cdc1b51be2a27d (patch) | |
| tree | 0d03865094f5189816fccdff2248a22761713a50 /src/ChangeLog | |
| parent | 05e64f9f63f98108bb04f8ab45343e507862d8f4 (diff) | |
| download | emacs-9c25330708e49ddaeb71f16a65cdc1b51be2a27d.tar.gz emacs-9c25330708e49ddaeb71f16a65cdc1b51be2a27d.zip | |
* term.c (get_named_tty, create_tty_output, tty_free_frame_resources)
(tty_free_frame_resources, delete_tty): Prefer eassert to emacs_abort.
* image.c (make_image_cache): For struct image_cache, prefer xmalloc
to xzalloc and so avoid redundant call to memset.
* xterm.c (x_term_init): Avoid unnecessary initializations of dpyinfo
members because it is allocated with xzalloc and so already zeroed.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 43e9bca061b..0d3982618b7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2013-08-15 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 2 | |||
| 3 | * term.c (get_named_tty, create_tty_output, tty_free_frame_resources) | ||
| 4 | (tty_free_frame_resources, delete_tty): Prefer eassert to emacs_abort. | ||
| 5 | * image.c (make_image_cache): For struct image_cache, prefer xmalloc | ||
| 6 | to xzalloc and so avoid redundant call to memset. | ||
| 7 | * xterm.c (x_term_init): Avoid unnecessary initializations of dpyinfo | ||
| 8 | members because it is allocated with xzalloc and so already zeroed. | ||
| 9 | |||
| 1 | 2013-08-14 Ken Brown <kbrown@cornell.edu> | 10 | 2013-08-14 Ken Brown <kbrown@cornell.edu> |
| 2 | 11 | ||
| 3 | * gmalloc.c (memalign) [CYGWIN]: Rename to emacs_memalign | 12 | * gmalloc.c (memalign) [CYGWIN]: Rename to emacs_memalign |