Function: org-agenda-filter-hide-line

org-agenda-filter-hide-line is a byte-compiled function defined in org-agenda.el.gz.

Signature

(org-agenda-filter-hide-line TYPE)

Documentation

If current line is TYPE, hide it in the agenda buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defun org-agenda-filter-hide-line (type)
  "If current line is TYPE, hide it in the agenda buffer."
  (let* (buffer-invisibility-spec
         (beg (max (point-min) (1- (line-beginning-position))))
         (end (line-end-position)))
    (let ((inhibit-read-only t))
      (add-text-properties
       beg end `(invisible org-filtered org-filter-type ,type)))))