emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[nongnu] elpa/evil-visual-mark-mode 02af8f96b6 20/29: Use strings on exc


From: ELPA Syncer
Subject: [nongnu] elpa/evil-visual-mark-mode 02af8f96b6 20/29: Use strings on exclude mark to facilitate settings
Date: Mon, 9 Oct 2023 13:01:39 -0400 (EDT)

branch: elpa/evil-visual-mark-mode
commit 02af8f96b658f744ac9c592f15db9faba92888d8
Author: Roman Gonzalez <roman@unbounce.com>
Commit: Roman Gonzalez <roman@unbounce.com>

    Use strings on exclude mark to facilitate settings
---
 evil-visual-mark-mode.el | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/evil-visual-mark-mode.el b/evil-visual-mark-mode.el
index f25ea6a161..b7979afa8b 100644
--- a/evil-visual-mark-mode.el
+++ b/evil-visual-mark-mode.el
@@ -67,7 +67,7 @@ function."
 
 (defun evil-visual-mark-overlay-put (char overlay)
   "Puts marker CHAR in created OVERLAY."
-  (unless (member char evil-visual-mark-exclude-marks)
+  (unless (member (format "%c" char) evil-visual-mark-exclude-marks)
     (overlay-put overlay
                  'before-string
                  (propertize (format "`%c" char)
@@ -75,7 +75,6 @@ function."
                              'evil-visual-mark-face)))
   overlay)
 
-
 (defun evil-visual-mark-populate-overlay-alist ()
   "Populate the `evil-visual-mark-overlay-alist'.
 



reply via email to

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