Function: org-agenda-mark-header-line

org-agenda-mark-header-line is a byte-compiled function defined in org-agenda.el.gz.

Signature

(org-agenda-mark-header-line POS)

Documentation

Mark the line at POS as an agenda structure header.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
  "The current span used in the agenda view.") ; local variable in the agenda buffer
(defun org-agenda-mark-header-line (pos)
  "Mark the line at POS as an agenda structure header."
  (save-excursion
    (goto-char pos)
    (put-text-property (line-beginning-position) (line-end-position)
		       'org-agenda-structural-header t)
    (when org-agenda-title-append
      (put-text-property (line-beginning-position) (line-end-position)
			 'org-agenda-title-append org-agenda-title-append))))