Mercurial > emacs
changeset 88626:decf968c7435
(map_charset_chars): Fix c_function declaration for
K&R.
author | Dave Love <fx@gnu.org> |
---|---|
date | Fri, 24 May 2002 15:30:11 +0000 |
parents | 00997a99fa17 |
children | a59de8df7832 |
files | src/charset.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/charset.c Fri May 24 15:29:53 2002 +0000 +++ b/src/charset.c Fri May 24 15:30:11 2002 +0000 @@ -534,7 +534,7 @@ void map_charset_chars (c_function, function, charset_symbol, arg) - void (*c_function) (Lisp_Object, Lisp_Object, Lisp_Object); + void (*c_function) P_ ((Lisp_Object, Lisp_Object, Lisp_Object)); Lisp_Object function, charset_symbol, arg; { int id; @@ -1031,12 +1031,12 @@ DEFUN ("get-unused-iso-final-char", Fget_unused_iso_final_char, Sget_unused_iso_final_char, 2, 2, 0, doc: /* -Return an unsed ISO's final char for a charset of DIMENISION and CHARS. +Return an unsed ISO final char for a charset of DIMENISION and CHARS. DIMENSION is the number of bytes to represent a character: 1 or 2. CHARS is the number of characters in a dimension: 94 or 96. This final char is for private use, thus the range is `0' (48) .. `?' (63). -If there's no unused final char for the attrified kind of charset, +If there's no unused final char for the specified kind of charset, return nil. */) (dimension, chars) Lisp_Object dimension, chars;