Any tips on fixing the emacs error "old-style backquotes detected"?
I'm sure the error is coming from some ancient lisp code I wrote.
Thanks.
Are you using the old code with an old or a recent Emacs version (or both)? If you do not need the old backquotes-style code then just replace it with the current style. The Elisp manual tells you how to use backquote.
In general, in the old style:
,...
and ,@...
was handled like a function: (,...)
and (,@...)
.Example with new syntax:
`(foo ,bar ,@toto)
Example with old syntax:
(` (foo (, bar) (,@ toto)))
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With