diff options
author | Glenn Morris <rgm@gnu.org> | 2011-04-22 20:07:16 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-04-22 20:07:16 -0700 |
commit | 4ffd0d6b569d252e4e807d4e9c9d6a5bd5b08640 (patch) | |
tree | 26c20c7c4da56fae7e041c9345c76cce1224188c /lisp/play/doctor.el | |
parent | 81de9236e1daa1fe7dfd0ef9aaaf1e13b6aa74e4 (diff) | |
parent | be71f8100a71a5b896ef05c32f51a09a3d9e3993 (diff) | |
download | emacs-4ffd0d6b569d252e4e807d4e9c9d6a5bd5b08640.tar.gz |
Merge from emacs-23; up to 2010-06-09T17:54:28Z!albinus@detlef.
Diffstat (limited to 'lisp/play/doctor.el')
-rw-r--r-- | lisp/play/doctor.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/play/doctor.el b/lisp/play/doctor.el index 02d24afb278..54a5a4ef6c9 100644 --- a/lisp/play/doctor.el +++ b/lisp/play/doctor.el @@ -115,11 +115,11 @@ (defun doc// (x) x) (defmacro doc$ (what) - "quoted arg form of doctor-$" + "Quoted arg form of doctor-$." `(doctor-$ ',what)) (defun doctor-$ (what) - "Return the car of a list, rotating the list each time" + "Return the car of a list, rotating the list each time." (let* ((vv (symbol-value what)) (first (car vv)) (ww (append (cdr vv) (list first)))) @@ -832,7 +832,7 @@ Otherwise call the Doctor to parse preceding sentence." (newline arg))) (defun doctor-read-print nil - "top level loop" + "Top level loop." (interactive) (let ((sent (doctor-readin))) (insert "\n") @@ -850,7 +850,7 @@ Otherwise call the Doctor to parse preceding sentence." sentence)) (defun doctor-read-token () - "read one word from buffer" + "Read one word from buffer." (prog1 (intern (downcase (buffer-substring (point) (progn (forward-word 1) @@ -1020,7 +1020,7 @@ the subject noun, and return the portion of the sentence following it." nil)))) (defun doctor-nounp (x) - "Returns t if the symbol argument is a noun." + "Return t if the symbol argument is a noun." (or (doctor-pronounp x) (not (or (doctor-verbp x) (equal x 'not) @@ -1028,7 +1028,7 @@ the subject noun, and return the portion of the sentence following it." (doctor-modifierp x) )) )) (defun doctor-pronounp (x) - "Returns t if the symbol argument is a pronoun." + "Return t if the symbol argument is a pronoun." (memq x '( i me mine myself we us ours ourselves ourself |