From: lisp linux
Subject: with-unique-names choices
Date: 
Message-ID: <ctqdnfGp8t6dJuvanZ2dnUVZ_uqvnZ2d@comcast.com>
Hi

While looking for something, I found that the unique names macro is 
defined in eight different libs among the libs *I have* downloaded.

alexandria/macros.lisp:(defmacro with-unique-names (names &body forms)
arnesi/src/one-liners.lisp:(defmacro with-unique-names ((&rest bindings) 
&body body)
cffi/src/utils.lisp:(defmacro with-unique-names (symbols &body body)
cl-ppcre/util.lisp:(defmacro with-unique-names ((&rest bindings) &body body)
cl-utilities/with-unique-names.lisp:(defmacro with-unique-names ((&rest 
bindings) &body body)
drakma/util.lisp:(defmacro with-unique-names ((&rest bindings) &body body)
flexi-streams/util.lisp:(defmacro with-unique-names ((&rest bindings) 
&body body)
hunchentoot/util.lisp:(defmacro with-unique-names ((&rest bindings) 
&body body)

I do not know what action is needed if any :)

I have a related usage question that I'll ask in a separate thread.

-Antony