diff lisp/mail/pmaildesc.el @ 97953:9a4e29eac778

* mail/pmaildesc.el (pmail-desc-get-match-index): Fix malformed let binding.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 02 Sep 2008 11:52:45 +0000
parents 92a6838937ab
children cc9bb337ef7c
line wrap: on
line diff
--- a/lisp/mail/pmaildesc.el	Tue Sep 02 11:45:08 2008 +0000
+++ b/lisp/mail/pmaildesc.el	Tue Sep 02 11:52:45 2008 +0000
@@ -370,7 +370,7 @@
   "Return the index N if the associated descriptor has a matching
 attribute, nil otherwise.  The attribute value must be set if
 SENSE is nil, or unset if SENSE is non-nil."
-  (let (flag (pmail-desc-attr-p attr-index n))
+  (let ((flag (pmail-desc-attr-p attr-index n)))
     (if (or (and flag (not sense)) (and (not flag) sense))
 	n
       nil)))