Function: ede-documentation-files

ede-documentation-files is a byte-compiled function defined in base.el.gz.

Signature

(ede-documentation-files)

Documentation

Return the documentation files for the current buffer.

Not all buffers need documentations, so return nil if no applicable. Some projects may have multiple documentation files, so return a list.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/base.el.gz
(defun ede-documentation-files ()
  "Return the documentation files for the current buffer.
Not all buffers need documentations, so return nil if no applicable.
Some projects may have multiple documentation files, so return a list."
  (if ede-object
      (ede-buffer-documentation-files ede-object (current-buffer))
    nil))