1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-14 03:37:38 -08:00

(make-char): Docstring adjusted for the change of make-char-internal.

This commit is contained in:
Kenichi Handa 2000-12-21 00:06:23 +00:00
parent 774ba8c93d
commit 9ff05eaec0

View file

@ -259,6 +259,12 @@ CODE1 and CODE2 are optional, but if you don't supply
sufficient position codes, return a generic character which stands for
all characters or group of characters in the character set.
A generic character can be used to index a char table (e.g. syntax-table).
Such character sets as ascii, eight-bit-control, and eight-bit-graphic
don't have corresponding generic characters. If CHARSET is one of
them and you don't supply CODE1, return the character of the smallest
code in CHARSET.
If CODE1 or CODE2 are invalid (out of range), this function signals an error."
(make-char-internal (charset-id charset) code1 code2))