emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r117531: * macros.c (Fstart_kbd_macro): Simplify.


From: Paul Eggert
Subject: [Emacs-diffs] trunk r117531: * macros.c (Fstart_kbd_macro): Simplify.
Date: Mon, 14 Jul 2014 18:56:39 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117531
revision-id: address@hidden
parent: address@hidden
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Mon 2014-07-14 11:56:35 -0700
message:
  * macros.c (Fstart_kbd_macro): Simplify.
  
  This works around a GCC compiler bug when Emacs is configured with
  --enable-gcc-warnings.
modified:
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/macros.c                   macros.c-20091113204419-o5vbwnq5f7feedwu-217
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2014-07-14 15:10:20 +0000
+++ b/src/ChangeLog     2014-07-14 18:56:35 +0000
@@ -1,3 +1,9 @@
+2014-07-14  Paul Eggert  <address@hidden>
+
+       * 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  <address@hidden>
 
        * lisp.h (CHECK_VECTOR_OR_STRING): Return number of elements

=== modified file 'src/macros.c'
--- a/src/macros.c      2014-07-14 04:44:01 +0000
+++ b/src/macros.c      2014-07-14 18:56:35 +0000
@@ -80,7 +80,7 @@
     }
   else
     {
-      const ptrdiff_t incr = 30;
+      int incr = 30;
       ptrdiff_t i, len;
       bool cvt;
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]