summaryrefslogtreecommitdiff
path: root/lib/parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/parser.c')
-rw-r--r--lib/parser.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/parser.c b/lib/parser.c
index 529516b..74a7b71 100644
--- a/lib/parser.c
+++ b/lib/parser.c
@@ -3,6 +3,7 @@
* Interpreteur de ligne de commande
*
*/
+
#include <stdio.h>
#include <limits.h>
#ifdef HAVE_CONFIG_H
@@ -45,9 +46,6 @@ static operator_t operators[] = {
{255, -1, -1}
};
-
-
-
/* Fonction interne: convertit un operateur en sa structure */
static operator_t get_op(op_t op)
@@ -243,8 +241,6 @@ void parse_line(char *line)
op = pop_op();
if (((op & 127) == '('))
break;
- if (((op & 127) == '['))
- exception(1, _("Parse error: enclosure mismatch"));
act_pile(get_func(op));
}
if (global_error) break;