diff options
| author | Paul Eggert | 2011-03-08 00:08:41 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-03-08 00:08:41 -0800 |
| commit | fb93dbc227d09c5ec433b5f637fd677e2536a988 (patch) | |
| tree | 1c3e910f0271a391a262ec62a1a24c3a5f5cb005 /src | |
| parent | d0891610cbb712da0acf7ef435a93b7b2d37579d (diff) | |
| download | emacs-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/ChangeLog | 3 | ||||
| -rw-r--r-- | src/chartab.c | 5 |
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 | |||
| 75 | 2011-03-06 Chong Yidong <cyd@stupidchicken.com> | 78 | 2011-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 | ||
| 121 | Lisp_Object | 121 | static Lisp_Object |
| 122 | copy_sub_char_table (Lisp_Object table) | 122 | copy_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 | ||
| 953 | void | 953 | void |
| 954 | map_char_table_for_charset (void (*c_function) (Lisp_Object, Lisp_Object), | 954 | map_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 | |||