diff --git a/elisp/chronometrist.org b/elisp/chronometrist.org index 92ae538..f66a0f3 100644 --- a/elisp/chronometrist.org +++ b/elisp/chronometrist.org @@ -2234,12 +2234,11 @@ is the name of the task to be clocked out of." (defun chronometrist-print-non-tabular () "Print the non-tabular part of the buffer in `chronometrist'." (with-current-buffer chronometrist-buffer-name - (let ((inhibit-read-only t) - (w "\n ")) + (let ((inhibit-read-only t)) (goto-char (point-max)) (--> (chronometrist-active-time-one-day) (chronometrist-format-duration it 'chronometrist-total) - (format "%s%- 29s%s" w "Total" it) + (format "\n%s%- 29s% 7s" (make-string 4 ?\s) "Total" it) (insert it))))) #+END_SRC **** goto-nth-task :procedure: