Function: org-with-silent-modifications
org-with-silent-modifications is a macro defined in org-compat.el.
This macro is obsolete since 9.2; use with-silent-modifications
instead.
Signature
(org-with-silent-modifications &rest BODY)
Source Code
;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-compat.el
(defmacro org-with-silent-modifications (&rest body)
(declare (obsolete "use `with-silent-modifications' instead." "9.2")
(debug (body)))
`(with-silent-modifications ,@body))