* macros.c (Fstart_kbd_macro): Simplify.

This works around a GCC compiler bug when Emacs is configured with
--enable-gcc-warnings.
This commit is contained in:
Paul Eggert 2014-07-14 11:56:35 -07:00
parent 3d743935a0
commit 918be62752
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2014-07-14 Paul Eggert <eggert@cs.ucla.edu>
* macros.c (Fstart_kbd_macro): Simplify.
This works around a GCC compiler bug when Emacs is configured with
--enable-gcc-warnings.
2014-07-14 Dmitry Antipov <dmantipov@yandex.ru>
* lisp.h (CHECK_VECTOR_OR_STRING): Return number of elements

View file

@ -80,7 +80,7 @@ macro before appending to it. */)
}
else
{
const ptrdiff_t incr = 30;
int incr = 30;
ptrdiff_t i, len;
bool cvt;