commit 8ec10466fcd4df8fbf020d6f779bf52b62926e11
parent b3d36ab41a5f7d541de174f9d428489350892801
Author: Iqbal Ansari <iqbalansari02@yahoo.com>
Date: Sat, 28 Nov 2015 20:28:54 +0530
Use markers to point location of emojis
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/emojify.el b/emojify.el
@@ -628,8 +628,8 @@ TODO: Skip emojifying if region is already emojified."
(list 'emojified t
'emojify-buffer buffer
'emojify-text match
- 'emojify-beginning match-beginning
- 'emojify-end match-end
+ 'emojify-beginning (copy-marker match-beginning)
+ 'emojify-end (copy-marker match-end)
'keymap emojify-emoji-keymap
'point-entered #'emojify-point-entered-function
'help-echo #'emojify-help-function)))))))))))