1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00

Removed if clause in parser

This commit is contained in:
James Booth 2013-07-11 23:03:20 +01:00
parent 36265dde2f
commit 5233000498

View File

@ -205,8 +205,6 @@ parse_args_with_freetext(const char * const inp, int min, int max)
token_start = &copy[i+1]; token_start = &copy[i+1];
} else { } else {
token_start = &copy[i]; token_start = &copy[i];
}
if (copy[i] != '"') {
token_size++; token_size++;
} }
} }