Function: org-agenda-skip-entry-if

org-agenda-skip-entry-if is a byte-compiled function defined in org-agenda.el.gz.

Signature

(org-agenda-skip-entry-if &rest CONDITIONS)

Documentation

Skip entry if any of CONDITIONS is true.

See org-agenda-skip-if for details about CONDITIONS.

This function can be put into org-agenda-skip-function for the duration of a command.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defun org-agenda-skip-entry-if (&rest conditions)
  "Skip entry if any of CONDITIONS is true.
See `org-agenda-skip-if' for details about CONDITIONS.

This function can be put into `org-agenda-skip-function' for the
duration of a command."
  (org-agenda-skip-if nil conditions))