diff options
| author | Kenichi Handa | 2011-08-02 12:49:09 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2011-08-02 12:49:09 +0900 |
| commit | 5cc7f7afed70655e33f89f105da2806edbad5063 (patch) | |
| tree | 6cca7fdc7c26986c8df5dd763b3203e46a5fd362 /src | |
| parent | d90e2ea0eeccb7422fc7c8ab727a61c49c135e03 (diff) | |
| download | emacs-5cc7f7afed70655e33f89f105da2806edbad5063.tar.gz emacs-5cc7f7afed70655e33f89f105da2806edbad5063.zip | |
Make uniprop_table non-static.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/chartab.c | 2 | ||||
| -rw-r--r-- | src/lisp.h | 1 |
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 @@ | |||
| 1 | 2011-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 | |||
| 1 | 2011-08-01 Eli Zaretskii <eliz@gnu.org> | 7 | 2011-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 | ||
| 1313 | static Lisp_Object | 1313 | Lisp_Object |
| 1314 | uniprop_table (Lisp_Object prop) | 1314 | uniprop_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); |
| 2864 | extern Lisp_Object uniprop_table (Lisp_Object); | ||
| 2864 | extern void syms_of_chartab (void); | 2865 | extern void syms_of_chartab (void); |
| 2865 | 2866 | ||
| 2866 | /* Defined in print.c */ | 2867 | /* Defined in print.c */ |