Mercurial > emacs
changeset 78638:a5611e4218bf
(backquote-unquote-symbol, backquote-splice-symbol):
Backslash the , and ,@ which are not new-style unquotes.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Thu, 23 Aug 2007 18:39:20 +0000 |
parents | b917d8c56cca |
children | 0c7ac1e33f19 |
files | lisp/emacs-lisp/backquote.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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