]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix my last commit
authorStefan Kangas <stefan@marxist.se>
Sat, 20 Nov 2021 12:18:17 +0000 (13:18 +0100)
committerStefan Kangas <stefan@marxist.se>
Sat, 20 Nov 2021 12:18:17 +0000 (13:18 +0100)
* lisp/play/animate.el (animate-string): Ensure the delay is always a
float.

lisp/play/animate.el

index f3c77b31a5dda020deaa9225c7d2e6a87b9b127b..54ee9dc84eb18e0dc0345985d83400f95f452050 100644 (file)
@@ -138,7 +138,7 @@ in the current window."
        ;; Make sure buffer is displayed starting at the beginning.
        (set-window-start nil 1)
        ;; Display it, and wait just a little while.
-        (sit-for (/ animate-total-added-delay (max animate-n-steps 1)))
+        (sit-for (/ (float animate-total-added-delay) (max animate-n-steps 1)))
        ;; Now undo the changes we made in the buffer.
        (setq list-to-undo buffer-undo-list)
        (while list-to-undo