Function: org-clocktable-try-shift

org-clocktable-try-shift is a byte-compiled function defined in org.el.gz.

Signature

(org-clocktable-try-shift DIR N)

Documentation

Check if this line starts a clock table, if yes, shift the time block.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-clocktable-try-shift (dir n)
  "Check if this line starts a clock table, if yes, shift the time block."
  (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
    (org-clocktable-shift dir n)))