Mastodon- / inpaws

80's Gilsoft PAW compiler for PC.
GNU General Public License v3.0
14 stars 5 forks source link

Possible bug in compiler #1

Closed bensonofjohn closed 1 year ago

bensonofjohn commented 1 year ago

I have an old adventure that I built with Gilsoft PAWS. It compiles fine in PAWS but doesn't compile with inpaws. The issue is with a noun this is defined here

NOUN 52: "35TH";

and used here

SAY 35TH: AT 26 PREP STREE PLUS 30 5 MESSAGE 16 LET 38 31 DONE;

and fails with the message

F:\dragnet.paw:1564:process entry word expected, but found <35>

For compatibility I would expect inpaws to cope with this.

Mastodon- commented 1 year ago

Yep, it seems like a bug with names not starting with letters. I'll try to fix next weekend. Thanks for notifying.

El mié, 16 nov 2022 15:56, bensonofjohn @.***> escribió:

I have an old adventure that I built with Gilsoft PAWS. It compiles fine in PAWS but doesn't compile with inpaws. The issue is with a noun this is defined here

NOUN 52: "35TH";

and used here

SAY 35TH: AT 26 PREP STREE PLUS 30 5 MESSAGE 16 LET 38 31 DONE;

and fails with the message

F:\dragnet.paw:1564:process entry word expected, but found <35>

For compatibility I would expect inpaws to cope with this.

— Reply to this email directly, view it on GitHub https://github.com/Mastodon-/inpaws/issues/1, or unsubscribe https://github.com/notifications/unsubscribe-auth/AB5GWTQ4ZEMT3EMA3AMD3X3WITYZLANCNFSM6AAAAAASCKKSSA . You are receiving this because you are subscribed to this thread.Message ID: @.***>

Mastodon- commented 1 year ago

Fixed!

bensonofjohn commented 1 year ago

That was super fast, thank you!