summaryrefslogtreecommitdiff
path: root/src/fe-common/irc/irc-hilight-text.c
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-06-28 21:47:13 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-06-28 21:47:13 +0000
commit95b74de316bdfa0f44cc772c620423bca117942e (patch)
tree63e97037504aae275775f10bbee42d1dc4382e03 /src/fe-common/irc/irc-hilight-text.c
parentdc22d8830d48d4eec73c4b83681166476eaa76c1 (diff)
downloadirssi-95b74de316bdfa0f44cc772c620423bca117942e.zip
/HILIGHT changed. -nick option now tells to hilight only the nick, not
the whole line. -mask option matches the text for nick mask (it didn't even work before). git-svn-id: http://svn.irssi.org/repos/irssi/trunk@391 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common/irc/irc-hilight-text.c')
-rw-r--r--src/fe-common/irc/irc-hilight-text.c35
1 files changed, 9 insertions, 26 deletions
diff --git a/src/fe-common/irc/irc-hilight-text.c b/src/fe-common/irc/irc-hilight-text.c
index da9bb258..7c8a46be 100644
--- a/src/fe-common/irc/irc-hilight-text.c
+++ b/src/fe-common/irc/irc-hilight-text.c
@@ -19,36 +19,19 @@
*/
#include "module.h"
+#include "settings.h"
#include "hilight-text.h"
-char *irc_hilight_find_nick(const char *channel, const char *nick, const char *address)
+char *irc_hilight_find_nick(const char *channel, const char *nick,
+ const char *address, int level, const char *msg)
{
- GSList *tmp;
- char *color;
- int len, best_match;
+ char *color, *mask;
- g_return_val_if_fail(channel != NULL, NULL);
- g_return_val_if_fail(nick != NULL, NULL);
- g_return_val_if_fail(address != NULL, NULL);
+ mask = g_strdup_printf("%s!%s", nick, address);
+ color = hilight_match(channel, mask, level, msg);
+ g_free(mask);
- color = NULL; best_match = 0;
- for (tmp = hilights; tmp != NULL; tmp = tmp->next) {
- HILIGHT_REC *rec = tmp->data;
-
- if (!rec->nickmask)
- continue;
-
- len = strlen(rec->text);
- if (best_match < len) {
- best_match = len;
- color = rec->color;
- }
- }
-
- if (best_match == 0)
- return NULL;
-
- if (color == NULL) color = "\00316";
- return g_strconcat(isdigit(*color) ? "\003" : "", color, NULL);
+ return color;
}
+