diff options
| author | Eli Zaretskii | 2015-01-19 19:22:17 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2015-01-19 19:22:17 +0200 |
| commit | fb6462f056f616f3da8ae18037c7c2137fecb6fd (patch) | |
| tree | af4949972ab842afa583e8e81613543726e7cf19 /src/ChangeLog | |
| parent | 39585cfd844003df47a554894dfa38573da1203c (diff) | |
| download | emacs-fb6462f056f616f3da8ae18037c7c2137fecb6fd.tar.gz emacs-fb6462f056f616f3da8ae18037c7c2137fecb6fd.zip | |
Verify that Qnil is zero before relying on that in redisplay.
src/dispnew.c (adjust_glyph_matrix, realloc_glyph_pool): Verify that
Qnil is represented as zero, before using that to initialize parts
of the glyph structure.
src/xdisp.c (init_iterator): Verify that Qnil is represented as
zero, before using that to initialize parts of the iterator
structure.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 04b952cae60..f6a5f3837a3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2015-01-19 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool): Verify that | ||
| 4 | Qnil is represented as zero, before using that to initialize parts | ||
| 5 | of the glyph structure. | ||
| 6 | |||
| 7 | * xdisp.c (init_iterator): Verify that Qnil is represented as | ||
| 8 | zero, before using that to initialize parts of the iterator | ||
| 9 | structure. | ||
| 10 | |||
| 1 | 2015-01-19 Paul Eggert <eggert@cs.ucla.edu> | 11 | 2015-01-19 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 12 | ||
| 3 | Prefer memset to repeatedly assigning Qnil | 13 | Prefer memset to repeatedly assigning Qnil |