Subject: Re: I like WHEN/UNLESS Was: Promoting CL Was: What I want from my Common   Lisp vendor and the Common Lisp community
From: Erik Naggum <erik@naggum.net>
Date: Wed, 05 Sep 2001 16:06:38 GMT
Newsgroups: comp.lang.lisp
Message-ID: <3208694796835930@naggum.net>

* Lieven Marchand <mal@wyrd.be>
> One difference is that if* gives you implicit PROGN's.

(defmacro then (&body body)
  `(progn ,@body))

(defmacro else (&body body)
  `(progn ,@body))

///