aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2013-10-15 09:38:36 -0700
committerPaul Eggert2013-10-15 09:38:36 -0700
commit454e2fb9b928cb5d0f09db4e4334570419eb56b3 (patch)
treed91d017bf293501e7b6afc7733f7c8f3674bdeb3 /src/ChangeLog
parentc911772ee8de21bab0b5ba63fac19fc7dc377f45 (diff)
downloademacs-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/ChangeLog7
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 @@
12013-10-15 Paul Eggert <eggert@cs.ucla.edu> 12013-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
52013-10-15 Xue Fuqiao <xfq.free@gmail.com> 122013-10-15 Xue Fuqiao <xfq.free@gmail.com>