summaryrefslogtreecommitdiffstats
path: root/parser.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-24 13:36:01 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-24 13:36:01 -0800
commitc542db95be66e6db56dba1c54551ffca9afdf584 (patch)
treebf7f2a2d2031ef88bd75f1a019f8069da5b49761 /parser.h
parent9e929c272579ad369b52c4a14f21895017e69176 (diff)
downloadtxr-c542db95be66e6db56dba1c54551ffca9afdf584.tar.gz
txr-c542db95be66e6db56dba1c54551ffca9afdf584.tar.bz2
txr-c542db95be66e6db56dba1c54551ffca9afdf584.zip
Fixed broken yyerrorf. It was still taking char *, and passing
that as an object to vformat, resulting in #<garbage: ...> output.
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/parser.h b/parser.h
index 2a19a349..3b58193b 100644
--- a/parser.h
+++ b/parser.h
@@ -33,4 +33,4 @@ extern val spec_file_str;
int yyparse(void);
val get_spec(void);
void yyerrorf(val s, ...);
-void yybadtoken(int tok, const char *context);
+void yybadtoken(int tok, val context);