Function: bs--make-header-match-string

bs--make-header-match-string is a byte-compiled function defined in bs.el.gz.

Signature

(bs--make-header-match-string)

Documentation

Return a regexp matching the first line of a Buffer Selection Menu buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/bs.el.gz
(defun bs--make-header-match-string ()
  "Return a regexp matching the first line of a Buffer Selection Menu buffer."
  (concat "^\\("
          (apply #'concat (mapcan (lambda (e)
                                    (and (not (equal (car e) ""))
                                         (list " *" (car e))))
                                  bs-attributes-list))
          " *$\\)"))