Function: help-fns--mention-first-release

help-fns--mention-first-release is a byte-compiled function defined in help-fns.el.gz.

Signature

(help-fns--mention-first-release OBJECT)

Source Code

;; Defined in /usr/src/emacs/lisp/help-fns.el.gz
(defun help-fns--mention-first-release (object)
  ;; Don't output anything if we've already output the :version from
  ;; the `defcustom'.
  (unless (memq 'help-fns--customize-variable-version
                help-fns--activated-functions)
    (when-let ((first (and (symbolp object)
                           (help-fns--first-release object))))
      (with-current-buffer standard-output
        (insert (format "  Probably introduced at or before Emacs version %s.\n"
                        first))))))