Function: ffap-accept-or-reject-p
ffap-accept-or-reject-p is a byte-compiled function defined in
ffap.el.gz.
Signature
(ffap-accept-or-reject-p SYMBOL)
Documentation
Return non-nil if SYMBOL is accept or reject.
Otherwise, return nil. This is intended for use as the predicate in the :safe property of user options.
Source Code
;; Defined in /usr/src/emacs/lisp/ffap.el.gz
;;; Machines (`ffap-machine-p'):
(defun ffap-accept-or-reject-p (symbol)
"Return non-nil if SYMBOL is `accept' or `reject'.
Otherwise, return nil. This is intended for use as the
predicate in the `:safe' property of user options."
(memq symbol '(accept reject)))