Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion conjunction.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ DYAD(amper) { V *v; A z; I xt = AT(x), yt = AT(y);
v = VAV(xt&VERB ? x : y);
z = CDERV(CAMPR, bond, bond2, x, y, VLR(v), VMR(v), VRR(v));
}
else if (xt&VERB && yt&&VERB) {
else if (xt&VERB && yt&VERB) {
v = VAV(y);
z = CDERV(CAMPR, compose, compose2, x, y, VLR(v), VMR(v), VRR(v));
}
Expand Down
2 changes: 1 addition & 1 deletion function.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef _FUNCTION_H
#define _FUNCITON_H
#define _FUNCTION_H

typedef struct _verb {
AF1 f1;
Expand Down