diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-24 13:36:01 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-24 13:36:01 -0800 |
commit | c542db95be66e6db56dba1c54551ffca9afdf584 (patch) | |
tree | bf7f2a2d2031ef88bd75f1a019f8069da5b49761 /ChangeLog | |
parent | 9e929c272579ad369b52c4a14f21895017e69176 (diff) | |
download | txr-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 'ChangeLog')
-rw-r--r-- | ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -1,5 +1,21 @@ 2009-11-24 Kaz Kylheku <kkylheku@gmail.com> + Fixed broken yyerrorf. It was still taking char *, and passing + that as an object to vformat, resulting in #<garbage: ...> + output. + + * parser.h (yybadtoken): Declaration updated. + + * parser.l (yybadtoken): Redefined to take val argument. + The tok stays as int; this is closely coupled to yacc, + so why bother with num(). + + * parser.y (grammar): Fix occurences of yybadtoken to pass + proper literal objects using the lit macro, or nil in + the one case when there is no context. + +2009-11-24 Kaz Kylheku <kkylheku@gmail.com> + Renaming global variables that denote symbols, such that they have a _s suffix. |