branch: externals/valign
commit 7244d66d00e25e59c443cfd9c8ad59ddcd30a18e
Author: Yuan Fu <[email protected]>
Commit: Yuan Fu <[email protected]>

    * valign.el (valign--put-overlay): Make overlays non-sticky.
---
 valign.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/valign.el b/valign.el
index 9af28e9..fddf65c 100644
--- a/valign.el
+++ b/valign.el
@@ -320,7 +320,7 @@ Assumes point is on a table."
 (defun valign--put-overlay (beg end &rest props)
   "Put overlay between BEG and END.
 PROPS contains properties and values."
-  (let ((ov (make-overlay beg end)))
+  (let ((ov (make-overlay beg end nil t nil)))
     (overlay-put ov 'valign t)
     (overlay-put ov 'evaporate t)
     (while props

Reply via email to