I need to put in long commands generated by another program.
If the command is too long, allegro doesn't seem to process it correctly (it is on 2 lines). If I shorten the command, it works.
For example:
Command > shape add; pick grid -53.3 -378.6; pick grid -50.3 -386.8; pick grid -44.0 -392.5; pick grid -36.1 -394.2; pick grid -28.7 -391.3; pick grid -23.8 -384.7; pick grid -22.7 -376.2;
E- Command not found: 22.7 -376.2
Command > shape add; pick grid -53.3 -378.6; pick grid -50.3 -386.8; pick grid -44.0 -392.5; pick grid -36.1 -394.2; pick grid -28.7 -391.3; pick grid -23.8 -384.7
Enter shape outline.
last pick: -53.30 -378.60
last pick: -50.30 -386.80
last pick: -44.00 -392.50
last pick: -36.10 -394.20
last pick: -28.70 -391.30
last pick: -23.80 -384.70
How do I make allegro recognize the lines belong together? If I put them on new lines in the script, it doesn't seem to work. If I put them in manually one by one it seems to work.