diff options
| author | Paul Eggert | 2011-03-07 23:49:41 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-03-07 23:49:41 -0800 |
| commit | d0891610cbb712da0acf7ef435a93b7b2d37579d (patch) | |
| tree | 1016c858779ed0e5bb4724d383e0cf2a5be169c6 /src | |
| parent | fb90da1b9b967f4dba5360615acab0e1cac37796 (diff) | |
| download | emacs-d0891610cbb712da0acf7ef435a93b7b2d37579d.tar.gz emacs-d0891610cbb712da0acf7ef435a93b7b2d37579d.zip | |
* character.c (string_count_byte8): Likewise.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 1 | ||||
| -rw-r--r-- | src/character.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 2b894e9a511..8102f455802 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -67,6 +67,7 @@ | |||
| 67 | 67 | ||
| 68 | * category.c (hash_get_category_set): Remove unused local var. | 68 | * category.c (hash_get_category_set): Remove unused local var. |
| 69 | (copy_category_table): Now static, since it's not used elsewhere. | 69 | (copy_category_table): Now static, since it's not used elsewhere. |
| 70 | * character.c (string_count_byte8): Likewise. | ||
| 70 | 71 | ||
| 71 | * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string): | 72 | * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string): |
| 72 | (Fregister_code_conversion_map): Rename locals to avoid shadowing. | 73 | (Fregister_code_conversion_map): Rename locals to avoid shadowing. |
diff --git a/src/character.c b/src/character.c index 6f3312fec29..fdaf22f04f8 100644 --- a/src/character.c +++ b/src/character.c | |||
| @@ -786,7 +786,7 @@ str_to_unibyte (const unsigned char *src, unsigned char *dst, EMACS_INT chars, i | |||
| 786 | } | 786 | } |
| 787 | 787 | ||
| 788 | 788 | ||
| 789 | EMACS_INT | 789 | static EMACS_INT |
| 790 | string_count_byte8 (Lisp_Object string) | 790 | string_count_byte8 (Lisp_Object string) |
| 791 | { | 791 | { |
| 792 | int multibyte = STRING_MULTIBYTE (string); | 792 | int multibyte = STRING_MULTIBYTE (string); |