Function: make-face-bold-italic

make-face-bold-italic is an interactive and byte-compiled function defined in faces.el.gz.

Signature

(make-face-bold-italic FACE &optional FRAME)

Documentation

Make the font of FACE be bold and italic, if possible.

FRAME nil or not specified means change face on all frames. Use set-face-attribute for finer control of font weight and slant.

Probably introduced at or before Emacs version 24.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/faces.el.gz
(defun make-face-bold-italic (face &optional frame _noerror)
  "Make the font of FACE be bold and italic, if possible.
FRAME nil or not specified means change face on all frames.
Use `set-face-attribute' for finer control of font weight and slant."
  (declare (advertised-calling-convention (face &optional frame) "29.1"))
  (interactive (list (read-face-name "Make which face bold-italic"
                                     (face-at-point t))))
  (set-face-attribute face frame :weight 'bold :slant 'italic))