Function: char-table-subtype
char-table-subtype is a function defined in chartab.c.
Signature
(char-table-subtype CHAR-TABLE)
Documentation
Return the subtype of char-table CHAR-TABLE. The value is a symbol.
Probably introduced at or before Emacs version 19.30.
Source Code
// Defined in /usr/src/emacs/src/chartab.c
{
CHECK_CHAR_TABLE (char_table);
return XCHAR_TABLE (char_table)->purpose;
}