aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2002-05-24 15:30:11 +0000
committerDave Love2002-05-24 15:30:11 +0000
commit1721b6aff1b49a5400ba85b0bdad42d92a6e4dd7 (patch)
treefe0b2d2209fe2a4f471d25a16717828cc8b69ede /src
parent75dc33a2e7e8ba9acf9da32ed84414037baae50e (diff)
downloademacs-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.c6
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
535void 535void
536map_charset_chars (c_function, function, charset_symbol, arg) 536map_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,
1031DEFUN ("get-unused-iso-final-char", Fget_unused_iso_final_char, 1031DEFUN ("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: /*
1034Return an unsed ISO's final char for a charset of DIMENISION and CHARS. 1034Return an unsed ISO final char for a charset of DIMENISION and CHARS.
1035DIMENSION is the number of bytes to represent a character: 1 or 2. 1035DIMENSION is the number of bytes to represent a character: 1 or 2.
1036CHARS is the number of characters in a dimension: 94 or 96. 1036CHARS is the number of characters in a dimension: 94 or 96.
1037 1037
1038This final char is for private use, thus the range is `0' (48) .. `?' (63). 1038This final char is for private use, thus the range is `0' (48) .. `?' (63).
1039If there's no unused final char for the attrified kind of charset, 1039If there's no unused final char for the specified kind of charset,
1040return nil. */) 1040return nil. */)
1041 (dimension, chars) 1041 (dimension, chars)
1042 Lisp_Object dimension, chars; 1042 Lisp_Object dimension, chars;