diff options
| author | Andreas Schwab | 1997-11-21 14:58:22 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1997-11-21 14:58:22 +0000 |
| commit | 22e6f12b3bf270b131431058c8a6c61db6de01fc (patch) | |
| tree | bbbc3baecc47975e648b8a865636837c72d22eb2 | |
| parent | b27a1703072a3cc4233d6a4d567e8a1d561a7266 (diff) | |
| download | emacs-22e6f12b3bf270b131431058c8a6c61db6de01fc.tar.gz emacs-22e6f12b3bf270b131431058c8a6c61db6de01fc.zip | |
* fns.c (map_char_table): Protoize parameter.
| -rw-r--r-- | src/fns.c | 3 |
1 files changed, 2 insertions, 1 deletions
| @@ -1466,7 +1466,8 @@ See also the documentation of make-char.") | |||
| 1466 | 1466 | ||
| 1467 | void | 1467 | void |
| 1468 | map_char_table (c_function, function, subtable, arg, depth, indices) | 1468 | map_char_table (c_function, function, subtable, arg, depth, indices) |
| 1469 | Lisp_Object (*c_function) (), function, subtable, arg, *indices; | 1469 | void (*c_function) P_ ((Lisp_Object, Lisp_Object, Lisp_Object)); |
| 1470 | Lisp_Object function, subtable, arg, *indices; | ||
| 1470 | int depth; | 1471 | int depth; |
| 1471 | { | 1472 | { |
| 1472 | int i, to; | 1473 | int i, to; |