Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ebb4159c
Commit
ebb4159c
authored
Nov 29, 1999
by
Gerd Moellmann
Browse files
(edebug-make-enter-wrapper): Correct
invalid translation of old-style backquote syntax to new syntax.
parent
e8fe7d39
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/emacs-lisp/edebug.el
lisp/emacs-lisp/edebug.el
+4
-3
No files found.
lisp/ChangeLog
View file @
ebb4159c
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.
...
...
lisp/emacs-lisp/edebug.el
View file @
ebb4159c
...
...
@@ -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))
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment