Function: org-not-nil

org-not-nil is a byte-compiled function defined in org-macs.el.

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 ~/.emacs.d/elpa/org-9.8.2/org-macs.el
(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))