mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 23:22:16 +02:00
Changed some checks i_isspace() -> ' ' so that TAB isn't included in checks.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3130 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
9ae4779c87
commit
1826812c9d
4 changed files with 11 additions and 11 deletions
|
|
@ -146,19 +146,19 @@ static char *split_nicks(const char *cmd, char **pre, char **nicks, char **post,
|
|||
*pre = g_strdup(cmd);
|
||||
*post = *nicks = NULL;
|
||||
for (p = *pre; *p != '\0'; p++) {
|
||||
if (!i_isspace(*p))
|
||||
if (*p != ' ')
|
||||
continue;
|
||||
|
||||
if (arg == 1) {
|
||||
/* text after nicks */
|
||||
*p++ = '\0';
|
||||
while (i_isspace(*p)) p++;
|
||||
while (*p == ' ') p++;
|
||||
*post = p;
|
||||
break;
|
||||
}
|
||||
|
||||
/* find nicks */
|
||||
while (i_isspace(p[1])) p++;
|
||||
while (p[1] == ' ') p++;
|
||||
if (--arg == 1) {
|
||||
*p = '\0';
|
||||
*nicks = p+1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue