Unnecessary return
This commit is contained in:
parent
6f5b5fc36c
commit
13ec84d7ef
|
@ -237,10 +237,9 @@ parse_frag(char **side, char *s)
|
|||
{
|
||||
char c, *cap;
|
||||
while((c = *s) && c == ' ') s++;
|
||||
if(c == ')' || (c == '<' && s[1] == '>') || (c == '>' && s[1] == '<')) {
|
||||
if(c == ')' || (c == '<' && s[1] == '>') || (c == '>' && s[1] == '<'))
|
||||
*side = dict_, *dict_++ = 0;
|
||||
return s;
|
||||
} else {
|
||||
else {
|
||||
cap = walk(s), *side = dict_;
|
||||
if(c == '(')
|
||||
dict_ = copy(s + 1, dict_, cap - s - 2);
|
||||
|
|
Loading…
Reference in New Issue