Function: bs--create-header-line

bs--create-header-line is a byte-compiled function defined in bs.el.gz.

Signature

(bs--create-header-line COL)

Documentation

Generate a line for the header.

COL is called for each column in bs-attributes-list as a function of one argument, the string heading for the column.

Source Code

;; Defined in /usr/src/emacs/lisp/bs.el.gz
(defun bs--create-header-line (col)
  "Generate a line for the header.
COL is called for each column in `bs-attributes-list' as a
function of one argument, the string heading for the column."
  (mapconcat (lambda (column)
	       (bs--format-aux (funcall col (bs--get-value (car column)))
			       (nth 3 column) ; align
			       (bs--get-value (nth 1 column))))
	     bs-attributes-list
	     ""))