aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/time.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/time.el b/lisp/time.el
index d95f708161c..9084217024a 100644
--- a/lisp/time.el
+++ b/lisp/time.el
@@ -582,7 +582,7 @@ For example, the Unix uptime command format is \"%D, %z%2h:%.2m\"."
582 "Return a string giving the duration of the Emacs initialization." 582 "Return a string giving the duration of the Emacs initialization."
583 (interactive) 583 (interactive)
584 (let ((str 584 (let ((str
585 (format "%.1f seconds" 585 (format "%s seconds"
586 (float-time 586 (float-time
587 (time-subtract after-init-time before-init-time))))) 587 (time-subtract after-init-time before-init-time)))))
588 (if (called-interactively-p 'interactive) 588 (if (called-interactively-p 'interactive)