invalid translation of old-style backquote syntax to new syntax.
+1999-11-29 Gerd Moellmann <gerd@gnu.org>
+
+ * emacs-lisp/edebug.el (edebug-make-enter-wrapper): Correct
+ invalid translation of old-style backquote syntax to new syntax.
+
1999-11-28 Eli Zaretskii <eliz@is.elta.co.il>
* Makefile (DONTCOMPILE): Add term/internal.el.
`(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))
))