Skip to content

Commit

Permalink
Update export-existence-tests.lisp
Browse files Browse the repository at this point in the history
  • Loading branch information
artnie authored Jun 21, 2023
1 parent f15417f commit 7932edb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
(defun node-tree->formatted-tree (node &optional (depth 2))
"`depth' can be set to -1 to generate the whole tree."
(when node
(list (tt-export::format-node (tt-export::node->designator node))
(list (tt-export::format-node node)
(unless (= depth 0)
(mapcar (alexandria:rcurry #'node-tree->formatted-tree (- depth 1))
(tt-export::node-children node))))))
Expand Down

0 comments on commit 7932edb

Please sign in to comment.