diff options
author | ailin-nemui <ailin-nemui@users.noreply.github.com> | 2017-06-05 10:10:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-05 10:10:38 +0200 |
commit | 00354c365187cecb9bc3ce3c3b3482e32d04729a (patch) | |
tree | 87d9746de09b748f09975f49af3b8920d620637e /src/core | |
parent | 78a390f4796a97a3624feee2728018484c8485f8 (diff) | |
download | irssi-00354c365187cecb9bc3ce3c3b3482e32d04729a.zip |
Update iregex-gregex.c
make helper functions static
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/iregex-gregex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/iregex-gregex.c b/src/core/iregex-gregex.c index 0de11e64..1a77d5b3 100644 --- a/src/core/iregex-gregex.c +++ b/src/core/iregex-gregex.c @@ -2,7 +2,7 @@ #include "iregex.h" -const gchar * +static const gchar * make_valid_utf8(const gchar *text, gboolean *free_ret) { GString *str; @@ -82,7 +82,7 @@ i_regex_match (const Regex *regex, return ret; } -gsize +static gsize strlen_pua_oddly(const char *str) { const gchar *ptr; |