aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2010-09-14 22:32:35 +0200
committerJuanma Barranquero2010-09-14 22:32:35 +0200
commit3b59c3511cb74d944730b8156bbfd3bd7d8aa69f (patch)
tree0dda9e9329b007cd267ad0e806a274a4f6c0ed33 /src
parent2b5491fabb7656ed913b324612b6d9e5a55a3c23 (diff)
downloademacs-3b59c3511cb74d944730b8156bbfd3bd7d8aa69f.tar.gz
emacs-3b59c3511cb74d944730b8156bbfd3bd7d8aa69f.zip
Fix typos in comments and ChangeLogs.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/ChangeLog.102
-rw-r--r--src/ChangeLog.86
-rw-r--r--src/buffer.c2
-rw-r--r--src/charset.c2
-rw-r--r--src/editfns.c2
6 files changed, 8 insertions, 8 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 7f7a0d7a222..5685ec47683 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -20307,7 +20307,7 @@
20307 20307
20308 * search.c (search_buffer): Give up BM search on case-fold-search 20308 * search.c (search_buffer): Give up BM search on case-fold-search
20309 if one of a target character has a case-equivalence of different 20309 if one of a target character has a case-equivalence of different
20310 byte length even if that target charcter is an ASCII. 20310 byte length even if that target character is an ASCII.
20311 (simple_search): Fix calculation of byte length of matched text. 20311 (simple_search): Fix calculation of byte length of matched text.
20312 (boyer_moore): Fix handling of case-equivalent multibyte characters. 20312 (boyer_moore): Fix handling of case-equivalent multibyte characters.
20313 20313
diff --git a/src/ChangeLog.10 b/src/ChangeLog.10
index dd847f8a64e..14a0f012b06 100644
--- a/src/ChangeLog.10
+++ b/src/ChangeLog.10
@@ -6914,7 +6914,7 @@
6914 6914
6915 * search.c (search_buffer): Give up BM search on case-fold-search 6915 * search.c (search_buffer): Give up BM search on case-fold-search
6916 if one of a target character has a case-equivalence of different 6916 if one of a target character has a case-equivalence of different
6917 charset even if that target charcter is an ASCII. 6917 charset even if that target character is an ASCII.
6918 6918
6919 * casefiddle.c (casify_object): Fix for the case that case 6919 * casefiddle.c (casify_object): Fix for the case that case
6920 conversion change the byte length. 6920 conversion change the byte length.
diff --git a/src/ChangeLog.8 b/src/ChangeLog.8
index 4dd3d0dd071..4dac2b262b7 100644
--- a/src/ChangeLog.8
+++ b/src/ChangeLog.8
@@ -13869,10 +13869,10 @@
138691998-08-31 Kenichi Handa <handa@etl.go.jp> 138691998-08-31 Kenichi Handa <handa@etl.go.jp>
13870 13870
13871 * charset.c (unibyte_char_to_multibyte): 13871 * charset.c (unibyte_char_to_multibyte):
13872 Vnonacii_translation_table will convert a 7-bit charcater. 13872 Vnonacii_translation_table will convert a 7-bit character.
13873 (multibyte_char_to_unibyte): Handle the case that 13873 (multibyte_char_to_unibyte): Handle the case that
13874 Vnonacii_translation_table converts a multibyte charcater to a 13874 Vnonacii_translation_table converts a multibyte character to a
13875 unibyte charcter of less than 128. 13875 unibyte character of less than 128.
13876 (init_charset_once): Initialize nonascii_insert_offset and 13876 (init_charset_once): Initialize nonascii_insert_offset and
13877 Vnonacii_translation_table. 13877 Vnonacii_translation_table.
13878 13878
diff --git a/src/buffer.c b/src/buffer.c
index 39fabf581bb..84b60779b34 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -2345,7 +2345,7 @@ current buffer is cleared. */)
2345 { 2345 {
2346 c = STRING_CHAR_AND_LENGTH (p, bytes); 2346 c = STRING_CHAR_AND_LENGTH (p, bytes);
2347 /* Delete all bytes for this 8-bit character but the 2347 /* Delete all bytes for this 8-bit character but the
2348 last one, and change the last one to the charcter 2348 last one, and change the last one to the character
2349 code. */ 2349 code. */
2350 bytes--; 2350 bytes--;
2351 del_range_2 (pos, pos, pos + bytes, pos + bytes, 0); 2351 del_range_2 (pos, pos, pos + bytes, pos + bytes, 0);
diff --git a/src/charset.c b/src/charset.c
index 036d7146db6..8051b11330e 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -427,7 +427,7 @@ load_charset_map (struct charset *charset, struct charset_map_entries *entries,
427 427
428 428
429/* Read a hexadecimal number (preceded by "0x") from the file FP while 429/* Read a hexadecimal number (preceded by "0x") from the file FP while
430 paying attention to comment charcter '#'. */ 430 paying attention to comment character '#'. */
431 431
432static INLINE unsigned 432static INLINE unsigned
433read_hex (FILE *fp, int *eof) 433read_hex (FILE *fp, int *eof)
diff --git a/src/editfns.c b/src/editfns.c
index 1bd6682c3b6..add2f37109b 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -3517,7 +3517,7 @@ usage: (format STRING &rest OBJECTS) */)
3517 int multibyte = 0; 3517 int multibyte = 0;
3518 /* When we make a multibyte string, we must pay attention to the 3518 /* When we make a multibyte string, we must pay attention to the
3519 byte combining problem, i.e., a byte may be combined with a 3519 byte combining problem, i.e., a byte may be combined with a
3520 multibyte charcter of the previous string. This flag tells if we 3520 multibyte character of the previous string. This flag tells if we
3521 must consider such a situation or not. */ 3521 must consider such a situation or not. */
3522 int maybe_combine_byte; 3522 int maybe_combine_byte;
3523 unsigned char *this_format; 3523 unsigned char *this_format;