Function: emoji--fontify-glyph

emoji--fontify-glyph is a byte-compiled function defined in emoji.el.gz.

Signature

(emoji--fontify-glyph GLYPH &optional INHIBIT-DERIVED)

Source Code

;; Defined in /usr/src/emacs/lisp/international/emoji.el.gz
(defun emoji--fontify-glyph (glyph &optional inhibit-derived)
  (propertize glyph 'face
              (if (and (not inhibit-derived)
                       (or (null emoji--done-derived)
                           (not (gethash glyph emoji--done-derived)))
                       (gethash glyph emoji--derived))
                  ;; If this emoji has derivations, use a special face
                  ;; to tell the user.
                  'emoji-with-derivations
                ;; Normal emoji.
                'emoji)))