Mercurial > emacs
changeset 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 | 2fc5eb0799fe |
children | f77dcb2556c5 |
files | src/intervals.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
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;