]> git.eshelyaron.com Git - emacs.git/commitdiff
(backquote-unquote-symbol, backquote-splice-symbol):
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 23 Aug 2007 18:39:20 +0000 (18:39 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 23 Aug 2007 18:39:20 +0000 (18:39 +0000)
Backslash the , and ,@ which are not new-style unquotes.

lisp/emacs-lisp/backquote.el

index 8b966f516260c011dc3f228d0806e8d5de6995c8..a2a929d96011c4966e88762afe8b1fd16c4e9929 100644 (file)
@@ -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