From 9f3b5e6926e3a127df87e7829e30d4cd59fecbcf Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 7 Mar 2011 23:39:53 -0800 Subject: [PATCH] * category.c (copy_category_table): Now static, since it's not used elsewhere. --- src/ChangeLog | 1 + src/category.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index a073e26909..f0a12a7c5d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -66,6 +66,7 @@ Remove unused macros. * category.c (hash_get_category_set): Remove unused local var. + (copy_category_table): Now static, since it's not used elsewhere. 2011-03-06 Chong Yidong diff --git a/src/category.c b/src/category.c index abe4609d02..cc7ff88474 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) the original and the copy. This function is called recursively by binding TABLE to a sub char table. */ -Lisp_Object +static Lisp_Object copy_category_table (Lisp_Object table) { table = copy_char_table (table); -- 2.20.1