diff options
| author | Paul Eggert | 2011-03-07 23:39:53 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-03-07 23:39:53 -0800 |
| commit | 9f3b5e6926e3a127df87e7829e30d4cd59fecbcf (patch) | |
| tree | 8c5ba1519bcf67651c243e0f904b762310c3e3d9 /src | |
| parent | 232b38b960b67b75f6c6ce47426ce49488ad9d15 (diff) | |
| download | emacs-9f3b5e6926e3a127df87e7829e30d4cd59fecbcf.tar.gz emacs-9f3b5e6926e3a127df87e7829e30d4cd59fecbcf.zip | |
* category.c (copy_category_table): Now static, since it's not used elsewhere.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 1 | ||||
| -rw-r--r-- | src/category.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index a073e269091..f0a12a7c5d1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -66,6 +66,7 @@ | |||
| 66 | Remove unused macros. | 66 | Remove unused macros. |
| 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 | 70 | ||
| 70 | 2011-03-06 Chong Yidong <cyd@stupidchicken.com> | 71 | 2011-03-06 Chong Yidong <cyd@stupidchicken.com> |
| 71 | 72 | ||
diff --git a/src/category.c b/src/category.c index abe4609d02e..cc7ff88474f 100644 --- a/src/category.c +++ b/src/category.c | |||
| @@ -227,7 +227,7 @@ copy_category_entry (Lisp_Object table, Lisp_Object c, Lisp_Object val) | |||
| 227 | the original and the copy. This function is called recursively by | 227 | the original and the copy. This function is called recursively by |
| 228 | binding TABLE to a sub char table. */ | 228 | binding TABLE to a sub char table. */ |
| 229 | 229 | ||
| 230 | Lisp_Object | 230 | static Lisp_Object |
| 231 | copy_category_table (Lisp_Object table) | 231 | copy_category_table (Lisp_Object table) |
| 232 | { | 232 | { |
| 233 | table = copy_char_table (table); | 233 | table = copy_char_table (table); |