s/return (foo)/return foo/

This commit is contained in:
Akim Demaille
2000-03-31 14:27:06 +00:00
parent a0f6b07611
commit 3628146521
14 changed files with 113 additions and 92 deletions

View File

@@ -353,7 +353,7 @@ get_state (int symbol)
state_table[key] = sp = new_state(symbol);
}
return (sp->number);
return sp->number;
}
@@ -394,7 +394,7 @@ new_state (int symbol)
nstates++;
return (p);
return p;
}