Function: org-combine-change-calls

org-combine-change-calls is a macro defined in org-compat.el.

Signature

(org-combine-change-calls BEG END &rest BODY)

Source Code

;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-compat.el
;;; Emacs < 27.1 compatibility

(if (version< emacs-version "29")
    ;; A stub when `combine-change-calls' was not yet there or had
    ;; critical bugs (see Emacs bug#60467).
    (defmacro org-combine-change-calls (_beg _end &rest body)
      (declare (debug (form form def-body)) (indent 2))
      `(progn ,@body))
  (defalias 'org-combine-change-calls 'combine-change-calls))