diff options
author | Gerd Moellmann <gerd@gnu.org> | 1999-11-29 15:34:47 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 1999-11-29 15:34:47 +0000 |
commit | ebb4159cf0f320a0ba847b5f74f9ffcb40982ea7 (patch) | |
tree | d739cbbbdf9554b38a01ae9e4d3afb8c00303dd4 /lisp/emacs-lisp | |
parent | e8fe7d390d032b1b6ceaffacdb4ed5234907dd56 (diff) | |
download | emacs-ebb4159cf0f320a0ba847b5f74f9ffcb40982ea7.tar.gz emacs-ebb4159cf0f320a0ba847b5f74f9ffcb40982ea7.tar.bz2 emacs-ebb4159cf0f320a0ba847b5f74f9ffcb40982ea7.zip |
(edebug-make-enter-wrapper): Correct
invalid translation of old-style backquote syntax to new syntax.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/edebug.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el index ba53427c1e4..44df428d068 100644 --- a/lisp/emacs-lisp/edebug.el +++ b/lisp/emacs-lisp/edebug.el @@ -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)) )) |