emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

scratch/emoji 7b1c551: Re-fix generation of the file


From: Lars Ingebrigtsen
Subject: scratch/emoji 7b1c551: Re-fix generation of the file
Date: Thu, 28 Oct 2021 07:16:00 -0400 (EDT)

branch: scratch/emoji
commit 7b1c5514057e265786bbd8891c30e2863277c5d5
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Re-fix generation of the file
---
 lisp/play/emoji.el | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/lisp/play/emoji.el b/lisp/play/emoji.el
index 92703eb..eb8afa7 100644
--- a/lisp/play/emoji.el
+++ b/lisp/play/emoji.el
@@ -183,7 +183,7 @@ when the command was issued."
           (error "Unknown name")
         (message "%s" name)))))
 
-(defun emoji--init (&optional force)
+(defun emoji--init (&optional force inhibit-adjust)
   ;; Remove debugging.
   (when (or (not emoji--labels)
             force)
@@ -194,7 +194,8 @@ when the command was issued."
     (unless emoji--labels
       (setq emoji--derived (make-hash-table :test #'equal))
       (emoji--parse-emoji-test))
-    (emoji--adjust-displayable (cons "Emoji" emoji--labels))))
+    (unless inhibit-adjust
+      (emoji--adjust-displayable (cons "Emoji" emoji--labels)))))
 
 (defun emoji--adjust-displayable (alist)
   "Remove glyphs we don't have fonts for."
@@ -271,7 +272,7 @@ when the command was issued."
   ;; Running from Makefile.
   (unless file
     (setq file (pop command-line-args-left)))
-  (emoji--init t)
+  (emoji--init t t)
   (with-temp-buffer
     (insert ";; Generated file -- do not edit.   -*- lexical-binding:t -*-
 ;; Copyright © 1991-2021 Unicode, Inc.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]