Function: emoji--generate-file
emoji--generate-file is a byte-compiled function defined in
emoji.el.gz.
Signature
(emoji--generate-file &optional FILE)
Documentation
Generate an .el file with emoji mapping data and write it to FILE.
Source Code
;; Defined in /usr/src/emacs/lisp/international/emoji.el.gz
(defun emoji--generate-file (&optional file)
"Generate an .el file with emoji mapping data and write it to FILE."
;; Running from Makefile.
(unless file
(setq file (pop command-line-args-left)))
(emoji--init t t)
;; Weed out the elements that are empty.
(let ((glyphs nil))
(maphash (lambda (k v)
(unless v
(push k glyphs)))
emoji--derived)
(dolist (glyph glyphs)
(remhash glyph emoji--derived)))
(with-temp-buffer
(generate-lisp-file-heading file 'emoji--generate-file)
(insert ";; Copyright © 1991-2021 Unicode, Inc.
;; Generated from Unicode data files by emoji.el.
;; The source for this file is found in the admin/unidata/emoji-test.txt
;; file in the Emacs sources. The Unicode data files are used under the
;; Unicode Terms of Use, as contained in the file copyright.html in that
;; same directory.\n\n")
(dolist (var '(emoji--labels emoji--derived emoji--names))
(insert (format "(defconst %s '" var))
(pp (symbol-value var) (current-buffer))
(insert (format "\n) ;; End %s\n\n" var)))
(generate-lisp-file-trailer file)
(write-region (point-min) (point-max) file)))