aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorDmitry Antipov2012-06-26 18:41:01 +0400
committerDmitry Antipov2012-06-26 18:41:01 +0400
commit62efea5e881407a178c5c291575facc17dca8a3f (patch)
tree03224f091836b782bea0e86c76d9135d9a5f86bf /src/ChangeLog
parent995a55159dc4b4831e45fe9827a99cadad1bcbd3 (diff)
downloademacs-62efea5e881407a178c5c291575facc17dca8a3f.tar.gz
emacs-62efea5e881407a178c5c291575facc17dca8a3f.zip
* alloc.c (allocate_window): Zero out non-Lisp part of newly
allocated window. (allocate_process): Likewise for new process. (allocate_terminal): Changed to use offsetof. (allocate_frame): Likewise. * frame.c (make_frame): Omit redundant initialization. * window.c (make_parent_window): Use memset. (make_window): Omit redundant initialization. * process.c (make_process): Omit redundant initialization. * terminal.c (create_terminal): Likewise.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 9c6bf77785b..c7922ee8a8c 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,18 @@
12012-06-26 Dmitry Antipov <dmantipov@yandex.ru> 12012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
2 2
3 * alloc.c (allocate_window): Zero out non-Lisp part of newly
4 allocated window.
5 (allocate_process): Likewise for new process.
6 (allocate_terminal): Changed to use offsetof.
7 (allocate_frame): Likewise.
8 * frame.c (make_frame): Omit redundant initialization.
9 * window.c (make_parent_window): Use memset.
10 (make_window): Omit redundant initialization.
11 * process.c (make_process): Omit redundant initialization.
12 * terminal.c (create_terminal): Likewise.
13
142012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
15
3 * term.c (delete_tty): Remove redundant call to memset. 16 * term.c (delete_tty): Remove redundant call to memset.
4 17
52012-06-26 Dmitry Antipov <dmantipov@yandex.ru> 182012-06-26 Dmitry Antipov <dmantipov@yandex.ru>