Function: doctor-nounp
doctor-nounp is a byte-compiled function defined in doctor.el.gz.
Signature
(doctor-nounp X)
Documentation
Return non-nil if the symbol argument is a noun.
Source Code
;; Defined in /usr/src/emacs/lisp/play/doctor.el.gz
(defun doctor-nounp (x)
"Return non-nil if the symbol argument is a noun."
(or (doctor-pronounp x)
(not (or (doctor-verbp x)
(equal x 'not)
(doctor-prepp x)
(doctor-modifierp x) )) ))