summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornsensfel <SpamShield0@noot-noot.org>2019-02-08 10:46:09 +0100
committernsensfel <SpamShield0@noot-noot.org>2019-02-08 10:46:09 +0100
commit6d442f242030c20326794f915e3094d5e05edf5b (patch)
treebd227e6e5e1aa14d6d7a4c031aa8adaa7d5b68db
parent93e613bb5bbb1eb58135e68bb184c7cf6d230ad8 (diff)
Fixes list_con not using ataxic as parameter.
-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 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%