This commit introduces a regression:
* 2009-09-02 Stas Boukarev stassats@gmail.com | | * swank-lispworks.lisp (replace-strings-with-symbols): New | function for recursively interning and replacing strings in a | list. (arglist): Replace all strings in arglists with symbols.
For a test case, consider what LW returns for
(function-lambda-list 'with-foo)
for a definition like
(defmacro with-foo ((var . args) &body body) `(let ((,var ,@args)) ,@body))
-- Madhu