aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/time.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/time.el b/lisp/time.el
index ba5792441c4..651dd56779b 100644
--- a/lisp/time.el
+++ b/lisp/time.el
@@ -535,7 +535,8 @@ See `display-time-world'."
535 (setq fmt (concat "%-" (int-to-string max-width) "s %s\n")) 535 (setq fmt (concat "%-" (int-to-string max-width) "s %s\n"))
536 (dolist (timedata (nreverse result)) 536 (dolist (timedata (nreverse result))
537 (insert (format fmt (car timedata) (cdr timedata)))) 537 (insert (format fmt (car timedata) (cdr timedata))))
538 (delete-char -1))) 538 (delete-char -1))
539 (goto-char (point-min)))
539 540
540;;;###autoload 541;;;###autoload
541(defun display-time-world () 542(defun display-time-world ()