Function: print--preprocess

print--preprocess is a function defined in print.c.

Signature

(print--preprocess OBJECT)

Documentation

Extract sharing info from OBJECT needed to print it.

Fills print-number-table if print-circle is non-nil. Does nothing if print-circle is nil.

Source Code

// Defined in /usr/src/emacs/src/print.c
{
  if (!NILP (Vprint_circle))
    {
      print_number_index = 0;
      print_preprocess (object);
    }
  return Qnil;
}