We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35e356f commit ecfebb5Copy full SHA for ecfebb5
lisp/international/emoji.el
@@ -164,12 +164,12 @@ when the command was invoked."
164
(let ((buf (current-buffer)))
165
(emoji--init)
166
(switch-to-buffer (get-buffer-create "*Emoji*"))
167
+ (setq-local emoji--insert-buffer buf)
168
;; Don't regenerate the buffer if it already exists -- this will
169
;; leave point where it was the last time it was used.
170
(when (zerop (buffer-size))
171
(let ((inhibit-read-only t))
172
(emoji-list-mode)
- (setq-local emoji--insert-buffer buf)
173
(emoji--list-generate nil (cons nil emoji--labels))
174
(goto-char (point-min))))))
175
0 commit comments