# HG changeset patch # User Gerd Moellmann # Date 943889432 0 # Node ID 2cca1ed12a5145b5c444761f175269242e9e97b8 # Parent b00a81cd0f6ec5f77891d45eae102e651d897ad0 (edebug-make-enter-wrapper): Correct invalid translation of old-style backquote syntax to new syntax. diff -r b00a81cd0f6e -r 2cca1ed12a51 lisp/emacs-lisp/edebug.el --- 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)) ))