Function: ede-header-file

ede-header-file is a byte-compiled function defined in base.el.gz.

Signature

(ede-header-file)

Documentation

Return the header file for the current buffer.

Not all buffers need headers, so return nil if no applicable.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/base.el.gz
;;; HEADERS/DOC
;;
;; Targets and projects are often associated with other files, such as
;; header files, documentation files and the like.  Have strong
;; associations can make useful user commands to quickly navigate
;; between the files based on their associations.
;;
(defun ede-header-file ()
  "Return the header file for the current buffer.
Not all buffers need headers, so return nil if no applicable."
  (if ede-object
      (ede-buffer-header-file ede-object (current-buffer))
    nil))