diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2008-06-01 22:09:12 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2008-06-01 22:09:12 +0200 |
commit | bd436db2bc061efc9821e7a5e1443ff32bd0b0d0 (patch) | |
tree | 8a152a36cc735c57434df043ec8d587d7c00f8ce /src/plugins/plugin.c | |
parent | 4fa856c77316eadd36c65a197f68422d4a8dae68 (diff) | |
download | weechat-bd436db2bc061efc9821e7a5e1443ff32bd0b0d0.zip |
Reintroduce highlight (move code from irc plugin to core)
Diffstat (limited to 'src/plugins/plugin.c')
-rw-r--r-- | src/plugins/plugin.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/plugin.c b/src/plugins/plugin.c index 33633a9ce..b3bdf8055 100644 --- a/src/plugins/plugin.c +++ b/src/plugins/plugin.c @@ -292,6 +292,7 @@ plugin_load (char *filename) new_plugin->string_replace = &string_replace; new_plugin->string_remove_quotes = &string_remove_quotes; new_plugin->string_strip = &string_strip; + new_plugin->string_has_highlight = &string_has_highlight; new_plugin->string_explode = &string_explode; new_plugin->string_free_exploded = &string_free_exploded; new_plugin->string_split_command = &string_split_command; |