Fix malformed let binding.
+2008-09-02 Juanma Barranquero <lekktu@gmail.com>
+
+ * mail/pmaildesc.el (pmail-desc-get-match-index):
+ Fix malformed let binding.
+
2008-09-01 Paul Reilly <pmr@pajato.com>
* mbox-changes/rmail.el.changes:
"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)))