diff options
Diffstat (limited to '')
-rw-r--r-- | chat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chat.h b/chat.h index d05121f..6f2ba15 100644 --- a/chat.h +++ b/chat.h @@ -288,10 +288,10 @@ void bufferFree(struct Buffer *buffer); const struct Line *bufferSoft(const struct Buffer *buffer, size_t i); const struct Line *bufferHard(const struct Buffer *buffer, size_t i); int bufferPush( - struct Buffer *buffer, int cols, + struct Buffer *buffer, int cols, bool ignore, enum Heat heat, time_t time, const char *str ); -void bufferReflow(struct Buffer *buffer, int cols); +void bufferReflow(struct Buffer *buffer, int cols, bool ignore); enum Edit { EditHead, |