* mail/pmaildesc.el (pmail-desc-get-match-index):

Fix malformed let binding.
This commit is contained in:
Juanma Barranquero 2008-09-02 11:52:45 +00:00
parent afed25840b
commit 2e2da3d5a2
2 changed files with 6 additions and 1 deletions

View file

@ -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:

View file

@ -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)))