From 8b740d4d9a135cdbfb6646eccf0be0e8fa56bf1d Mon Sep 17 00:00:00 2001 From: conao3 Date: Mon, 8 Apr 2019 04:48:16 +0900 Subject: [PATCH] fix indent issue --- origami.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/origami.el b/origami.el index b9667fd..a3fe538 100644 --- a/origami.el +++ b/origami.el @@ -379,11 +379,11 @@ with the current state and the current node at each iteration." (defun origami-fold-shallow-merge (tree1 tree2) "Shallow merge the children of TREE2 in to TREE1." (-reduce-from (lambda (tree node) - (origami-fold-assoc (origami-fold-find-path-containing-range tree + (origami-fold-assoc (origami-fold-find-path-containing-range tree (origami-fold-beg node) (origami-fold-end node)) (lambda (leaf) - (origami-fold-add-child leaf node)))) + (origami-fold-add-child leaf node)))) tree1 (origami-fold-children tree2))) (defun origami-fold-parent (path)