From 2fa40b763fff7e284ce7839fd9044b3395492550 Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Sun, 6 Mar 2022 22:29:37 -0500 Subject: [PATCH] FIX typo --- local/lib/dag/dag.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local/lib/dag/dag.el b/local/lib/dag/dag.el index 11f0ced..0d5b41b 100644 --- a/local/lib/dag/dag.el +++ b/local/lib/dag/dag.el @@ -398,7 +398,7 @@ Return a DAG object." (if (not (or to-remove to-insert)) dag (-let* ((to-remove* (-difference to-remove (-map #'car to-insert))) ((&plist :adjlist a :broken-edges b) dag) - ((a* b*) (dag--adjlist-remove-nodes to-remove a b)) + ((a* b*) (dag--adjlist-remove-nodes to-remove* a b)) ((a** b**) (dag--adjlist-insert-nodes to-insert a* b*))) (dag--create a** b**))))