From 5cc7f7afed70655e33f89f105da2806edbad5063 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Tue, 2 Aug 2011 12:49:09 +0900 Subject: [PATCH] Make uniprop_table non-static. --- src/ChangeLog | 6 ++++++ src/chartab.c | 2 +- src/lisp.h | 1 + 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 4e8217cdf5f..1a932a924ff 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2011-08-02 Kenichi Handa + + * lisp.h: (uniprop_table): Extern it. + + * chartab.c (uniprop_table): Make it non-static. + 2011-08-01 Eli Zaretskii * xdisp.c (forward_to_next_line_start): Accept additional argument diff --git a/src/chartab.c b/src/chartab.c index efe23eca83f..fb72004356e 100644 --- a/src/chartab.c +++ b/src/chartab.c @@ -1310,7 +1310,7 @@ uniprop_get_encoder (Lisp_Object table) function may load a Lisp file and thus may cause garbage-collection. */ -static Lisp_Object +Lisp_Object uniprop_table (Lisp_Object prop) { Lisp_Object val, table, result; diff --git a/src/lisp.h b/src/lisp.h index 1e141dbb5d0..d82307b4332 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -2861,6 +2861,7 @@ extern void map_char_table_for_charset (void (*c_function) (Lisp_Object, Lisp_Ob Lisp_Object, Lisp_Object, Lisp_Object, struct charset *, unsigned, unsigned); +extern Lisp_Object uniprop_table (Lisp_Object); extern void syms_of_chartab (void); /* Defined in print.c */ -- 2.11.4.GIT