1
0
mirror of https://github.com/irssi/irssi.git synced 2024-12-04 14:46:39 -05:00

Remove over_counter

We are no longer using over_counter for any functional purpose, so
remove it.
This commit is contained in:
Joseph Bisch 2017-04-07 08:20:28 -04:00
parent 7c86575b02
commit 405136440c
No known key found for this signature in database
GPG Key ID: CF08FAC339AB7E8E
2 changed files with 1 additions and 2 deletions

View File

@ -150,7 +150,6 @@ const char *command_history_next(WINDOW_REC *window, const char *text)
void command_history_clear_pos_func(HISTORY_REC *history, gpointer user_data)
{
history->over_counter = 0;
history->pos = NULL;
}

View File

@ -7,7 +7,7 @@ typedef struct {
char *name;
GList *list, *pos;
int lines, over_counter;
int lines;
int refcount;
} HISTORY_REC;