emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#31840: closed (and-let* expands to if instead of w


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#31840: closed (and-let* expands to if instead of when)
Date: Tue, 19 Jun 2018 11:39:01 +0000

Your message dated Tue, 19 Jun 2018 07:38:44 -0400
with message-id <address@hidden>
and subject line Re: bug#31840: and-let* expands to if instead of when
has caused the debbugs.gnu.org bug report #31840,
regarding and-let* expands to if instead of when
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
31840: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=31840
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: and-let* expands to if instead of when Date: Thu, 14 Jun 2018 21:08:11 -0500 User-agent: mu4e 1.1.0; emacs 26.1.50
(and-let* ((a 'a))
  (body-1)
  (body-n))

expands to

(let* ((a (and t 'a)))
  (if a
      (body-1)
    (body-n)))

but according to its doc-string ("Like `when-let*'...")
it is supposed to expand to

(let* ((a (and t 'a)))
  (if a
      (progn
        (body-1)
        (body-n))))



--- End Message ---
--- Begin Message --- Subject: Re: bug#31840: and-let* expands to if instead of when Date: Tue, 19 Jun 2018 07:38:44 -0400
On Tue, Jun 19, 2018 at 1:52 AM, Michael Heerdegen
<address@hidden> wrote:
> Mark Oteiza <address@hidden> writes:
>
>> Oh my…  I agree, changed in 5b9cc150
>
> Thanks.
>
> I guess we can close this report.

I forgot about that part. Done.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]