Function: org-not-nil
org-not-nil is a byte-compiled function defined in org-macs.el.gz.
Signature
(org-not-nil V)
Documentation
If V not nil, and also not the string "nil", then return V.
Otherwise return nil.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-macs.el.gz
(defun org-not-nil (v)
"If V not nil, and also not the string \"nil\", then return V.
Otherwise return nil."
(and v (not (equal v "nil")) v))