trailing newlines
ugh
This commit is contained in:
parent
7c92f500b3
commit
0eb8b37236
@ -75,4 +75,4 @@ void derv_init() {
|
|||||||
ti[t_atop].free = atop_free; ti[t_atop].print = atop_print; ti[t_atop].decompose = atop_decompose;
|
ti[t_atop].free = atop_free; ti[t_atop].print = atop_print; ti[t_atop].decompose = atop_decompose;
|
||||||
ti[t_md1_def].m1_d = m_md1D;
|
ti[t_md1_def].m1_d = m_md1D;
|
||||||
ti[t_md2_def].m2_d = m_md2D;
|
ti[t_md2_def].m2_d = m_md2D;
|
||||||
}
|
}
|
||||||
|
|||||||
2
src/h.h
2
src/h.h
@ -434,4 +434,4 @@ void arr_print(B x) {
|
|||||||
}
|
}
|
||||||
return x;
|
return x;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@ -93,4 +93,4 @@ void harr_init() {
|
|||||||
ti[t_harr].free = harr_free;
|
ti[t_harr].free = harr_free;
|
||||||
ti[t_harr].print = harr_print;
|
ti[t_harr].print = harr_print;
|
||||||
ti[t_harr].get = harr_get;
|
ti[t_harr].get = harr_get;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -58,4 +58,3 @@ void i32arr_init() {
|
|||||||
ti[t_i32arr].print = i32arr_print;
|
ti[t_i32arr].print = i32arr_print;
|
||||||
ti[t_i32arr].get = i32arr_get;
|
ti[t_i32arr].get = i32arr_get;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -164,4 +164,4 @@ int main() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|||||||
@ -101,4 +101,4 @@ void md1_init() { ba(tbl) ba(scan)
|
|||||||
|
|
||||||
#undef ba
|
#undef ba
|
||||||
#undef bd
|
#undef bd
|
||||||
#undef bm
|
#undef bm
|
||||||
|
|||||||
@ -17,4 +17,4 @@ void md2_init() { ba(val) ba(fillBy) }
|
|||||||
|
|
||||||
#undef ba
|
#undef ba
|
||||||
#undef bd
|
#undef bd
|
||||||
#undef bm
|
#undef bm
|
||||||
|
|||||||
2
src/mm.c
2
src/mm.c
@ -49,4 +49,4 @@ void mm_free(Value* x) {
|
|||||||
}
|
}
|
||||||
void mm_visit(B x) {
|
void mm_visit(B x) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -113,4 +113,4 @@ void sfns_init() { ba(shape) ba(pick) bm(ud) ba(pair) bm(fne) ba(lt) ba(rt)
|
|||||||
|
|
||||||
#undef ba
|
#undef ba
|
||||||
#undef bd
|
#undef bd
|
||||||
#undef bm
|
#undef bm
|
||||||
|
|||||||
@ -31,4 +31,4 @@ void printUTF8(u32 c) {
|
|||||||
else if (c<=0x07FF) printf("%c%c" , 0xC0| c>>6 , 0x80| (c &0x3F) );
|
else if (c<=0x07FF) printf("%c%c" , 0xC0| c>>6 , 0x80| (c &0x3F) );
|
||||||
else if (c<=0xFFFF) printf("%c%c%c" , 0xE0| c>>12, 0x80| (c>>6 &0x3F), 0x80| (c &0x3F) );
|
else if (c<=0xFFFF) printf("%c%c%c" , 0xE0| c>>12, 0x80| (c>>6 &0x3F), 0x80| (c &0x3F) );
|
||||||
else printf("%c%c%c%c", 0xF0| c>>18, 0x80| (c>>12 &0x3F), 0x80| (c>>6 &0x3F), 0x80| (c&0x3F));
|
else printf("%c%c%c%c", 0xF0| c>>18, 0x80| (c>>12 &0x3F), 0x80| (c>>6 &0x3F), 0x80| (c&0x3F));
|
||||||
}
|
}
|
||||||
|
|||||||
2
src/vm.c
2
src/vm.c
@ -464,4 +464,4 @@ void print_vmStack() {
|
|||||||
for (i32 i = 0; i < (bcDepth>>1) + 1; i++) { printf(" %d", vmStack[i]); fflush(stdout); }
|
for (i32 i = 0; i < (bcDepth>>1) + 1; i++) { printf(" %d", vmStack[i]); fflush(stdout); }
|
||||||
printf("\n"); fflush(stdout);
|
printf("\n"); fflush(stdout);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user