1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-10 05:30:45 -08:00

Make uniprop_table non-static.

This commit is contained in:
Kenichi Handa 2011-08-02 12:49:09 +09:00
parent d90e2ea0ee
commit 5cc7f7afed
3 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2011-08-02 Kenichi Handa <handa@m17n.org>
* lisp.h: (uniprop_table): Extern it.
* chartab.c (uniprop_table): Make it non-static.
2011-08-01 Eli Zaretskii <eliz@gnu.org>
* xdisp.c (forward_to_next_line_start): Accept additional argument

View file

@ -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;

View file

@ -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 */