aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-03-08 00:08:41 -0800
committerPaul Eggert2011-03-08 00:08:41 -0800
commitfb93dbc227d09c5ec433b5f637fd677e2536a988 (patch)
tree1c3e910f0271a391a262ec62a1a24c3a5f5cb005 /src
parentd0891610cbb712da0acf7ef435a93b7b2d37579d (diff)
downloademacs-fb93dbc227d09c5ec433b5f637fd677e2536a988.tar.gz
emacs-fb93dbc227d09c5ec433b5f637fd677e2536a988.zip
* chartab.c (copy_sub_char_table): Now static, since it's not used
elsewhere.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog3
-rw-r--r--src/chartab.c5
2 files changed, 5 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 8102f455802..90804f01b3b 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -72,6 +72,9 @@
72 * 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):
73 (Fregister_code_conversion_map): Rename locals to avoid shadowing. 73 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
74 74
75 * chartab.c (copy_sub_char_table): Now static, since it's not used
76 elsewhere.
77
752011-03-06 Chong Yidong <cyd@stupidchicken.com> 782011-03-06 Chong Yidong <cyd@stupidchicken.com>
76 79
77 * xdisp.c (redisplay_window): Revert incorrect logic in 2011-03-06 80 * xdisp.c (redisplay_window): Revert incorrect logic in 2011-03-06
diff --git a/src/chartab.c b/src/chartab.c
index cd8aa784eb4..413d3f39e79 100644
--- a/src/chartab.c
+++ b/src/chartab.c
@@ -118,7 +118,7 @@ char_table_ascii (Lisp_Object table)
118 return XSUB_CHAR_TABLE (sub)->contents[0]; 118 return XSUB_CHAR_TABLE (sub)->contents[0];
119} 119}
120 120
121Lisp_Object 121static Lisp_Object
122copy_sub_char_table (Lisp_Object table) 122copy_sub_char_table (Lisp_Object table)
123{ 123{
124 Lisp_Object copy; 124 Lisp_Object copy;
@@ -951,7 +951,7 @@ map_sub_char_table_for_charset (void (*c_function) (Lisp_Object, Lisp_Object),
951 map_charset_chars. */ 951 map_charset_chars. */
952 952
953void 953void
954map_char_table_for_charset (void (*c_function) (Lisp_Object, Lisp_Object), 954map_char_table_for_charset (void (*c_function) (Lisp_Object, Lisp_Object),
955 Lisp_Object function, Lisp_Object table, Lisp_Object arg, 955 Lisp_Object function, Lisp_Object table, Lisp_Object arg,
956 struct charset *charset, 956 struct charset *charset,
957 unsigned from, unsigned to) 957 unsigned from, unsigned to)
@@ -1012,4 +1012,3 @@ syms_of_chartab (void)
1012 defsubr (&Soptimize_char_table); 1012 defsubr (&Soptimize_char_table);
1013 defsubr (&Smap_char_table); 1013 defsubr (&Smap_char_table);
1014} 1014}
1015