Function: org-clocktable-indent-string
org-clocktable-indent-string is a byte-compiled function defined in
org-clock.el.gz.
Signature
(org-clocktable-indent-string LEVEL)
Documentation
Return indentation string according to LEVEL.
LEVEL is an integer. Indent by two spaces per level above 1.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-clock.el.gz
(defun org-clocktable-indent-string (level)
"Return indentation string according to LEVEL.
LEVEL is an integer. Indent by two spaces per level above 1."
(if (= level 1) ""
(concat "\\_" (make-string (* 2 (1- level)) ?\s))))