Function: find-function--defface
find-function--defface is a byte-compiled function defined in
find-func.el.gz.
Signature
(find-function--defface SYMBOL)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/find-func.el.gz
(defun find-function--defface (symbol)
(catch 'found
(while (re-search-forward (format find-face-regexp symbol) nil t)
(unless (ppss-comment-or-string-start
(save-excursion (syntax-ppss (match-beginning 0))))
;; We're not in a comment or a string.
(throw 'found t)))))