aboutsummaryrefslogtreecommitdiffstats
path: root/src/editfns.c
diff options
context:
space:
mode:
authorDmitry Antipov2012-06-29 06:19:32 +0400
committerDmitry Antipov2012-06-29 06:19:32 +0400
commit3e984ee810066a79ef57bbb82c925bcdd70bd334 (patch)
treecaf893981a3d2d94978703a54758fb15d2b502fd /src/editfns.c
parentef884f239fea782ea5888d567b3c13c0b87ed5ea (diff)
downloademacs-3e984ee810066a79ef57bbb82c925bcdd70bd334.tar.gz
emacs-3e984ee810066a79ef57bbb82c925bcdd70bd334.zip
* editfns.c (region_limit): Fix type mismatch.
Diffstat (limited to 'src/editfns.c')
-rw-r--r--src/editfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c
index e8f55c9427b..4c3b80be14a 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -287,7 +287,7 @@ region_limit (int beginningp)
287 else 287 else
288 { /* Clip to the current narrowing (bug#11770). */ 288 { /* Clip to the current narrowing (bug#11770). */
289 ptrdiff_t mark = XFASTINT (m); 289 ptrdiff_t mark = XFASTINT (m);
290 return make_number (mark < BEGV ? BEGV : mark > ZV ? ZV : m); 290 return make_number (mark < BEGV ? BEGV : mark > ZV ? ZV : mark);
291 } 291 }
292} 292}
293 293