diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index e5e4fe9edb0..8f23dd3833e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,21 @@ | |||
| 1 | 2015-01-22 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Don't downcase system diagnostics' first letters | ||
| 4 | * fileio.c (report_file_errno): Don't downcase, and simplify. | ||
| 5 | Fixes: bug#19642 | ||
| 6 | |||
| 7 | Isolate NIL_IS_ZERO-assuming code better | ||
| 8 | Suggested by Stefan Monnier in: | ||
| 9 | http://lists.gnu.org/archive/html/emacs-devel/2015-01/msg00588.html | ||
| 10 | * alloc.c (allocate_pseudovector): | ||
| 11 | Use memclear, not memsetnil, to remove a 'verify'. | ||
| 12 | * callint.c (Fcall_interactively): | ||
| 13 | * dispnew.c (realloc_glyph_pool): | ||
| 14 | * xdisp.c (init_iterator): | ||
| 15 | Use memclear, not memset, to remove a 'verify'. | ||
| 16 | * lisp.h (memclear): Rename from memsetnil, and take a byte | ||
| 17 | count rather than a word count. All callers changed. | ||
| 18 | |||
| 1 | 2015-01-20 Paul Eggert <eggert@cs.ucla.edu> | 19 | 2015-01-20 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 20 | ||
| 3 | Undo port to hypothetical nonzero Qnil case | 21 | Undo port to hypothetical nonzero Qnil case |