diff options
author | James Booth <boothj5@gmail.com> | 2013-07-11 23:03:20 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2013-07-11 23:03:20 +0100 |
commit | 5233000498a30c61b22f68ac34ff10d60815f979 (patch) | |
tree | 07e5ebda65f77922d1fc0e5912bf9e21aae9e718 /src/tools | |
parent | 36265dde2fd70f994bc8ee2b2cdff9a398ceff1d (diff) | |
download | profani-tty-5233000498a30c61b22f68ac34ff10d60815f979.tar.gz |
Removed if clause in parser
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/parser.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/tools/parser.c b/src/tools/parser.c index c3190a96..96c56628 100644 --- a/src/tools/parser.c +++ b/src/tools/parser.c @@ -205,8 +205,6 @@ parse_args_with_freetext(const char * const inp, int min, int max) token_start = ©[i+1]; } else { token_start = ©[i]; - } - if (copy[i] != '"') { token_size++; } } |