aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/chartab.c2
-rw-r--r--src/lisp.h1
3 files changed, 8 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4e8217cdf5f..1a932a924ff 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
12011-08-02 Kenichi Handa <handa@m17n.org>
2
3 * lisp.h: (uniprop_table): Extern it.
4
5 * chartab.c (uniprop_table): Make it non-static.
6
12011-08-01 Eli Zaretskii <eliz@gnu.org> 72011-08-01 Eli Zaretskii <eliz@gnu.org>
2 8
3 * xdisp.c (forward_to_next_line_start): Accept additional argument 9 * 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)
1310 function may load a Lisp file and thus may cause 1310 function may load a Lisp file and thus may cause
1311 garbage-collection. */ 1311 garbage-collection. */
1312 1312
1313static Lisp_Object 1313Lisp_Object
1314uniprop_table (Lisp_Object prop) 1314uniprop_table (Lisp_Object prop)
1315{ 1315{
1316 Lisp_Object val, table, result; 1316 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
2861 Lisp_Object, Lisp_Object, 2861 Lisp_Object, Lisp_Object,
2862 Lisp_Object, struct charset *, 2862 Lisp_Object, struct charset *,
2863 unsigned, unsigned); 2863 unsigned, unsigned);
2864extern Lisp_Object uniprop_table (Lisp_Object);
2864extern void syms_of_chartab (void); 2865extern void syms_of_chartab (void);
2865 2866
2866/* Defined in print.c */ 2867/* Defined in print.c */