Skip to content
Snippets Groups Projects
Commit f8352d96 authored by ehuelsmann's avatar ehuelsmann
Browse files

Change function names used in DEFUN.6 and DEFUN.7: they re-used the same name as DEFUN.5.

parent 2bf5271f
No related branches found
No related tags found
No related merge requests found
......@@ -57,20 +57,20 @@
(let ((x 1))
(declare (special x))
(let ((x 2))
(defun defun-test-fun-5 (&optional (y x))
(defun defun-test-fun-6 (&optional (y x))
(declare (special x))
(values y x))
(defun-test-fun-5)))
(defun-test-fun-6)))
2 1)
(deftest defun.7
(let ((x 1))
(declare (special x))
(let ((x 2))
(defun defun-test-fun-5 (&key (y x))
(defun defun-test-fun-7 (&key (y x))
(declare (special x))
(values y x))
(defun-test-fun-5)))
(defun-test-fun-7)))
2 1)
;; Documentation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment