diff options
Diffstat (limited to 'src/fe-common')
-rw-r--r-- | src/fe-common/core/completion.c | 4 | ||||
-rw-r--r-- | src/fe-common/core/fe-messages.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/fe-common/core/completion.c b/src/fe-common/core/completion.c index 7a9c9ad3..be8b76c5 100644 --- a/src/fe-common/core/completion.c +++ b/src/fe-common/core/completion.c @@ -38,7 +38,7 @@ static int last_want_space, last_line_pos; ((c) == ',') #define isseparator(c) \ - (i_isspace(c) || isseparator_notspace(c)) + ((c) == ' ' || isseparator_notspace(c)) void chat_completion_init(void); void chat_completion_deinit(void); @@ -530,7 +530,7 @@ static char *line_get_command(const char *line, char **args, int aliases) } else { checkcmd = g_strndup(line, (int) (ptr-line)); - while (i_isspace(*ptr)) ptr++; + while (*ptr == ' ') ptr++; cmdargs = ptr; } diff --git a/src/fe-common/core/fe-messages.c b/src/fe-common/core/fe-messages.c index 31bbbfad..2ae6c0e1 100644 --- a/src/fe-common/core/fe-messages.c +++ b/src/fe-common/core/fe-messages.c @@ -67,7 +67,7 @@ char *expand_emphasis(WI_ITEM_REC *item, const char *text) /* check that the beginning marker starts a word, and that the matching end marker ends a word */ - if ((pos > 0 && !i_isspace(bgn[-1])) || !ishighalnum(bgn[1])) + if ((pos > 0 && bgn[-1] != ' ') || !ishighalnum(bgn[1])) continue; if ((end = strchr(bgn+1, *bgn)) == NULL) continue; |