Closed Fish-Git closed 2 years ago
Another simple test that fails, this time without using macros:
*
* Another simple test, but this time WITHOUT using any macro.
* This time we'll just insert a bunch of comment statements
* interspersed with some SPACEs and EJECTs to see how ASMA
* behaves.
*
* This first test is with just SPACEs... (SPACE 44, SPACE 88, etc)
*
PRINT OFF
* yada, yada, yada....
SPACE 44
* blah, blah, blah...
SPACE 88
* yada, yada, yada....
SPACE 44
* blah, blah, blah...
SPACE 88
* yada, yada, yada....
SPACE 44
* blah, blah, blah...
SPACE 88
* yada, yada, yada....
PRINT ON
*
* This next test is with a bunch of EJECTs...
*
PRINT OFF
EJECT
EJECT
EJECT
EJECT
EJECT
PRINT ON
*
* And finally, a series of EJECTs followed by a SPACE...
*
PRINT OFF
EJECT
SPACE
EJECT
SPACE
EJECT
SPACE
EJECT
SPACE
EJECT
SPACE
PRINT ON
END
Again, PRINT OFF
should mean precisely that: no printing whatsoever.
I agree that PRINT OFF should work for all operations. For some reason, EJECT and SPACE are not working properly.
I like this test even better!! Who knows. If I get this one to work maybe the macro version works too.
This is a low priority. For time being Patient: "Doctor, it hurts when I do that." Doctor: "Don't do that" applies.
I am trying to maintain momentum on the extended mnemonics.
Please be patient.
This is a low priority.
Agreed.
For time being Patient: "Doctor, it hurts when I do that." Doctor: "Don't do that" applies.
No problem. I've already switched my macros to using *
comment statements instead. I would eventually like to use spaces though, but for now comments are fine.
I am trying to maintain momentum on the extended mnemonics.
Understood. That's more important than this.
Please be patient.
No problem. :)
It's a shame GitHub Issues doesn't support some type of "Priority" value that you can assign to an issue. I think something like that would prove to be quite handy as well as quite popular too. I'm sure many other GitHub users/organizations out there would appreciate something like that. Maybe I should write to them and request it?
Bugzilla does (did).
Bugzilla does (did).
Yeah, bug Bugzilla sucks. ;-)
I still like it. :-)
Correction to this behavior of SPACE and EJECT has been pushed. Also, the TITLE directive reflects similar behavior, namely the TITLE directive does not cause a new title to appear. However, the NEXT time the title line is printed it will contain the title established by the preceding TITLE directive. ASMA.odt and ASMA.pdf have been updated to explicitly identify this behavior. This issue will remain open until Fish is able to confirm the correction.
This issue will remain open until Fish is able to confirm the correction.
Confirmed! Works perfectly.
THANK YOU, Harold. :)
The attached test (reproduced further below) explains everything. The defined macro contains a
SPACE
statement, which is still being printed even though aPRINT OFF
statement immediately precedes the macro invocation:(EDIT: problem also occurs outside of a macro too. See subsequent comment further below.)
If I change the
SPACE
statement in the macro to a*
comment statement instead, it works fine."Spacing" type statements (
SPACE
andEJECT
statements -- and probably evenTITLE
statements too) -- should not cause print lines to be consumed whenPRINT OFF
is in effect.PRINT OFF
should mean precisely that: NO PRINTING.