aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/lexer.l
diff options
context:
space:
mode:
Diffstat (limited to 'src/libexpr/lexer.l')
-rw-r--r--src/libexpr/lexer.l8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/libexpr/lexer.l b/src/libexpr/lexer.l
index fb19e16b4..bbf872ff6 100644
--- a/src/libexpr/lexer.l
+++ b/src/libexpr/lexer.l
@@ -9,7 +9,7 @@
%{
#include <string.h>
#include <aterm2.h>
-#include "parser-tab.h"
+#include "parser-tab.hh"
static void initLoc(YYLTYPE * loc)
{
@@ -35,7 +35,11 @@ static void adjustLoc(YYLTYPE * loc, const char * s, size_t len)
}
}
-ATerm toATerm(const char * s);
+ATerm toATerm(const char * s)
+{
+ return (ATerm) ATmakeAppl0(ATmakeAFun((char *) s, 0, ATtrue));
+}
+
ATerm unescapeStr(const char * s);
#define YY_USER_INIT initLoc(yylloc)