0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 18:00:49 +00:00

Merge branch 'maint'

This commit is contained in:
Nicolas Goaziou 2014-07-25 11:05:49 +02:00
commit ced4fa3205

View file

@ -2594,13 +2594,10 @@ from the dynamic block definition."
total-time))
(defun org-clocktable-indent-string (level)
(if (= level 1)
""
(let ((str "\\__"))
(while (> level 2)
(setq level (1- level)
str (concat str "___")))
(concat str " "))))
(if (= level 1) ""
(let ((str " "))
(dotimes (k (1- level) str)
(setq str (concat "\\emsp" str))))))
(defun org-clocktable-steps (params)
"Step through the range to make a number of clock tables."