summaryrefslogtreecommitdiff
path: root/lib/parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/parser.c')
-rw-r--r--lib/parser.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/parser.c b/lib/parser.c
index cf2eab3..e5061a7 100644
--- a/lib/parser.c
+++ b/lib/parser.c
@@ -229,8 +229,7 @@ void parse_line(char *line)
while (pileop_pos) {
op = pop_op();
if (op == '(')
- exception(-1,
- _("Parse error: too much left parenthesis"));
+ exception(-1, _("Parse error: too much left parenthesis"));
act_pile(get_func(op));
}
popcontext();
@@ -240,8 +239,7 @@ void parse_line(char *line)
/* Fin de parenthese (Appel de fonction ou expression mathématique) */
while (1) {
if (!pileop_pos)
- exception(-1,
- _("Parse error: too much right parenthesis"));
+ exception(-1, _("Parse error: too much right parenthesis"));
op = pop_op();
if (((op & 127) == '('))
break;
@@ -261,8 +259,7 @@ void parse_line(char *line)
/* Fin d'opérateur de décalage */
while (1) {
if (!pileop_pos)
- exception(-1,
- _("Parse error: too much right parenthesis"));
+ exception(-1, _("Parse error: too much right parenthesis"));
op = pop_op();
if (((op & 127) == '['))
break;