* mail/pmaildesc.el (pmail-desc-get-match-index):
Fix malformed let binding.
This commit is contained in:
parent
afed25840b
commit
2e2da3d5a2
2 changed files with 6 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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)))
|
||||
|
|
Loading…
Add table
Reference in a new issue