aboutsummaryrefslogtreecommitdiffstats
path: root/src/charset.c
diff options
context:
space:
mode:
authorDave Love2001-01-22 23:20:06 +0000
committerDave Love2001-01-22 23:20:06 +0000
commitd8e4f486d992ef1ca02fdbb9840b63f8ddc81697 (patch)
tree9ec7ad62d2b88baa8e832e31f9d9e29442470eae /src/charset.c
parentc99554b1f61bfe371a61d21f89fada90eaf6963b (diff)
downloademacs-d8e4f486d992ef1ca02fdbb9840b63f8ddc81697.tar.gz
emacs-d8e4f486d992ef1ca02fdbb9840b63f8ddc81697.zip
comment fixes
Diffstat (limited to 'src/charset.c')
-rw-r--r--src/charset.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/charset.c b/src/charset.c
index 54edddd47a6..a7522c4cf4e 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -1461,10 +1461,10 @@ multibyte_chars_in_text (ptr, nbytes)
1461 return chars; 1461 return chars;
1462} 1462}
1463 1463
1464/* Parse unibyte text at STR of LEN bytes as a multibyte text, and 1464/* Parse unibyte text at STR of LEN bytes as multibyte text, and
1465 count the numbers of characters and bytes in it. On counting 1465 count the numbers of characters and bytes in it. On counting
1466 bytes, pay attention to that 8-bit characters in the range 1466 bytes, pay attention to the fact that 8-bit characters in the range
1467 0x80..0x9F are represented by 2-byte in a multibyte text. */ 1467 0x80..0x9F are represented by 2 bytes in multibyte text. */
1468void 1468void
1469parse_str_as_multibyte (str, len, nchars, nbytes) 1469parse_str_as_multibyte (str, len, nchars, nbytes)
1470 unsigned char *str; 1470 unsigned char *str;
@@ -1486,7 +1486,7 @@ parse_str_as_multibyte (str, len, nchars, nbytes)
1486 return; 1486 return;
1487} 1487}
1488 1488
1489/* Arrange unibyte text at STR of NBYTES bytes as a multibyte text. 1489/* Arrange unibyte text at STR of NBYTES bytes as multibyte text.
1490 It actually converts only 8-bit characters in the range 0x80..0x9F 1490 It actually converts only 8-bit characters in the range 0x80..0x9F
1491 that don't contruct multibyte characters to multibyte forms. If 1491 that don't contruct multibyte characters to multibyte forms. If
1492 NCHARS is nonzero, set *NCHARS to the number of characters in the 1492 NCHARS is nonzero, set *NCHARS to the number of characters in the
@@ -1535,7 +1535,7 @@ str_as_multibyte (str, len, nbytes, nchars)
1535 return (to - str); 1535 return (to - str);
1536} 1536}
1537 1537
1538/* Convert unibyte text at STR of NBYTES bytes to a multibyte text 1538/* Convert unibyte text at STR of NBYTES bytes to multibyte text
1539 that contains the same single-byte characters. It actually 1539 that contains the same single-byte characters. It actually
1540 converts all 8-bit characters to multibyte forms. It is assured 1540 converts all 8-bit characters to multibyte forms. It is assured
1541 that we can use LEN bytes at STR as a work area and that is 1541 that we can use LEN bytes at STR as a work area and that is