aboutsummaryrefslogtreecommitdiff
path: root/src/parser.y
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.y')
-rw-r--r--src/parser.y3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/parser.y b/src/parser.y
index d7e8168..c09067b 100644
--- a/src/parser.y
+++ b/src/parser.y
@@ -11,7 +11,6 @@ static ast_t astmerge(int, ast_t, ast_t);
static void *xmalloc(size_t);
static void yyerror(const char *);
-extern bool lflag;
extern const char *current_file;
%}
@@ -47,7 +46,7 @@ input
: %empty
| input line {
if ($2.eqn != NULL)
- (lflag ? astprocess_latex : astprocess_cli)($2);
+ astprocess($2);
}
;