Mercurial > emacs
changeset 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 | 2c2adcbee8a6 |
children | 1ef9a1ca49c1 |
files | lisp/mail/ChangeLog.pmail lisp/mail/pmaildesc.el |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mail/ChangeLog.pmail Tue Sep 02 11:45:08 2008 +0000 +++ b/lisp/mail/ChangeLog.pmail Tue Sep 02 11:52:45 2008 +0000 @@ -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:
--- 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)))