Browse Source

Bugfix call to lists:member/2 in ulist/2

Change from lists:is_member/2 to lists:member/2, since the former
doesn't exist (the bug only affects rebar_plugins).
pull/3/head
Klas Johansson 15 years ago
parent
commit
4dae6318aa
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/rebar_core.erl

+ 1
- 1
src/rebar_core.erl View File

@ -462,7 +462,7 @@ ulist(L) ->
ulist([], Acc) ->
lists:reverse(Acc);
ulist([H | T], Acc) ->
case lists:is_member(H, Acc) of
case lists:member(H, Acc) of
true ->
ulist(T, Acc);
false ->

Loading…
Cancel
Save