aboutsummaryrefslogtreecommitdiffstats
path: root/src/macros.c
diff options
context:
space:
mode:
authorPaul Eggert2014-07-14 11:56:35 -0700
committerPaul Eggert2014-07-14 11:56:35 -0700
commit918be62752b7b3cd6e4a48e656dcbb52c3fc8073 (patch)
tree3e85d93c29da0bd3162fd666a2c305ded9e627f4 /src/macros.c
parent3d743935a0f2fad9e8057121575ae4e00b4fa8d6 (diff)
downloademacs-918be62752b7b3cd6e4a48e656dcbb52c3fc8073.tar.gz
emacs-918be62752b7b3cd6e4a48e656dcbb52c3fc8073.zip
* 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.c2
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. */)
80 } 80 }
81 else 81 else
82 { 82 {
83 const ptrdiff_t incr = 30; 83 int incr = 30;
84 ptrdiff_t i, len; 84 ptrdiff_t i, len;
85 bool cvt; 85 bool cvt;
86 86