emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r110505: * marker.c (cached_modiff):


From: Paul Eggert
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r110505: * marker.c (cached_modiff): EMACS_INT, not int.
Date: Wed, 10 Oct 2012 21:33:12 -0700
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110505
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Wed 2012-10-10 21:33:12 -0700
message:
  * marker.c (cached_modiff): EMACS_INT, not int.
modified:
  src/ChangeLog
  src/marker.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-10-11 00:32:25 +0000
+++ b/src/ChangeLog     2012-10-11 04:33:12 +0000
@@ -1,5 +1,7 @@
 2012-10-11  Paul Eggert  <address@hidden>
 
+       * marker.c (cached_modiff): EMACS_INT, not int.
+
        * w32select.c (waiting_for_input): Declare by including "keyboard.h"
        instead of having a wrong decl.
        * nsmenu.m (waiting_for_input): Remove wrong decl.

=== modified file 'src/marker.c'
--- a/src/marker.c      2012-10-01 06:36:54 +0000
+++ b/src/marker.c      2012-10-11 04:33:12 +0000
@@ -29,7 +29,7 @@
 static ptrdiff_t cached_charpos;
 static ptrdiff_t cached_bytepos;
 static struct buffer *cached_buffer;
-static int cached_modiff;
+static EMACS_INT cached_modiff;
 
 /* Juanma Barranquero <address@hidden> reported ~3x increased
    bootstrap time when byte_char_debug_check is enabled; so this


reply via email to

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