diff options
Diffstat (limited to 'src/chartab.c')
| -rw-r--r-- | src/chartab.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/chartab.c b/src/chartab.c index 2b547184b21..90ec660d671 100644 --- a/src/chartab.c +++ b/src/chartab.c | |||
| @@ -725,7 +725,7 @@ equivalent and can be merged. It defaults to `equal'. */) | |||
| 725 | static Lisp_Object | 725 | static Lisp_Object |
| 726 | map_sub_char_table (c_function, function, table, arg, val, range, | 726 | map_sub_char_table (c_function, function, table, arg, val, range, |
| 727 | default_val, parent) | 727 | default_val, parent) |
| 728 | void (*c_function) P_ ((Lisp_Object, Lisp_Object, Lisp_Object)); | 728 | void (*c_function) (Lisp_Object, Lisp_Object, Lisp_Object); |
| 729 | Lisp_Object function, table, arg, val, range, default_val, parent; | 729 | Lisp_Object function, table, arg, val, range, default_val, parent; |
| 730 | { | 730 | { |
| 731 | /* Pointer to the elements of TABLE. */ | 731 | /* Pointer to the elements of TABLE. */ |
| @@ -841,7 +841,7 @@ map_sub_char_table (c_function, function, table, arg, val, range, | |||
| 841 | 841 | ||
| 842 | void | 842 | void |
| 843 | map_char_table (c_function, function, table, arg) | 843 | map_char_table (c_function, function, table, arg) |
| 844 | void (*c_function) P_ ((Lisp_Object, Lisp_Object, Lisp_Object)); | 844 | void (*c_function) (Lisp_Object, Lisp_Object, Lisp_Object); |
| 845 | Lisp_Object function, table, arg; | 845 | Lisp_Object function, table, arg; |
| 846 | { | 846 | { |
| 847 | Lisp_Object range, val; | 847 | Lisp_Object range, val; |
| @@ -915,7 +915,7 @@ range of characters that have the same value. */) | |||
| 915 | static void | 915 | static void |
| 916 | map_sub_char_table_for_charset (c_function, function, table, arg, range, | 916 | map_sub_char_table_for_charset (c_function, function, table, arg, range, |
| 917 | charset, from, to) | 917 | charset, from, to) |
| 918 | void (*c_function) P_ ((Lisp_Object, Lisp_Object)); | 918 | void (*c_function) (Lisp_Object, Lisp_Object); |
| 919 | Lisp_Object function, table, arg, range; | 919 | Lisp_Object function, table, arg, range; |
| 920 | struct charset *charset; | 920 | struct charset *charset; |
| 921 | unsigned from, to; | 921 | unsigned from, to; |
| @@ -1002,7 +1002,7 @@ map_sub_char_table_for_charset (c_function, function, table, arg, range, | |||
| 1002 | void | 1002 | void |
| 1003 | map_char_table_for_charset (c_function, function, table, arg, | 1003 | map_char_table_for_charset (c_function, function, table, arg, |
| 1004 | charset, from, to) | 1004 | charset, from, to) |
| 1005 | void (*c_function) P_ ((Lisp_Object, Lisp_Object)); | 1005 | void (*c_function) (Lisp_Object, Lisp_Object); |
| 1006 | Lisp_Object function, table, arg; | 1006 | Lisp_Object function, table, arg; |
| 1007 | struct charset *charset; | 1007 | struct charset *charset; |
| 1008 | unsigned from, to; | 1008 | unsigned from, to; |