aboutsummaryrefslogtreecommitdiffstats
path: root/src/textprop.c
diff options
context:
space:
mode:
authorPaul Eggert2011-04-16 15:30:01 -0700
committerPaul Eggert2011-04-16 15:30:01 -0700
commitc7b7425e227a08bb85565498e517364fbc96dd2d (patch)
tree2c8fc8e79bfdb4450b9c1df49fb652e6c1443d5d /src/textprop.c
parent5c1ccb01541c438e596ce2d819d703d67bab25c0 (diff)
parentc4354cb4f4a3982331180439120ca72734d49cc5 (diff)
downloademacs-c7b7425e227a08bb85565498e517364fbc96dd2d.tar.gz
emacs-c7b7425e227a08bb85565498e517364fbc96dd2d.zip
Merge from mainline.
Diffstat (limited to 'src/textprop.c')
-rw-r--r--src/textprop.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/textprop.c b/src/textprop.c
index a0d7d2689c4..d9da36bf36b 100644
--- a/src/textprop.c
+++ b/src/textprop.c
@@ -514,7 +514,7 @@ erase_properties (INTERVAL i)
514 POSITION is BEG-based. */ 514 POSITION is BEG-based. */
515 515
516INTERVAL 516INTERVAL
517interval_of (int position, Lisp_Object object) 517interval_of (EMACS_INT position, Lisp_Object object)
518{ 518{
519 register INTERVAL i; 519 register INTERVAL i;
520 EMACS_INT beg, end; 520 EMACS_INT beg, end;
@@ -2012,7 +2012,8 @@ call_mod_hooks (Lisp_Object list, Lisp_Object start, Lisp_Object end)
2012 those hooks in order, with START and END - 1 as arguments. */ 2012 those hooks in order, with START and END - 1 as arguments. */
2013 2013
2014void 2014void
2015verify_interval_modification (struct buffer *buf, int start, int end) 2015verify_interval_modification (struct buffer *buf,
2016 EMACS_INT start, EMACS_INT end)
2016{ 2017{
2017 register INTERVAL intervals = BUF_INTERVALS (buf); 2018 register INTERVAL intervals = BUF_INTERVALS (buf);
2018 register INTERVAL i; 2019 register INTERVAL i;