Function: unicode-property-table-internal
unicode-property-table-internal is a function defined in chartab.c.
Signature
(unicode-property-table-internal PROP)
Documentation
Return a char-table for Unicode character property PROP.
Use get-unicode-property-internal and
put-unicode-property-internal instead of aref and aset to get
and put an element value.
Source Code
// Defined in /usr/src/emacs/src/chartab.c
{
Lisp_Object table = uniprop_table (prop);
if (CHAR_TABLE_P (table))
return table;
return Fcdr (Fassq (prop, Vchar_code_property_alist));
}