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).
This commit is contained in:
Klas Johansson 2010-06-19 10:08:34 +02:00
parent b5d6fed2f6
commit 4dae6318aa

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 ->