summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ataxic.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ataxic.erl b/src/ataxic.erl
index 09613f7..8f91696 100644
--- a/src/ataxic.erl
+++ b/src/ataxic.erl
@@ -159,7 +159,7 @@ basic_apply_to (#neg{ param = V }, Val) ->
not basic_apply_to(V, Val);
basic_apply_to (#list_cons{ param = V }, Val) ->
- [V|Val].
+ [basic_apply_to(V, Val)|Val].
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% EXPORTED FUNCTIONS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%