mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 08:32:07 +02:00
Moved nick/msg/channel completion to core with some cleanups.
Moved ignore checking to fe-ignore-messages.c. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@750 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
8c4b167327
commit
98060c3185
13 changed files with 807 additions and 807 deletions
|
|
@ -19,3 +19,6 @@ int joined:1; /* Have we even received JOIN event for this channel? */
|
|||
int left:1; /* You just left the channel */
|
||||
int kicked:1; /* You just got kicked */
|
||||
int destroying:1;
|
||||
|
||||
GSList *lastmsgs; /* List of nicks who last send message */
|
||||
GSList *lastownmsgs; /* List of nicks who last send message to you */
|
||||
|
|
|
|||
|
|
@ -41,6 +41,8 @@ time_t lag_sent; /* 0 or time when last lag query was sent to server */
|
|||
time_t lag_last_check; /* last time we checked lag */
|
||||
int lag; /* server lag in milliseconds */
|
||||
|
||||
GSList *lastmsgs; /* List of nicks who last send you msg */
|
||||
|
||||
GSList *channels;
|
||||
GSList *queries;
|
||||
|
||||
|
|
|
|||
|
|
@ -32,6 +32,11 @@ typedef struct {
|
|||
#include "server-rec.h"
|
||||
} SERVER_REC;
|
||||
|
||||
typedef struct {
|
||||
time_t time;
|
||||
char *nick;
|
||||
} LAST_MSG_REC;
|
||||
|
||||
extern GSList *servers, *lookup_servers;
|
||||
|
||||
void servers_init(void);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue