branch: elpa/hideshowvis
commit f99fe071caf79ba06ac729550951c234452cd169
Author: Jan Rehders <[email protected]>
Commit: Jan Rehders <[email protected]>

    Only use a space as marker for fringe bitmap
    
    - This fixes #15 https://github.com/sheijk/hideshowvis/issues/15
    - The display string can still be easily traced back as it has hideshowvis 
in it's value
    - the issue could also show up in buffers exported using htmlize
---
 hideshowvis.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hideshowvis.el b/hideshowvis.el
index f1db06c7f13..2d5393bc1d7 100644
--- a/hideshowvis.el
+++ b/hideshowvis.el
@@ -158,7 +158,7 @@ functions used with `after-change-functions'."
             (let* ((ovl (make-overlay (match-beginning 0) (match-end 0))))
               (overlay-put ovl 'before-string
                            (propertize
-                            "*hideshowvis*"
+                            " "
                             'display
                             (list 'left-fringe
                                   'hideshowvis-hideable-marker

Reply via email to