Function: thing-at-point-face-at-point

thing-at-point-face-at-point is a byte-compiled function defined in thingatpt.el.gz.

Signature

(thing-at-point-face-at-point &optional LAX BOUNDS)

Documentation

Return the name of the face at point as a symbol.

Source Code

;; Defined in /usr/src/emacs/lisp/thingatpt.el.gz
;; Faces

(defun thing-at-point-face-at-point (&optional _lax _bounds)
  "Return the name of the face at point as a symbol."
  (when-let ((face (thing-at-point 'symbol)))
    (and (facep face) (intern face))))