mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
Increased ABI version
This commit is contained in:
parent
e7a18759ec
commit
b63339af89
2 changed files with 2 additions and 3 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue