Mercurial > emacs
diff src/intervals.c @ 20936:5c60cd16452b
(temp_set_point_both): Declare arg BYTEPOS as int.
(set_point_both): Likewise.
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Fri, 20 Feb 1998 01:40:47 +0000 |
| parents | 516b224be85a |
| children | 22c48e547cb0 |
line wrap: on
line diff
--- a/src/intervals.c Fri Feb 20 01:40:47 1998 +0000 +++ b/src/intervals.c Fri Feb 20 01:40:47 1998 +0000 @@ -1676,7 +1676,7 @@ 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 @@ 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;
