Function: ewoc-get-hf

ewoc-get-hf is a byte-compiled function defined in ewoc.el.gz.

Signature

(ewoc-get-hf EWOC)

Documentation

Return a cons cell containing the (HEADER . FOOTER) of EWOC.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/ewoc.el.gz
(defun ewoc-get-hf (ewoc)
  "Return a cons cell containing the (HEADER . FOOTER) of EWOC."
  (cons (ewoc--node-data (ewoc--header ewoc))
	(ewoc--node-data (ewoc--footer ewoc))))