From: Paul Eggert Date: Tue, 8 Mar 2011 07:39:53 +0000 (-0800) Subject: * category.c (copy_category_table): Now static, since it's not used elsewhere. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~605^2^2~53 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9f3b5e6926e3a127df87e7829e30d4cd59fecbcf;p=emacs.git * category.c (copy_category_table): Now static, since it's not used elsewhere. --- diff --git a/src/ChangeLog b/src/ChangeLog index a073e269091..f0a12a7c5d1 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 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) 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);