Mercurial > hg > xemacs-beta
comparison src/mule-charset.c @ 416:ebe98a74bd68 r21-2-16
Import from CVS: tag r21-2-16
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:22:23 +0200 |
parents | da8ed4261e83 |
children | e804706bfb8c |
comparison
equal
deleted
inserted
replaced
415:a27f76b40c83 | 416:ebe98a74bd68 |
---|---|
1048 /************************************************************************/ | 1048 /************************************************************************/ |
1049 /* Lisp primitives for working with characters */ | 1049 /* Lisp primitives for working with characters */ |
1050 /************************************************************************/ | 1050 /************************************************************************/ |
1051 | 1051 |
1052 DEFUN ("make-char", Fmake_char, 2, 3, 0, /* | 1052 DEFUN ("make-char", Fmake_char, 2, 3, 0, /* |
1053 Make a multi-byte character from CHARSET and octets ARG1 and ARG2. | 1053 Make a character from CHARSET and octets ARG1 and ARG2. |
1054 ARG2 is required only for characters from two-dimensional charsets. | |
1055 For example, (make-char 'latin-iso8859-2 185) will return the Latin 2 | |
1056 character s with caron. | |
1054 */ | 1057 */ |
1055 (charset, arg1, arg2)) | 1058 (charset, arg1, arg2)) |
1056 { | 1059 { |
1057 struct Lisp_Charset *cs; | 1060 struct Lisp_Charset *cs; |
1058 int a1, a2; | 1061 int a1, a2; |