diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2014-01-13 16:09:01 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2014-01-13 16:09:01 +0100 |
commit | 31e1b28c9070f19ed6b58cd62d68db3668798818 (patch) | |
tree | 9134c161a50b0792d5854193725b048c5334b0a0 /src/core/wee-string.c | |
parent | a8bb074fe714d62c43b68448dc809dba2c062850 (diff) | |
download | weechat-31e1b28c9070f19ed6b58cd62d68db3668798818.zip |
core: fix typo in /help weechat.look.highlight_regex
Diffstat (limited to 'src/core/wee-string.c')
-rw-r--r-- | src/core/wee-string.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/wee-string.c b/src/core/wee-string.c index b9bf36850..bfd1105f0 100644 --- a/src/core/wee-string.c +++ b/src/core/wee-string.c @@ -985,7 +985,7 @@ string_has_highlight (const char *string, const char *highlight_words) /* * Checks if a string has a highlight using a compiled regular expression (any - * match in string must be surrounded by word chars). + * match in string must be surrounded by delimiters). */ int @@ -1034,7 +1034,7 @@ string_has_highlight_regex_compiled (const char *string, regex_t *regex) /* * Checks if a string has a highlight using a regular expression (any match in - * string must be surrounded by word chars). + * string must be surrounded by delimiters). */ int |