emacs-diffs
[Top][All Lists]
Advanced

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

scratch/emoji 60b72c1: Tweak messaging


From: Lars Ingebrigtsen
Subject: scratch/emoji 60b72c1: Tweak messaging
Date: Fri, 29 Oct 2021 07:54:43 -0400 (EDT)

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

    Tweak messaging
---
 lisp/play/emoji.el | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/lisp/play/emoji.el b/lisp/play/emoji.el
index ea3dcc1..f9a5505 100644
--- a/lisp/play/emoji.el
+++ b/lisp/play/emoji.el
@@ -121,8 +121,10 @@ character) under point is."
                          (error "No glyph under point")
                        (let ((comp (find-composition (point) nil nil t)))
                          (if comp
-                             (buffer-substring (car comp) (cadr comp))
-                           (buffer-substring (point) (1+ (point))))))
+                             (buffer-substring-no-properties
+                              (car comp) (cadr comp))
+                           (buffer-substring-no-properties
+                            (point) (1+ (point))))))
                      t))
   (require 'emoji-labels)
   (if (not interactive)
@@ -132,8 +134,8 @@ character) under point is."
     ;; Give a name for (pretty much) any glyph, including non-emojis.
     (let ((name (emoji--name glyph)))
       (if (not name)
-          (message "No known name for `%s'" glyph)
-        (message "The name of `%s' is \"%s\"" glyph name)))))
+          (message "No known name for \"%s\"" glyph)
+        (message "The name of \"%s\" is \"%s\"" glyph name)))))
 
 (defun emoji--list-generate (name alist)
   (let ((width (/ (window-width) 5))



reply via email to

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