diff options
| author | Paul Eggert | 2013-10-15 09:38:36 -0700 |
|---|---|---|
| committer | Paul Eggert | 2013-10-15 09:38:36 -0700 |
| commit | 454e2fb9b928cb5d0f09db4e4334570419eb56b3 (patch) | |
| tree | d91d017bf293501e7b6afc7733f7c8f3674bdeb3 /src/ChangeLog | |
| parent | c911772ee8de21bab0b5ba63fac19fc7dc377f45 (diff) | |
| download | emacs-454e2fb9b928cb5d0f09db4e4334570419eb56b3.tar.gz emacs-454e2fb9b928cb5d0f09db4e4334570419eb56b3.zip | |
Disallow bool vector operations on mixed-length operands.
The old behavior left garbage in the result vector sometimes,
and didn't seem to be useful.
* data.c (Qwrong_length_argument): New static var.
(wrong_length_argument): New function.
(bool_vector_binop_driver): Check that args agree in length.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 08f8f50e1fe..b951c37a646 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,12 @@ | |||
| 1 | 2013-10-15 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2013-10-15 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | Disallow bool vector operations on mixed-length operands. | ||
| 4 | The old behavior left garbage in the result vector sometimes, | ||
| 5 | and didn't seem to be useful. | ||
| 6 | * data.c (Qwrong_length_argument): New static var. | ||
| 7 | (wrong_length_argument): New function. | ||
| 8 | (bool_vector_binop_driver): Check that args agree in length. | ||
| 9 | |||
| 3 | * keyboard.c, keyboard.h (all_kboards): Now static. | 10 | * keyboard.c, keyboard.h (all_kboards): Now static. |
| 4 | 11 | ||
| 5 | 2013-10-15 Xue Fuqiao <xfq.free@gmail.com> | 12 | 2013-10-15 Xue Fuqiao <xfq.free@gmail.com> |