Mercurial > hg > xemacs-beta
diff src/text.h @ 5786:6355de501637
Correct buffered_bytecount_to_charcount() on non-Mule.
src/ChangeLog addition:
[...]
* text.h (buffered_bytecount_to_charcount): This was
declared wrong for non-mule, correct this. Thank you Mats Lidell
and the buildbot.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Thu, 23 Jan 2014 15:03:16 +0000 |
parents | 0cb4f494a548 |
children | b3824b7f5627 |
line wrap: on
line diff
--- a/src/text.h Thu Jan 23 13:49:40 2014 +0000 +++ b/src/text.h Thu Jan 23 15:03:16 2014 +0000 @@ -922,7 +922,7 @@ #define charcount_to_bytecount_fmt(ptr, len, fmt) ((Bytecount) (len)) #define skip_ascii(ptr, end) end #define skip_ascii_down(ptr, end) end -#define buffered_bytecount_to_charcount (ptr, len) (len) +#define buffered_bytecount_to_charcount(ptr, len) (len) #endif /* MULE */