Mercurial > emacs
changeset 46460:876356a4a4ca
(find_charset_in_text, c_string_width):
(chars_in_text, multibyte_chars_in_text, parse_str_as_multibyte):
String pointer args now point to const.
(find_charset_in_text, lisp_string_width): Use const
for pointer to lisp string data.
author | Ken Raeburn <raeburn@raeburn.org> |
---|---|
date | Tue, 16 Jul 2002 19:47:56 +0000 |
parents | 0a9cbcbdbe45 |
children | 7d3969ae9291 |
files | src/charset.c |
diffstat | 1 files changed, 9 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/src/charset.c Tue Jul 16 19:47:52 2002 +0000 +++ b/src/charset.c Tue Jul 16 19:47:56 2002 +0000 @@ -802,7 +802,7 @@ int find_charset_in_text (ptr, nchars, nbytes, charsets, table) - unsigned char *ptr; + const unsigned char *ptr; int nchars, nbytes, *charsets; Lisp_Object table; { @@ -810,7 +810,7 @@ { if (charsets && nbytes > 0) { - unsigned char *endp = ptr + nbytes; + const unsigned char *endp = ptr + nbytes; int maskbits = 0; while (ptr < endp && maskbits != 7) @@ -1271,7 +1271,7 @@ int c_string_width (str, len, precision, nchars, nbytes) - unsigned char *str; + const unsigned char *str; int precision, *nchars, *nbytes; { int i = 0, i_byte = 0; @@ -1337,7 +1337,7 @@ { int len = SCHARS (string); int len_byte = SBYTES (string); - unsigned char *str = SDATA (string); + const unsigned char *str = SDATA (string); int i = 0, i_byte = 0; int width = 0; struct Lisp_Char_Table *dp = buffer_display_table (); @@ -1451,7 +1451,7 @@ int chars_in_text (ptr, nbytes) - unsigned char *ptr; + const unsigned char *ptr; int nbytes; { /* current_buffer is null at early stages of Emacs initialization. */ @@ -1468,10 +1468,10 @@ int multibyte_chars_in_text (ptr, nbytes) - unsigned char *ptr; + const unsigned char *ptr; int nbytes; { - unsigned char *endp; + const unsigned char *endp; int chars, bytes; endp = ptr + nbytes; @@ -1493,10 +1493,10 @@ 0x80..0x9F are represented by 2 bytes in multibyte text. */ void parse_str_as_multibyte (str, len, nchars, nbytes) - unsigned char *str; + const unsigned char *str; int len, *nchars, *nbytes; { - unsigned char *endp = str + len; + const unsigned char *endp = str + len; int n, chars = 0, bytes = 0; while (str < endp)