Increased ABI version

This commit is contained in:
isundil 2016-04-30 18:26:26 +00:00
commit b63339af89
2 changed files with 2 additions and 3 deletions

View file

@ -6,7 +6,7 @@
#define IRSSI_GLOBAL_CONFIG "irssi.conf" /* config file name in /etc/ */
#define IRSSI_HOME_CONFIG "config" /* config file name in ~/.irssi/ */
#define IRSSI_ABI_VERSION 3
#define IRSSI_ABI_VERSION 4
#define DEFAULT_SERVER_ADD_PORT 6667

View file

@ -218,8 +218,7 @@ static int hilight_match_text(HILIGHT_REC *rec, const char *text,
match = rec->fullword ?
strstr_full(text, rec->text) :
strstr(text, rec->text);
}
else {
} else {
match = rec->fullword ?
stristr_full(text, rec->text) :
stristr(text, rec->text);