branch: elpa/dslide commit baedd89de4b38fa25645e0761f94c9ee7c9a2d7d Author: Psionik K <73710933+psioni...@users.noreply.github.com> Commit: Psionik K <73710933+psioni...@users.noreply.github.com>
macro expansion was creating an unused expression Signed-off-by: Psionik K <73710933+psioni...@users.noreply.github.com> --- dslide.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dslide.el b/dslide.el index bce92252b2..5c24547e28 100644 --- a/dslide.el +++ b/dslide.el @@ -2330,7 +2330,7 @@ and the value of `point-max' should contain a newline somewhere." (defun dslide--animate-peel (timer overlay) (let ((start (overlay-start overlay)) (end (overlay-end overlay))) - (setf (overlay-start overlay) (1+ start)) + (move-overlay overlay (1+ start) end) (when (= (1+ start) end) (cancel-timer timer) (setq dslide--animation-timers