diff src/editfns.c @ 110512:ba79df773e8d

Fix last changes in editfns.c and intervals.c. editfns.c (clip_to_bounds): Return an EMACS_INT value. lisp.h (clip_to_bounds): Adjust prototype. intervals.c (adjust_for_invis_intang): Return EMACS_INT value.
author Eli Zaretskii <eliz@gnu.org>
date Thu, 23 Sep 2010 15:18:30 -0400
parents 2cac83f5f8bc
children 6248bcadfd21
line wrap: on
line diff
--- a/src/editfns.c	Thu Sep 23 21:12:18 2010 +0200
+++ b/src/editfns.c	Thu Sep 23 15:18:30 2010 -0400
@@ -272,7 +272,7 @@
   return buildmark (PT, PT_BYTE);
 }
 
-int
+EMACS_INT
 clip_to_bounds (EMACS_INT lower, EMACS_INT num, EMACS_INT upper)
 {
   if (num < lower)