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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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:
Example with old syntax: