summaryrefslogtreecommitdiff
path: root/src/rebar_prv_xref.erl
diff options
context:
space:
mode:
authorBrujo Benavides <elbrujohalcon@inaka.net>2016-09-28 19:32:22 -0300
committerBrujo Benavides <elbrujohalcon@inaka.net>2016-09-28 19:32:22 -0300
commit3f0e56d9c8c6da6c304543e47ff83e101aabf847 (patch)
tree1558c0469c82a7caf94c3e607f8dfb98804d7319 /src/rebar_prv_xref.erl
parenta40fe42d906fde0be0534b6c6acf7e5868860357 (diff)
Add support for behaviors, and not just behaviours
Diffstat (limited to 'src/rebar_prv_xref.erl')
-rw-r--r--src/rebar_prv_xref.erl3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rebar_prv_xref.erl b/src/rebar_prv_xref.erl
index 45badd3..3d74c9a 100644
--- a/src/rebar_prv_xref.erl
+++ b/src/rebar_prv_xref.erl
@@ -165,7 +165,8 @@ keyall(Key, List) ->
lists:flatmap(fun({K, L}) when Key =:= K -> L; (_) -> [] end, List).
get_behaviour_callbacks(exports_not_used, Attributes) ->
- [B:behaviour_info(callbacks) || B <- keyall(behaviour, Attributes)];
+ [B:behaviour_info(callbacks) || B <- keyall(behaviour, Attributes) ++
+ keyall(behavior, Attributes)];
get_behaviour_callbacks(_XrefCheck, _Attributes) ->
[].