Function: woman-not-member

woman-not-member is a byte-compiled function defined in woman.el.gz.

Signature

(woman-not-member DIR PATH)

Documentation

Return t if DIR is not a member of the list PATH, nil otherwise.

If DIR is . it is first replaced by the current directory.

Source Code

;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defsubst woman-not-member (dir path)
  "Return t if DIR is not a member of the list PATH, nil otherwise.
If DIR is `.' it is first replaced by the current directory."
  (not (member dir path)))