summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2007-08-23 18:39:20 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2007-08-23 18:39:20 +0000
commit727fb8cc41be87934552338dda6afa23aecb1bc0 (patch)
treec0730bf18f4265a1c5a487997cae89de6892288c /lisp/emacs-lisp
parent2fa9dc2f3a2ac7a023d570f7756cf05a22f80b62 (diff)
downloademacs-727fb8cc41be87934552338dda6afa23aecb1bc0.tar.gz
emacs-727fb8cc41be87934552338dda6afa23aecb1bc0.tar.bz2
emacs-727fb8cc41be87934552338dda6afa23aecb1bc0.zip
(backquote-unquote-symbol, backquote-splice-symbol):
Backslash the , and ,@ which are not new-style unquotes.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/backquote.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/backquote.el b/lisp/emacs-lisp/backquote.el
index 8b966f51626..a2a929d9601 100644
--- a/lisp/emacs-lisp/backquote.el
+++ b/lisp/emacs-lisp/backquote.el
@@ -85,10 +85,10 @@ For example (backquote-list* 'a 'b 'c) => (a b . c)"
(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