Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
759cc9bc
Commit
759cc9bc
authored
Dec 05, 2014
by
Damien George
Browse files
unix-cpy: Fix build due to change in lexer API.
parent
a4c52c5a
Changes
1
Hide whitespace changes
Inline
Side-by-side
unix-cpy/main.c
View file @
759cc9bc
...
...
@@ -49,8 +49,8 @@ void do_file(const char *file) {
if
(
0
)
{
// just tokenise
while
(
!
mp_lexer_is_kind
(
lex
,
MP_TOKEN_END
)
)
{
mp_
token_show
(
mp_lexer_cur
(
lex
)
)
;
while
(
lex
->
tok_kind
!=
MP_TOKEN_END
)
{
mp_
lexer_show_token
(
lex
);
mp_lexer_to_next
(
lex
);
}
mp_lexer_free
(
lex
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment