(edebug-make-enter-wrapper): Correct
invalid translation of old-style backquote syntax to new syntax.
This commit is contained in:
parent
e8fe7d390d
commit
ebb4159cf0
2 changed files with 9 additions and 3 deletions
|
@ -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))
|
||||
))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue