summaryrefslogtreecommitdiff
path: root/lisp/play/doctor.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2000-08-16 21:03:36 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2000-08-16 21:03:36 +0000
commit7382bcae29e08faa99ef275d83cd4cb31aace60a (patch)
tree8571c11d449e7cb7d51003eb64283014c3ba788c /lisp/play/doctor.el
parent7a3ec18a3cac2da58be8829807839f8f6ebaff8f (diff)
downloademacs-7382bcae29e08faa99ef275d83cd4cb31aace60a.tar.gz
*** empty log message ***
Diffstat (limited to 'lisp/play/doctor.el')
-rw-r--r--lisp/play/doctor.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/play/doctor.el b/lisp/play/doctor.el
index 64f92102313..c5ed41d9b48 100644
--- a/lisp/play/doctor.el
+++ b/lisp/play/doctor.el
@@ -947,7 +947,7 @@ Otherwise call the Doctor to parse preceding sentence."
(defun doctor-correct-spelling (sent)
"Correct the spelling and expand each word in sentence."
(if sent
- (apply 'append (mapcar '(lambda (word)
+ (apply 'append (mapcar (lambda (word)
(if (memq word typos)
(get (get word 'doctor-correction) 'doctor-expansion)
(list word)))