aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorDmitry Antipov2013-09-24 10:43:20 +0400
committerDmitry Antipov2013-09-24 10:43:20 +0400
commitd6d9cbc15cbebfe466756a7a75601173c15287a2 (patch)
tree2f3e5223e8f8d637dc9c3c152929b879748b7918 /src/ChangeLog
parentec7bc82f9c63b6ec533f7489e67b1c1b18d08dd5 (diff)
downloademacs-d6d9cbc15cbebfe466756a7a75601173c15287a2.tar.gz
emacs-d6d9cbc15cbebfe466756a7a75601173c15287a2.zip
Use union for the payload of struct Lisp_Vector.
This helps to avoid a few glitches dictated by C's aliasing rules. * lisp.h (struct Lisp_Vector): Use union for next and contents member. Adjust comment. Change related users. * alloc.c (next_in_free_list, set_next_in_free_list): Remove. Related users changed. * buffer.c, bytecode.c, ccl.c, character.h, chartab.c, composite.c: * composite.h, disptab.h, fns.c, fontset.c, indent.c, keyboard.c: * lread.c, msdos.c, process.c, w32menu.c, window.c, xdisp.c: * xfaces.c, xfont.c, xmenu.c: Related users changed.
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 28b4da176ae..a2eb39e7196 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,18 @@
12013-09-24 Dmitry Antipov <dmantipov@yandex.ru> 12013-09-24 Dmitry Antipov <dmantipov@yandex.ru>
2 2
3 Use union for the payload of struct Lisp_Vector.
4 This helps to avoid a few glitches dictated by C's aliasing rules.
5 * lisp.h (struct Lisp_Vector): Use union for next and
6 contents member. Adjust comment. Change related users.
7 * alloc.c (next_in_free_list, set_next_in_free_list): Remove.
8 Related users changed.
9 * buffer.c, bytecode.c, ccl.c, character.h, chartab.c, composite.c:
10 * composite.h, disptab.h, fns.c, fontset.c, indent.c, keyboard.c:
11 * lread.c, msdos.c, process.c, w32menu.c, window.c, xdisp.c:
12 * xfaces.c, xfont.c, xmenu.c: Related users changed.
13
142013-09-24 Dmitry Antipov <dmantipov@yandex.ru>
15
3 Optimize glyph row clearing and copying routines. 16 Optimize glyph row clearing and copying routines.
4 * dispextern.h (struct glyph_row): Change layout of struct 17 * dispextern.h (struct glyph_row): Change layout of struct
5 glyph_row to help copy_row_except_pointers. Adjust comment. 18 glyph_row to help copy_row_except_pointers. Adjust comment.