diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ChangeLog | 2 | ||||
-rw-r--r-- | src/ChangeLog.10 | 2 | ||||
-rw-r--r-- | src/ChangeLog.8 | 6 | ||||
-rw-r--r-- | src/buffer.c | 2 | ||||
-rw-r--r-- | src/character.c | 2 | ||||
-rw-r--r-- | src/charset.c | 2 | ||||
-rw-r--r-- | src/editfns.c | 4 |
7 files changed, 10 insertions, 10 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index f9c15811547..0fdc151e540 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -15960,7 +15960,7 @@ * search.c (search_buffer): Give up BM search on case-fold-search if one of a target character has a case-equivalence of different - byte length even if that target charcter is an ASCII. + byte length even if that target character is an ASCII. (simple_search): Fix calculation of byte length of matched text. (boyer_moore): Fix handling of case-equivalent multibyte characters. diff --git a/src/ChangeLog.10 b/src/ChangeLog.10 index b62faf17341..e0124784477 100644 --- a/src/ChangeLog.10 +++ b/src/ChangeLog.10 @@ -6918,7 +6918,7 @@ * search.c (search_buffer): Give up BM search on case-fold-search if one of a target character has a case-equivalence of different - charset even if that target charcter is an ASCII. + charset even if that target character is an ASCII. * casefiddle.c (casify_object): Fix for the case that case conversion change the byte length. diff --git a/src/ChangeLog.8 b/src/ChangeLog.8 index 74816376717..6a7e11d7018 100644 --- a/src/ChangeLog.8 +++ b/src/ChangeLog.8 @@ -13872,10 +13872,10 @@ 1998-08-31 Kenichi Handa <handa@etl.go.jp> * charset.c (unibyte_char_to_multibyte): - Vnonacii_translation_table will convert a 7-bit charcater. + Vnonacii_translation_table will convert a 7-bit character. (multibyte_char_to_unibyte): Handle the case that - Vnonacii_translation_table converts a multibyte charcater to a - unibyte charcter of less than 128. + Vnonacii_translation_table converts a multibyte character to a + unibyte character of less than 128. (init_charset_once): Initialize nonascii_insert_offset and Vnonacii_translation_table. diff --git a/src/buffer.c b/src/buffer.c index 4744356d1b6..9220527313d 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -2429,7 +2429,7 @@ current buffer is cleared. */) { c = STRING_CHAR_AND_LENGTH (p, bytes); /* Delete all bytes for this 8-bit character but the - last one, and change the last one to the charcter + last one, and change the last one to the character code. */ bytes--; del_range_2 (pos, pos, pos + bytes, pos + bytes, 0); diff --git a/src/character.c b/src/character.c index a240e45d3d0..b9ba15d1b0f 100644 --- a/src/character.c +++ b/src/character.c @@ -829,7 +829,7 @@ str_as_unibyte (str, bytes) corresponding byte and store in DST. CHARS is the number of characters in SRC. The value is the number of bytes stored in DST. Usually, the value is the same as CHARS, but is less than it if SRC - contains a non-ASCII, non-eight-bit characater. If ACCEPT_LATIN_1 + contains a non-ASCII, non-eight-bit character. If ACCEPT_LATIN_1 is nonzero, a Latin-1 character is accepted and converted to a byte of that character code. Note: Currently the arg ACCEPT_LATIN_1 is not used. */ diff --git a/src/charset.c b/src/charset.c index c349093ad3d..9ea1366d73a 100644 --- a/src/charset.c +++ b/src/charset.c @@ -438,7 +438,7 @@ load_charset_map (charset, entries, n_entries, control_flag) /* Read a hexadecimal number (preceded by "0x") from the file FP while - paying attention to comment charcter '#'. */ + paying attention to comment character '#'. */ static INLINE unsigned read_hex (fp, eof) diff --git a/src/editfns.c b/src/editfns.c index fe5b039625f..a751d6df3b2 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -3623,12 +3623,12 @@ usage: (format STRING &rest OBJECTS) */) int multibyte = 0; /* When we make a multibyte string, we must pay attention to the byte combining problem, i.e., a byte may be combined with a - multibyte charcter of the previous string. This flag tells if we + multibyte character of the previous string. This flag tells if we must consider such a situation or not. */ int maybe_combine_byte; unsigned char *this_format; /* Precision for each spec, or -1, a flag value meaning no precision - was given in that spec. Element 0, corresonding to the format + was given in that spec. Element 0, corresponding to the format string itself, will not be used. Element NARGS, corresponding to no argument, *will* be assigned to in the case that a `%' and `.' occur after the final format specifier. */ |