help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: Old style backquotes warning


From: Ed Reingold
Subject: Re: Old style backquotes warning
Date: Fri, 18 Mar 2011 14:35:05 -0700 (PDT)
User-agent: G2/1.0

On Mar 18, 3:51 pm, "Drew Adams" <drew.ad...@oracle.com> wrote:
> > old backquotes detected.  How do I fix the macro?
>
> > (defmacro squash (month day year time &optional court)
> >   (backquote
> >    (squash-internal (, month) (, day) (, year) (quote (, time))
> >                     (, court))))
>
> (defmacro squash (m d y t &optional c)
>   `(squash-internal ,m ,d ,y ',t ,c))

Thanks, that does it!


reply via email to

[Prev in Thread] Current Thread [Next in Thread]