trailing newlines

This commit is contained in:
dzaima 2021-07-20 22:18:37 +03:00
parent d4d4521e52
commit 7ee8d642dc
7 changed files with 10 additions and 11 deletions

2
cc.bqn
View File

@ -47,7 +47,7 @@ RT ← {
CArg {J (¯5𝕩˙) FLines "c.bqn"} CArg {J (¯5𝕩˙) FLines "c.bqn"}
SVG {"Modify←GetHighlights←⊢⋄" FChars".bqn"¨ "../svg"𝕩} SVG {"Modify←GetHighlights←⊢⋄" FChars".bqn"¨ "../svg"𝕩}
•Out(¬return) ("r""r0""r1""c""cc""f""e""p") (@+10)˜ •Out(¬return) ("r""r0""r1""c""cc""f""e""p")
RT2, RT0, RT1 RT2, RT0, RT1
{𝕩LFC CArg "⟨""⟩"«","¨'"'(˜)¨glyphs} {𝕩LFC CArg "⟨""⟩"«","¨'"'(˜)¨glyphs}
{𝕩LFC "{""}"˜CArg"𝕩"} {𝕩LFC "{""}"˜CArg"𝕩"}

View File

@ -586,4 +586,3 @@ NOINLINE void printAllocStats() {
return x; return x;
} }
#endif #endif

View File

@ -569,11 +569,11 @@ B evalBC(Block* bl, Body* b, Scope* sc) { // doesn't consume
} }
case DFND: { case DFND: {
GS_UPD;POS_UPD; GS_UPD;POS_UPD;
Block* bl = blocks[*bc++]; Block* cbl = blocks[*bc++];
switch(bl->ty) { default: UD; switch(cbl->ty) { default: UD;
case 0: ADD(m_funBlock(bl, sc)); break; case 0: ADD(m_funBlock(cbl, sc)); break;
case 1: ADD(m_md1Block(bl, sc)); break; case 1: ADD(m_md1Block(cbl, sc)); break;
case 2: ADD(m_md2Block(bl, sc)); break; case 2: ADD(m_md2Block(cbl, sc)); break;
} }
break; break;
} }