mirror of
1
0
Fork 0

Removed some whitespace

This commit is contained in:
Tristan B. Kildaire 2020-05-05 21:26:42 +02:00
parent 2f2a0e4aaa
commit aa2aa107b8
1 changed files with 1 additions and 7 deletions

View File

@ -76,8 +76,6 @@ void redraw(struct Session* session)
output(seq, 3); output(seq, 3);
i++; i++;
} }
} }
void newEditor(struct Session* session) void newEditor(struct Session* session)
@ -188,9 +186,6 @@ void newEditor(struct Session* session)
// output(l, strlen(l)); // output(l, strlen(l));
// output(&s, 1); // output(&s, 1);
/* Redraw */ /* Redraw */
redraw(session); redraw(session);
} }
@ -198,7 +193,6 @@ void newEditor(struct Session* session)
char* bye = "\nBye mate!\n"; char* bye = "\nBye mate!\n";
output(bye, strlen(bye)); output(bye, strlen(bye));
/* Restore tty settings */ /* Restore tty settings */
stopTTY(); stopTTY();
} }