aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorJoakim Verona2013-08-26 20:22:04 +0200
committerJoakim Verona2013-08-26 20:22:04 +0200
commit95bca19164fe48c16e5ba04fcf6e6ddd9a22e819 (patch)
tree5f61cfdbbd250ed9e74dd6619f0932ebf5f596ba /src/ChangeLog
parentc635a4f3d114db265e574f106710f497b2a450b6 (diff)
parent1fc8eb33f5534cd3828d7cd15e95771a514dc589 (diff)
downloademacs-95bca19164fe48c16e5ba04fcf6e6ddd9a22e819.tar.gz
emacs-95bca19164fe48c16e5ba04fcf6e6ddd9a22e819.zip
merge from trunk
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 324fa156f68..5fd090f4b2d 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,17 @@
12013-08-26 Paul Eggert <eggert@cs.ucla.edu> 12013-08-26 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 Fix unlikely core dump in init_tty, and simplify terminfo case.
4 * term.c (init_tty) [TERMINFO]: Fix check for buffer overrun.
5 The old version incorrectly dumped core if malloc returned a
6 buffer containing only non-NUL bytes.
7 (init_tty): Do not allocate or free termcap buffers; the
8 struct does that for us now.
9 * termchar.h (TERMCAP_BUFFER_SIZE) [!TERMINFO]: New constant.
10 (struct tty_display_info): Define members termcap_term_buffer and
11 termcap_strings_buffer only if !TERMINFO, since terminfo doesn't
12 use them. Allocate them directly in struct rather than indirectly
13 via a pointer, to simplify init_tty.
14
3 * frame.c (check_minibuf_window): Initialize 'window' properly, 15 * frame.c (check_minibuf_window): Initialize 'window' properly,
4 so that Emacs reliably aborts later if 'window' is not initialized. 16 so that Emacs reliably aborts later if 'window' is not initialized.
5 17