Function: doctor-pronounp

doctor-pronounp is a byte-compiled function defined in doctor.el.gz.

Signature

(doctor-pronounp X)

Documentation

Return non-nil if the symbol argument is a pronoun.

Source Code

;; Defined in /usr/src/emacs/lisp/play/doctor.el.gz
(defun doctor-pronounp (x)
  "Return non-nil if the symbol argument is a pronoun."
  (memq x '(
	i me mine myself
	we us ours ourselves ourself
	you yours yourself yourselves
	he him himself she hers herself
	it that those this these things thing
	they them themselves theirs
	anybody everybody somebody
	anyone everyone someone
	anything something everything)))