Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

suggestions for improvement #48

Open
Volhout opened this issue Jul 17, 2018 · 1 comment
Open

suggestions for improvement #48

Volhout opened this issue Jul 17, 2018 · 1 comment

Comments

@Volhout
Copy link

Volhout commented Jul 17, 2018

Dear BleuLlama,

Looking at your V0.15 I have 3 bug fixes for you, and one suggestion

Bug fixes:
1/ fix backspace issue
on line 753
replace
printmsg(backspacemsg);
with
printmsgNoNL(backspacemsg);

2/ fix delay command (allows multiple commands on one line in the basic program)
on line 1275
replace
goto execnextline;
with
goto run_next_statement;

3/ fix strange response INPUT when faulty key entry is given
move following:

             txtpos = tmptxtpos;

from: line 1492
to: a new location in between line 1488 and 1489

Suggestion for improvement:
add possibility to abbreviate commands in the basic program (i.e. use n. for next, dw. for dwrite)
on line 593 insert following code
else if(txtpos[i] == '.')
{
txtpos += i+1; // Advance the pointer to following the keyword
ignore_blanks();
return;
}

Regards,

Volhout

@Volhout
Copy link
Author

Volhout commented Jul 18, 2018

Added 3'rd fix

@Volhout Volhout closed this as completed Jul 18, 2018
@Volhout Volhout reopened this Jul 18, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant