Function: get-unicode-property-internal
get-unicode-property-internal is a function defined in chartab.c.
Signature
(get-unicode-property-internal CHAR-TABLE CH)
Documentation
Return an element of CHAR-TABLE for character CH.
CHAR-TABLE must be what returned by unicode-property-table-internal.
Source Code
// Defined in /usr/src/emacs/src/chartab.c
{
CHECK_CHAR_TABLE (char_table);
CHECK_CHARACTER (ch);
if (! UNIPROP_TABLE_P (char_table))
error ("Invalid Unicode property table");
return get_unicode_property (char_table, XFIXNUM (ch));
}