Function: coding-system-aliases

coding-system-aliases is a function defined in coding.c.

Signature

(coding-system-aliases CODING-SYSTEM)

Documentation

Return the list of aliases of CODING-SYSTEM.

View in manual

Probably introduced at or before Emacs version 23.1.

Source Code

// Defined in /usr/src/emacs/src/coding.c
{
  Lisp_Object spec;

  if (NILP (coding_system))
    coding_system = Qno_conversion;
  CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec);
  return AREF (spec, 1);
}