diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2014-07-14 11:56:35 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2014-07-14 11:56:35 -0700 |
commit | 918be62752b7b3cd6e4a48e656dcbb52c3fc8073 (patch) | |
tree | 3e85d93c29da0bd3162fd666a2c305ded9e627f4 /src/macros.c | |
parent | 3d743935a0f2fad9e8057121575ae4e00b4fa8d6 (diff) | |
download | emacs-918be62752b7b3cd6e4a48e656dcbb52c3fc8073.tar.gz |
* macros.c (Fstart_kbd_macro): Simplify.
This works around a GCC compiler bug when Emacs is configured with
--enable-gcc-warnings.
Diffstat (limited to 'src/macros.c')
-rw-r--r-- | src/macros.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/macros.c b/src/macros.c index c73986abd34..07667f09431 100644 --- a/src/macros.c +++ b/src/macros.c @@ -80,7 +80,7 @@ macro before appending to it. */) } else { - const ptrdiff_t incr = 30; + int incr = 30; ptrdiff_t i, len; bool cvt; |