Function: clear-charset-maps

clear-charset-maps is a function defined in charset.c.

Signature

(clear-charset-maps)

Documentation

Internal use only.

Clear temporary charset mapping tables. It should be called only from temacs invoked for dumping.

Source Code

// Defined in /usr/src/emacs/src/charset.c
{
  if (temp_charset_work)
    {
      xfree (temp_charset_work);
      temp_charset_work = NULL;
    }

  if (CHAR_TABLE_P (Vchar_unify_table))
    Foptimize_char_table (Vchar_unify_table, Qnil);

  return Qnil;
}