diff options
| author | Jonas Bernoulli | 2023-02-05 17:19:15 +0100 |
|---|---|---|
| committer | Jonas Bernoulli | 2023-02-05 17:27:17 +0100 |
| commit | 85705a7059f33e43b2395552beb9a01d32d76a5e (patch) | |
| tree | 7364cd1086101741fbe1ff8fbd293918af963a37 | |
| parent | 18c43bb9d6ced167aa315b4485b6283247e8b127 (diff) | |
| download | emacs-85705a7059f33e43b2395552beb9a01d32d76a5e.tar.gz emacs-85705a7059f33e43b2395552beb9a01d32d76a5e.zip | |
; Move misplaces parenthesis in emoji--choose-emoji
* lisp/international/emoji.el (emoji--choose-emoji): Move misplaced
parenthesis.
| -rw-r--r-- | lisp/international/emoji.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/international/emoji.el b/lisp/international/emoji.el index f75bd877991..18fc167974c 100644 --- a/lisp/international/emoji.el +++ b/lisp/international/emoji.el | |||
| @@ -685,7 +685,7 @@ We prefer the earliest unique letter." | |||
| 685 | (cons glyph (gethash glyph emoji--derived)))))) | 685 | (cons glyph (gethash glyph emoji--derived)))))) |
| 686 | 686 | ||
| 687 | (defun emoji--choose-emoji () | 687 | (defun emoji--choose-emoji () |
| 688 | (pcase-let ((`(,glyph ,derived)) (emoji--read-emoji)) | 688 | (pcase-let ((`(,glyph ,derived) (emoji--read-emoji))) |
| 689 | (if (not derived) | 689 | (if (not derived) |
| 690 | ;; Simple glyph with no derivations. | 690 | ;; Simple glyph with no derivations. |
| 691 | (progn | 691 | (progn |