aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/image.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/image.el b/lisp/image.el
index d557e39aac2..295b79f161d 100644
--- a/lisp/image.el
+++ b/lisp/image.el
@@ -735,7 +735,7 @@ for the animation speed. A negative value means to animate in reverse."
735 ;; Subtract off the time we took to load the image from the 735 ;; Subtract off the time we took to load the image from the
736 ;; stated delay time. 736 ;; stated delay time.
737 (delay (max (+ (* (or (cdr animation) image-default-frame-delay) 737 (delay (max (+ (* (or (cdr animation) image-default-frame-delay)
738 (/ 1 (abs speed))) 738 (/ 1.0 (abs speed)))
739 time (- (float-time))) 739 time (- (float-time)))
740 image-minimum-frame-delay)) 740 image-minimum-frame-delay))
741 done) 741 done)