Function: org-level-increment

org-level-increment is a byte-compiled function defined in org.el.gz.

Signature

(org-level-increment)

Documentation

Return the number of stars that will be added or removed at a time to headlines when structure editing, based on the value of org-odd-levels-only.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-level-increment ()
  "Return the number of stars that will be added or removed at a
time to headlines when structure editing, based on the value of
`org-odd-levels-only'."
  (if org-odd-levels-only 2 1))