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: Thu, 21 Jun 2018 19:29:01 +0000

Your message dated Thu, 21 Jun 2018 21:27:44 +0200
with message-id <address@hidden>
and subject line Re: documentation: Add code of conduct section
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: documentation: Add code of conduct section Date: Thu, 21 Jun 2018 21:27:44 +0200
Sorry about the noise, restoring original state.

--- End Message ---

reply via email to

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