Function: doctor-fixup
doctor-fixup is a byte-compiled function defined in doctor.el.gz.
Signature
(doctor-fixup SENT)
Source Code
;; Defined in /usr/src/emacs/lisp/play/doctor.el.gz
(defun doctor-fixup (sent)
(setq sent (append
(cdr
(assq (car sent)
(append
'((me i)
(him he)
(her she)
(them they)
(okay)
(well)
(sigh)
(hmm)
(hmmm)
(hmmmm)
(hmmmmm)
(gee)
(sure)
(great)
(oh)
(fine)
(ok)
(no))
(list (list (car sent)
(car sent))))))
(cdr sent)))
(doctor-fix-2 sent))