* 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:
parent
3d743935a0
commit
918be62752
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -80,7 +80,7 @@ macro before appending to it. */)
|
|||
}
|
||||
else
|
||||
{
|
||||
const ptrdiff_t incr = 30;
|
||||
int incr = 30;
|
||||
ptrdiff_t i, len;
|
||||
bool cvt;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue