Merge branch 'maint'

This commit is contained in:
Nicolas Goaziou 2014-07-25 11:05:49 +02:00
commit ced4fa3205
1 changed files with 4 additions and 7 deletions

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."