Journal output lines instead of chunks

Output often arrives in chunks other than lines.  Hard to read in the
journal.  Delay journalling until we got a full line or our buffer is
exhausted.  This is less precise, but it'll do for now.
This commit is contained in:
Markus Armbruster 2008-07-30 08:26:34 -04:00
parent 9398627ec4
commit 321d6d74c7
3 changed files with 32 additions and 6 deletions

View file

@ -42,7 +42,7 @@ int journal_reopen(void);
void journal_login(void);
void journal_logout(void);
void journal_prng(unsigned);
void journal_output(struct player *, int, char *);
void journal_output(struct player *, char *);
void journal_input(char *);
void journal_command(char *);
void journal_update(int);