On Tue, Jan 03, 2017 at 07:52:34AM +0100, Alexander Burger wrote: > (match (append '(@A) (chop Varstring) '(@B)) ...
BTW, better is perhaps (match (cons '@A (conc (chop Varstring) '(@B))) ... because 'append' unnecessarily copies the list just built by 'chop'. 'conc' avoids that garbage. Not critical though ;) ♪♫ Alex -- UNSUBSCRIBE: mailto:[email protected]?subject=Unsubscribe
