Preprocessor parameter table parsing
Posted: Sun May 18, 2025 11:40 pm
Not really a bug, but a differency of table handling between the preprocessor parameters and other tables.
If the last table item is followed by a comma that is not allowed in the preprocessor lines.
This has an error "Tag expected!"
But inside the script, such a definition has no problem:
It suggests that not the same code parses the preprocessor commands and the rest of the script.
If the last table item is followed by a comma that is not allowed in the preprocessor lines.
This has an error "Tag expected!"
Code: Select all
@DISPLAY {
width=160,
height=100,
}
Code: Select all
mydisplay= {
width=160,
height=100,
}