[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: non quoted arguements



    From: bright@ENH.NIST.GOV
    Subject: non quoted arguements
    
    How does one write a function/macro/anything to return the input, like the
    old nlambdas and fexpers used to do?    

If I understand you correctly, you have to use a macro.  Here's one:

(defmacro track-it (sym)
  `(progn (push ',sym *all-new-names*)
          ,sym))