From: Stefan Kangas Date: Sat, 20 Nov 2021 12:18:17 +0000 (+0100) Subject: ; Fix my last commit X-Git-Tag: emacs-29.0.90~2852^2~157 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=560a6c35cb274af6b79f89eddbdbb2fd6c00e2b0;p=emacs.git ; Fix my last commit * lisp/play/animate.el (animate-string): Ensure the delay is always a float. --- diff --git a/lisp/play/animate.el b/lisp/play/animate.el index f3c77b31a5d..54ee9dc84eb 100644 --- a/lisp/play/animate.el +++ b/lisp/play/animate.el @@ -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