all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#31840: and-let* expands to if instead of when
@ 2018-06-15  2:08 Jonas Bernoulli
  2018-06-15  4:10 ` Michael Heerdegen
  2018-06-21 19:18 ` bug#31840: documentation: Add code of conduct section Gábor Boskovits
  0 siblings, 2 replies; 7+ messages in thread
From: Jonas Bernoulli @ 2018-06-15  2:08 UTC (permalink / raw)
  To: 31840

(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))))





^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-06-21 19:27 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-15  2:08 bug#31840: and-let* expands to if instead of when Jonas Bernoulli
2018-06-15  4:10 ` Michael Heerdegen
2018-06-19  1:30   ` Mark Oteiza
2018-06-19  5:52     ` Michael Heerdegen
2018-06-19 11:38       ` Mark Oteiza
2018-06-21 19:18 ` bug#31840: documentation: Add code of conduct section Gábor Boskovits
2018-06-21 19:27   ` Gábor Boskovits

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.