diff options
author | LemonBoy <thatlemon@gmail.com> | 2016-06-19 21:08:25 +0200 |
---|---|---|
committer | Ailin Nemui <ailin@z30a.localdomain> | 2017-01-02 17:50:14 +0100 |
commit | 5eaead761f1812fb9d4058b2bc38468521794693 (patch) | |
tree | a0ea2c1990bedbcb91cb5cb267df3ceef48c31b7 /src/fe-text | |
parent | 3fcd3cd2b9fae07a0b7cd3e5ba91049f19cc6501 (diff) | |
download | irssi-5eaead761f1812fb9d4058b2bc38468521794693.zip |
Rebase against master.
Diffstat (limited to 'src/fe-text')
-rw-r--r-- | src/fe-text/textbuffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-text/textbuffer.c b/src/fe-text/textbuffer.c index 7d0806d1..f35848a2 100644 --- a/src/fe-text/textbuffer.c +++ b/src/fe-text/textbuffer.c @@ -570,7 +570,7 @@ GList *textbuffer_find_text(TEXT_BUFFER_REC *buffer, LINE_REC *startline, textbuffer_line2text(line, FALSE, str); if (line_matched) { - line_matched = regexp ? + line_matched = regexp ? g_regex_match(preg, str->str, 0, NULL) : match_func(str->str, text) != NULL; } |