From: Paul Eggert Date: Tue, 26 Apr 2011 07:52:52 +0000 (-0700) Subject: Add bug numbers. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~209 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=847ab9d19cefe485965a8b6f8b154e065a79b867;p=emacs.git Add bug numbers. --- diff --git a/src/ChangeLog b/src/ChangeLog index 2fa0e5468ea..912a0ae8674 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -3,14 +3,14 @@ * gnutls.c (emacs_gnutls_handshake): Don't return a garbage value. Expect the caller to check whether GNUTLS_STAGE_HANDSHAKE_CANDO <= proc->gnutls_initstage, if the check is needed. The check isn't - needed for one caller, Fgnutls_boot. + needed for one caller, Fgnutls_boot. (Bug#8556) (emacs_gnutls_read): Do that check. This is the other caller. (emacs_gnutls_handle_error): Remove unused local. (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *. Remove unused local. (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0. - lisp.h: Fix a problem with aliasing and vector headers. + lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546) GCC 4.6.0 optimizes based on type-based alias analysis. For example, if b is of type struct buffer * and v of type struct Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size @@ -62,7 +62,7 @@ * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR. - Make the Lisp reader and string-to-float more consistent. + Make the Lisp reader and string-to-float more consistent (Bug#8525) * data.c (atof): Remove decl; no longer used or needed. (digit_to_number): Move to lread.c. (Fstring_to_number): Use new string_to_number function, to be