diff options
| author | Paul Eggert | 2011-04-26 00:52:52 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-26 00:52:52 -0700 |
| commit | 847ab9d19cefe485965a8b6f8b154e065a79b867 (patch) | |
| tree | 3b7680534632dec24cb02c31cf14b8b4ac2d61c8 /src | |
| parent | c892615246aca066a2b8df322d6d808ded38af6b (diff) | |
| download | emacs-847ab9d19cefe485965a8b6f8b154e065a79b867.tar.gz emacs-847ab9d19cefe485965a8b6f8b154e065a79b867.zip | |
Add bug numbers.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 2fa0e5468ea..912a0ae8674 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -3,14 +3,14 @@ | |||
| 3 | * gnutls.c (emacs_gnutls_handshake): Don't return a garbage value. | 3 | * gnutls.c (emacs_gnutls_handshake): Don't return a garbage value. |
| 4 | Expect the caller to check whether GNUTLS_STAGE_HANDSHAKE_CANDO <= | 4 | Expect the caller to check whether GNUTLS_STAGE_HANDSHAKE_CANDO <= |
| 5 | proc->gnutls_initstage, if the check is needed. The check isn't | 5 | proc->gnutls_initstage, if the check is needed. The check isn't |
| 6 | needed for one caller, Fgnutls_boot. | 6 | needed for one caller, Fgnutls_boot. (Bug#8556) |
| 7 | (emacs_gnutls_read): Do that check. This is the other caller. | 7 | (emacs_gnutls_read): Do that check. This is the other caller. |
| 8 | (emacs_gnutls_handle_error): Remove unused local. | 8 | (emacs_gnutls_handle_error): Remove unused local. |
| 9 | (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *. | 9 | (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *. |
| 10 | Remove unused local. | 10 | Remove unused local. |
| 11 | (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0. | 11 | (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0. |
| 12 | 12 | ||
| 13 | lisp.h: Fix a problem with aliasing and vector headers. | 13 | lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546) |
| 14 | GCC 4.6.0 optimizes based on type-based alias analysis. For | 14 | GCC 4.6.0 optimizes based on type-based alias analysis. For |
| 15 | example, if b is of type struct buffer * and v of type struct | 15 | example, if b is of type struct buffer * and v of type struct |
| 16 | Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size | 16 | Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size |
| @@ -62,7 +62,7 @@ | |||
| 62 | 62 | ||
| 63 | * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR. | 63 | * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR. |
| 64 | 64 | ||
| 65 | Make the Lisp reader and string-to-float more consistent. | 65 | Make the Lisp reader and string-to-float more consistent (Bug#8525) |
| 66 | * data.c (atof): Remove decl; no longer used or needed. | 66 | * data.c (atof): Remove decl; no longer used or needed. |
| 67 | (digit_to_number): Move to lread.c. | 67 | (digit_to_number): Move to lread.c. |
| 68 | (Fstring_to_number): Use new string_to_number function, to be | 68 | (Fstring_to_number): Use new string_to_number function, to be |