summaryrefslogtreecommitdiff
path: root/lisp/mail
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2008-09-02 11:52:45 +0000
committerJuanma Barranquero <lekktu@gmail.com>2008-09-02 11:52:45 +0000
commit2e2da3d5a2631891308d43b6a15aedf4d2ded149 (patch)
tree34c3fbad4d038f50b30baf9152105f16ff156219 /lisp/mail
parentafed25840ba56167fbce37add83d8042a8c18b49 (diff)
downloademacs-2e2da3d5a2631891308d43b6a15aedf4d2ded149.tar.gz
* mail/pmaildesc.el (pmail-desc-get-match-index):
Fix malformed let binding.
Diffstat (limited to 'lisp/mail')
-rw-r--r--lisp/mail/ChangeLog.pmail5
-rw-r--r--lisp/mail/pmaildesc.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/mail/ChangeLog.pmail b/lisp/mail/ChangeLog.pmail
index ce079b80012..adbbd5a1a7d 100644
--- a/lisp/mail/ChangeLog.pmail
+++ b/lisp/mail/ChangeLog.pmail
@@ -1,3 +1,8 @@
+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:
diff --git a/lisp/mail/pmaildesc.el b/lisp/mail/pmaildesc.el
index f2274cc23cb..a63ea5cb207 100644
--- a/lisp/mail/pmaildesc.el
+++ b/lisp/mail/pmaildesc.el
@@ -370,7 +370,7 @@ non-null will reverse the sense of the attribute test."
"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)))