diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 13 |
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 @@ | |||
| 1 | 2013-09-24 Dmitry Antipov <dmantipov@yandex.ru> | 1 | 2013-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 | |||
| 14 | 2013-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. |