We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1268ceb commit 66418fcCopy full SHA for 66418fc
src/vd.c
@@ -119,7 +119,7 @@ K dot(K a, K b) //NB: b can be a cheating 0-type with NULLs .. ?
119
//if(4==a->t)a=retrieveByHandle(a);
120
121
if(4==a->t && 4==b->t)
122
- { S s=(char*)malloc(2+strlen(*kS(a))+strlen(*kS(b)));
+ { S s=(S)malloc(2+strlen(*kS(a))+strlen(*kS(b)));
123
s=strcpy(s,*kS(a)); strcat(s,"."); strcat(s,*kS(b));
124
R *inKtree(&kK((kK(KTREE))[0])[1],s,0); }
125
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) ???
0 commit comments