Mercurial > emacs
comparison lisp/international/mule.el @ 34759:31e8fba26248
(make-char): Docstring adjusted for the change of make-char-internal.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Thu, 21 Dec 2000 00:06:23 +0000 |
parents | 8f397d03b992 |
children | e459e9bee789 |
comparison
equal
deleted
inserted
replaced
34758:bb4eb1ce8b57 | 34759:31e8fba26248 |
---|---|
257 "Return a character of CHARSET whose position codes are CODE1 and CODE2. | 257 "Return a character of CHARSET whose position codes are CODE1 and CODE2. |
258 CODE1 and CODE2 are optional, but if you don't supply | 258 CODE1 and CODE2 are optional, but if you don't supply |
259 sufficient position codes, return a generic character which stands for | 259 sufficient position codes, return a generic character which stands for |
260 all characters or group of characters in the character set. | 260 all characters or group of characters in the character set. |
261 A generic character can be used to index a char table (e.g. syntax-table). | 261 A generic character can be used to index a char table (e.g. syntax-table). |
262 | |
263 Such character sets as ascii, eight-bit-control, and eight-bit-graphic | |
264 don't have corresponding generic characters. If CHARSET is one of | |
265 them and you don't supply CODE1, return the character of the smallest | |
266 code in CHARSET. | |
267 | |
262 If CODE1 or CODE2 are invalid (out of range), this function signals an error." | 268 If CODE1 or CODE2 are invalid (out of range), this function signals an error." |
263 (make-char-internal (charset-id charset) code1 code2)) | 269 (make-char-internal (charset-id charset) code1 code2)) |
264 | 270 |
265 (put 'make-char 'byte-compile | 271 (put 'make-char 'byte-compile |
266 (function | 272 (function |