Function: cfengine3-documentation-function

cfengine3-documentation-function is a byte-compiled function defined in cfengine.el.gz.

Signature

(cfengine3-documentation-function &rest IGNORED)

Documentation

Document CFengine 3 functions around point.

Intended as the value of eldoc-documentation-functions, which see. Use it by enabling eldoc-mode(var)/eldoc-mode(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cfengine.el.gz
(defun cfengine3-documentation-function (&rest _ignored)
  "Document CFengine 3 functions around point.
Intended as the value of `eldoc-documentation-functions', which
see.  Use it by enabling `eldoc-mode'."
  (let ((fdef (cfengine3--current-function)))
    (when fdef
      (cfengine3-format-function-docstring fdef))))