Thanks for the pointer to the repo. I figured out I can do what I want in a 
couple of ways, using either ident or bindSym as follows:
    
    
    result.add newPar(newCall(ident"toTable", tbl1),
                        newCall(ident"toTable", tbl2))
    
    
    Run

or
    
    
    result.add newPar(newCall(bindSym"toTable", tbl1),
                        newCall(bindSym"toTable", tbl2))
    
    
    Run

Are these the preferred idioms? What's the practical difference between ident 
and bindSym? Several notes in the macros manual seem to suggest ident is 
deprecated. Is that correct?

Reply via email to