aboutsummaryrefslogtreecommitdiffstats
path: root/src/marker.c
diff options
context:
space:
mode:
authorPaul Eggert2012-10-10 21:33:12 -0700
committerPaul Eggert2012-10-10 21:33:12 -0700
commitfd2f90cf5c6a15610aa1e17e73d6d8a5f8cb1999 (patch)
tree4dd6ef029229a8db21e357e7d9465e1927b2d448 /src/marker.c
parentc1af190b72f9268dd23c13d43962a64c78aa4174 (diff)
downloademacs-fd2f90cf5c6a15610aa1e17e73d6d8a5f8cb1999.tar.gz
emacs-fd2f90cf5c6a15610aa1e17e73d6d8a5f8cb1999.zip
* marker.c (cached_modiff): EMACS_INT, not int.
Diffstat (limited to 'src/marker.c')
-rw-r--r--src/marker.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/marker.c b/src/marker.c
index e01647bdb2a..2e2aba579db 100644
--- a/src/marker.c
+++ b/src/marker.c
@@ -29,7 +29,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
29static ptrdiff_t cached_charpos; 29static ptrdiff_t cached_charpos;
30static ptrdiff_t cached_bytepos; 30static ptrdiff_t cached_bytepos;
31static struct buffer *cached_buffer; 31static struct buffer *cached_buffer;
32static int cached_modiff; 32static EMACS_INT cached_modiff;
33 33
34/* Juanma Barranquero <lekktu@gmail.com> reported ~3x increased 34/* Juanma Barranquero <lekktu@gmail.com> reported ~3x increased
35 bootstrap time when byte_char_debug_check is enabled; so this 35 bootstrap time when byte_char_debug_check is enabled; so this