Function: tabulated-list-header-overlay-p

tabulated-list-header-overlay-p is a byte-compiled function defined in tabulated-list.el.gz.

Signature

(tabulated-list-header-overlay-p &optional POS)

Documentation

Return non-nil if there is a fake header.

Optional arg POS is a buffer position where to look for a fake header; defaults to point-min.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/tabulated-list.el.gz
(defsubst tabulated-list-header-overlay-p (&optional pos)
  "Return non-nil if there is a fake header.
Optional arg POS is a buffer position where to look for a fake header;
defaults to `point-min'."
  (seq-find (lambda (o) (overlay-get o 'fake-header))
            (overlays-at (or pos (point-min)))))