Re: macroexpand-1 vs. macroexpand

2008-12-15 Thread Konrad Hinsen
On 16.12.2008, at 02:58, Mark Volkmann wrote: > I'm trying to understand the difference between these. Is it that > macros expanded by macroexpand-1 could result in calls to additional > macros that won't be expanded, but macroexpand will continue expanding > until no macro calls remain? Right.

Re: macroexpand-1 vs. macroexpand

2008-12-15 Thread Randall R Schulz
On Monday 15 December 2008 17:58, Mark Volkmann wrote: > I'm trying to understand the difference between these. Is it that > macros expanded by macroexpand-1 could result in calls to additional > macros that won't be expanded, but macroexpand will continue > expanding until no macro calls remain?

macroexpand-1 vs. macroexpand

2008-12-15 Thread Mark Volkmann
I'm trying to understand the difference between these. Is it that macros expanded by macroexpand-1 could result in calls to additional macros that won't be expanded, but macroexpand will continue expanding until no macro calls remain? It tried: (macroexpand-1 '(or (< 2 1) (< 3 2) (< 1 2))) which