]> git.eshelyaron.com Git - emacs.git/commitdiff
(temp_set_point_both): Declare arg BYTEPOS as int.
authorKenichi Handa <handa@m17n.org>
Fri, 20 Feb 1998 01:40:47 +0000 (01:40 +0000)
committerKenichi Handa <handa@m17n.org>
Fri, 20 Feb 1998 01:40:47 +0000 (01:40 +0000)
(set_point_both): Likewise.

src/intervals.c

index 68561e1c8925ff2fbba7a702823537d756b28154..f52e6ea472720e37293d741e0eed919c591bbd06 100644 (file)
@@ -1676,7 +1676,7 @@ temp_set_point (buffer, charpos)
 
 INLINE void
 temp_set_point_both (buffer, charpos, bytepos)
-     int charpos;
+     int charpos, bytepos;
      struct buffer *buffer;
 {
   /* In a single-byte buffer, the two positions must be equal.  */
@@ -1712,7 +1712,7 @@ set_point (buffer, charpos)
 void
 set_point_both (buffer, charpos, bytepos)
      register struct buffer *buffer;
-     register int charpos;
+     register int charpos, bytepos;
 {
   register INTERVAL to, from, toprev, fromprev, target;
   int buffer_point;