]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix character constants.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 18 Feb 2003 11:01:34 +0000 (11:01 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 18 Feb 2003 11:01:34 +0000 (11:01 +0000)
lisp/emacs-lisp/edebug.el

index 77c4244d8fe15efa570cc4bb24bf586a77f9271f..6877437a22dc56ccc98370bfb4499c076d5f0f93 100644 (file)
@@ -2093,9 +2093,9 @@ expressions; a `progn' form will be returned enclosing these forms."
 (def-edebug-spec edebug-\` (def-form))
 
 ;; Assume immediate quote in unquotes mean backquote at next higher level.
-(def-edebug-spec , (&or ("quote" edebug-`) def-form))
+(def-edebug-spec , (&or ("quote" edebug-\`) def-form))
 (def-edebug-spec ,@ (&define  ;; so (,@ form) is never wrapped.
-                    &or ("quote" edebug-`) def-form))
+                    &or ("quote" edebug-\`) def-form))
 
 ;; New byte compiler.
 (def-edebug-spec defsubst defun)