Function: tty-suppress-bold-inverse-default-colors

tty-suppress-bold-inverse-default-colors is a function defined in xfaces.c.

Signature

(tty-suppress-bold-inverse-default-colors SUPPRESS)

Documentation

Suppress/allow boldness of faces with inverse default colors.

SUPPRESS non-nil means suppress it. This affects bold faces on TTYs whose foreground is the default background color of the display and whose background is the default foreground color. For such faces, the bold face attribute is ignored if this variable is non-nil.

Probably introduced at or before Emacs version 21.1.

Source Code

// Defined in /usr/src/emacs/src/xfaces.c
{
  tty_suppress_bold_inverse_default_colors_p = !NILP (suppress);
  face_change = true;
  return suppress;
}