diff options
author | Timo Sirainen <cras@irssi.org> | 2002-02-15 09:22:35 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2002-02-15 09:22:35 +0000 |
commit | 6eaf1611993c610a87ca661f5a837f372e46b6fb (patch) | |
tree | 0459b99e8901a3e720f2c1942e39eab47b7078a5 /src/fe-text/textbuffer.c | |
parent | fcc61f2382cc930b3342bea488203d76bc2bbd79 (diff) | |
download | irssi-6eaf1611993c610a87ca661f5a837f372e46b6fb.zip |
/LAST -before didn't print the separators.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2446 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-text/textbuffer.c')
-rw-r--r-- | src/fe-text/textbuffer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fe-text/textbuffer.c b/src/fe-text/textbuffer.c index 8ac8bf00..ee11aa67 100644 --- a/src/fe-text/textbuffer.c +++ b/src/fe-text/textbuffer.c @@ -518,7 +518,8 @@ GList *textbuffer_find_text(TEXT_BUFFER_REC *buffer, LINE_REC *startline, textbuffer_line_ref(line); matches = g_list_append(matches, line); - if (!line_matched && --match_after == 0) + if ((!line_matched && --match_after == 0) || + (line_matched && match_after == 0 && before > 0)) matches = g_list_append(matches, NULL); } } |