Skip to content

Commit

Permalink
'index_dir' now overrides subdirectories, which is useful when lookin…
Browse files Browse the repository at this point in the history
…g up references (#1459)
  • Loading branch information
shuying2244 authored Dec 21, 2023
1 parent 19cb8fe commit 5dbfa33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/els_core/src/els_utils.erl
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ do_fold_files(F, Filter, Dir, [File | Rest], Acc0) ->
Acc =
case filelib:is_regular(Path) of
true -> do_fold_file(F, Filter, Path, Acc0);
false -> Acc0
false -> do_fold_dir(F, Filter, Path, Acc0)
end,
do_fold_files(F, Filter, Dir, Rest, Acc).

Expand Down

0 comments on commit 5dbfa33

Please sign in to comment.