Function: emoji--init
emoji--init is an autoloaded and byte-compiled function defined in
emoji.el.gz.
Signature
(emoji--init &optional FORCE INHIBIT-ADJUST)
Source Code
;; Defined in /usr/src/emacs/lisp/international/emoji.el.gz
;;;###autoload
(defun emoji--init (&optional force inhibit-adjust)
(when (or (not emoji--labels)
force)
(unless force
(ignore-errors (require 'emoji-labels)))
;; The require should define the variable, but in case the .el
;; file doesn't exist (yet), parse the file now.
(when (or force
(not emoji--labels))
(setq emoji--derived (make-hash-table :test #'equal))
(emoji--parse-emoji-test)))
(when (and (not inhibit-adjust)
(not emoji--all-bases))
(setq emoji--all-bases (make-hash-table :test #'equal))
(emoji--adjust-displayable (cons "Emoji" emoji--labels))))