aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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);