Skip to content

Commit

Permalink
minor notation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tavmem committed Feb 5, 2020
1 parent 1268ceb commit 66418fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vd.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ K dot(K a, K b) //NB: b can be a cheating 0-type with NULLs .. ?
//if(4==a->t)a=retrieveByHandle(a);

if(4==a->t && 4==b->t)
{ S s=(char*)malloc(2+strlen(*kS(a))+strlen(*kS(b)));
{ S s=(S)malloc(2+strlen(*kS(a))+strlen(*kS(b)));
s=strcpy(s,*kS(a)); strcat(s,"."); strcat(s,*kS(b));
R *inKtree(&kK((kK(KTREE))[0])[1],s,0); }
if(7==a->t) R vf_ex(&a,b); //Verb: "Apply" //TODO: my guess is this fails everywhere vf_ex does (derived verbs?) (|+) . (0;1) ???
Expand Down

0 comments on commit 66418fc

Please sign in to comment.