Function: help-fns--side-effects

help-fns--side-effects is a byte-compiled function defined in help-fns.el.gz.

Signature

(help-fns--side-effects FUNCTION)

Source Code

;; Defined in /usr/src/emacs/lisp/help-fns.el.gz
(defun help-fns--side-effects (function)
  (when (and (symbolp function)
             (or (function-get function 'pure)
                 (function-get function 'side-effect-free)))
    (insert "  This function does not change global state, "
            "including the match data.\n")))