changeset 26648:2cca1ed12a51

(edebug-make-enter-wrapper): Correct invalid translation of old-style backquote syntax to new syntax.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 29 Nov 1999 15:30:32 +0000
parents b00a81cd0f6e
children 2459de5485a0
files lisp/emacs-lisp/edebug.el
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emacs-lisp/edebug.el	Mon Nov 29 01:31:47 1999 +0000
+++ b/lisp/emacs-lisp/edebug.el	Mon Nov 29 15:30:32 1999 +0000
@@ -1231,9 +1231,10 @@
   `(edebug-enter
     (quote ,edebug-def-name)
     ,(if edebug-inside-func  
-	 `(list (;; Doesn't work with more than one def-body!!
-		 ;; But the list will just be reversed.
-		 ,@(nreverse edebug-def-args)))
+	 `(list
+	   ;; Doesn't work with more than one def-body!!
+	   ;; But the list will just be reversed.
+	   ,@(nreverse edebug-def-args))
        'nil)
     (function (lambda () ,@forms))
     ))