mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 03:40:16 +02:00
toupper(), tolower(), isspace(), is..etc..() aren't safe with chars in some
systems, use our own is_...() functions now instead. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2348 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
820c9d3d82
commit
f4897860b5
35 changed files with 112 additions and 95 deletions
|
|
@ -41,7 +41,7 @@ static int last_want_space, last_line_pos;
|
|||
((c) == ',')
|
||||
|
||||
#define isseparator(c) \
|
||||
(isspace((int) (c)) || isseparator_notspace(c))
|
||||
(i_isspace(c) || isseparator_notspace(c))
|
||||
|
||||
void chat_completion_init(void);
|
||||
void chat_completion_deinit(void);
|
||||
|
|
@ -489,7 +489,7 @@ static char *line_get_command(const char *line, char **args, int aliases)
|
|||
} else {
|
||||
checkcmd = g_strndup(line, (int) (ptr-line));
|
||||
|
||||
while (isspace(*ptr)) ptr++;
|
||||
while (i_isspace(*ptr)) ptr++;
|
||||
cmdargs = ptr;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue