aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-03-07 23:49:41 -0800
committerPaul Eggert2011-03-07 23:49:41 -0800
commitd0891610cbb712da0acf7ef435a93b7b2d37579d (patch)
tree1016c858779ed0e5bb4724d383e0cf2a5be169c6 /src
parentfb90da1b9b967f4dba5360615acab0e1cac37796 (diff)
downloademacs-d0891610cbb712da0acf7ef435a93b7b2d37579d.tar.gz
emacs-d0891610cbb712da0acf7ef435a93b7b2d37579d.zip
* character.c (string_count_byte8): Likewise.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog1
-rw-r--r--src/character.c2
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
789EMACS_INT 789static EMACS_INT
790string_count_byte8 (Lisp_Object string) 790string_count_byte8 (Lisp_Object string)
791{ 791{
792 int multibyte = STRING_MULTIBYTE (string); 792 int multibyte = STRING_MULTIBYTE (string);