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

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

bug#31840: and-let* expands to if instead of when


From: Jonas Bernoulli
Subject: bug#31840: 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))))





reply via email to

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