diff options
| author | Dave Love | 2002-05-24 15:30:11 +0000 |
|---|---|---|
| committer | Dave Love | 2002-05-24 15:30:11 +0000 |
| commit | 1721b6aff1b49a5400ba85b0bdad42d92a6e4dd7 (patch) | |
| tree | fe0b2d2209fe2a4f471d25a16717828cc8b69ede /src | |
| parent | 75dc33a2e7e8ba9acf9da32ed84414037baae50e (diff) | |
| download | emacs-1721b6aff1b49a5400ba85b0bdad42d92a6e4dd7.tar.gz emacs-1721b6aff1b49a5400ba85b0bdad42d92a6e4dd7.zip | |
(map_charset_chars): Fix c_function declaration for
K&R.
Diffstat (limited to 'src')
| -rw-r--r-- | src/charset.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/charset.c b/src/charset.c index 10a3b274022..ea4b08fc953 100644 --- a/src/charset.c +++ b/src/charset.c | |||
| @@ -534,7 +534,7 @@ DEFUN ("charsetp", Fcharsetp, Scharsetp, 1, 1, 0, | |||
| 534 | 534 | ||
| 535 | void | 535 | void |
| 536 | map_charset_chars (c_function, function, charset_symbol, arg) | 536 | map_charset_chars (c_function, function, charset_symbol, arg) |
| 537 | void (*c_function) (Lisp_Object, Lisp_Object, Lisp_Object); | 537 | void (*c_function) P_ ((Lisp_Object, Lisp_Object, Lisp_Object)); |
| 538 | Lisp_Object function, charset_symbol, arg; | 538 | Lisp_Object function, charset_symbol, arg; |
| 539 | { | 539 | { |
| 540 | int id; | 540 | int id; |
| @@ -1031,12 +1031,12 @@ DEFUN ("unify-charset", Funify_charset, Sunify_charset, 1, 2, 0, | |||
| 1031 | DEFUN ("get-unused-iso-final-char", Fget_unused_iso_final_char, | 1031 | DEFUN ("get-unused-iso-final-char", Fget_unused_iso_final_char, |
| 1032 | Sget_unused_iso_final_char, 2, 2, 0, | 1032 | Sget_unused_iso_final_char, 2, 2, 0, |
| 1033 | doc: /* | 1033 | doc: /* |
| 1034 | Return an unsed ISO's final char for a charset of DIMENISION and CHARS. | 1034 | Return an unsed ISO final char for a charset of DIMENISION and CHARS. |
| 1035 | DIMENSION is the number of bytes to represent a character: 1 or 2. | 1035 | DIMENSION is the number of bytes to represent a character: 1 or 2. |
| 1036 | CHARS is the number of characters in a dimension: 94 or 96. | 1036 | CHARS is the number of characters in a dimension: 94 or 96. |
| 1037 | 1037 | ||
| 1038 | This final char is for private use, thus the range is `0' (48) .. `?' (63). | 1038 | This final char is for private use, thus the range is `0' (48) .. `?' (63). |
| 1039 | If there's no unused final char for the attrified kind of charset, | 1039 | If there's no unused final char for the specified kind of charset, |
| 1040 | return nil. */) | 1040 | return nil. */) |
| 1041 | (dimension, chars) | 1041 | (dimension, chars) |
| 1042 | Lisp_Object dimension, chars; | 1042 | Lisp_Object dimension, chars; |