# HG changeset patch # User Stefan Monnier # Date 1187894360 0 # Node ID a5611e4218bfcbfd5a064af95b726d1bebeaf29f # Parent b917d8c56ccaf92d05a1df492f5e6c0455b0c680 (backquote-unquote-symbol, backquote-splice-symbol): Backslash the , and ,@ which are not new-style unquotes. diff -r b917d8c56cca -r a5611e4218bf lisp/emacs-lisp/backquote.el --- a/lisp/emacs-lisp/backquote.el Thu Aug 23 18:38:33 2007 +0000 +++ b/lisp/emacs-lisp/backquote.el Thu Aug 23 18:39:20 2007 +0000 @@ -85,10 +85,10 @@ (defconst backquote-backquote-symbol '\` "Symbol used to represent a backquote or nested backquote.") -(defconst backquote-unquote-symbol ', +(defconst backquote-unquote-symbol '\, "Symbol used to represent an unquote inside a backquote.") -(defconst backquote-splice-symbol ',@ +(defconst backquote-splice-symbol '\,@ "Symbol used to represent a splice inside a backquote.") ;;;###autoload