line-tree 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/line-tree.rb +1 -1
- metadata +1 -1
data/lib/line-tree.rb
CHANGED
@@ -36,7 +36,6 @@ class LineTree
|
|
36
36
|
indent, xr = build_branch(a, new_a, cur_indent, prev_indent, x, history )
|
37
37
|
|
38
38
|
if xr then
|
39
|
-
history.pop
|
40
39
|
cur_indent, xr = build_branch(a, history[-1] || new_a, indent, prev_indent, xr, history )
|
41
40
|
return [cur_indent, xr] if xr
|
42
41
|
end
|
@@ -59,6 +58,7 @@ class LineTree
|
|
59
58
|
build_tree(a, new_inner_a, cur_indent, history)
|
60
59
|
else
|
61
60
|
# revert to the earlier new_a
|
61
|
+
history.pop unless history.length <= 1
|
62
62
|
return [cur_indent, x]
|
63
63
|
end
|
64
64
|
end
|