aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/lisp/emacs-lisp/cl-macs-tests.el9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/lisp/emacs-lisp/cl-macs-tests.el b/test/lisp/emacs-lisp/cl-macs-tests.el
index 24bbad0cc6b..29ae95e2771 100644
--- a/test/lisp/emacs-lisp/cl-macs-tests.el
+++ b/test/lisp/emacs-lisp/cl-macs-tests.el
@@ -601,4 +601,13 @@ collection clause."
601 collect y into result1 601 collect y into result1
602 finally return (equal (nreverse result) result1)))) 602 finally return (equal (nreverse result) result1))))
603 603
604(ert-deftest cl-macs-aux-edebug ()
605 "Check that Bug#40431 is fixed."
606 (with-temp-buffer
607 (prin1 '(cl-defun cl-macs-aux-edebug-test-fun (&aux ((a . b) '(1 . 2)))
608 (list a b))
609 (current-buffer))
610 ;; Just make sure the function can be instrumented.
611 (edebug-defun)))
612
604;;; cl-macs-tests.el ends here 613;;; cl-macs-tests.el ends here