(edebug-make-enter-wrapper): Correct

invalid translation of old-style backquote syntax to new syntax.
This commit is contained in:
Gerd Moellmann 1999-11-29 15:34:47 +00:00
parent e8fe7d390d
commit ebb4159cf0
2 changed files with 9 additions and 3 deletions

View file

@ -1231,9 +1231,10 @@ This controls how we read comma constructs.")
`(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))
))