diff options
author | Tim Hatch <tim@timhatch.com> | 2014-06-05 07:54:28 -0700 |
---|---|---|
committer | Tim Hatch <tim@timhatch.com> | 2014-06-05 07:54:28 -0700 |
commit | 77734cae87a0076423dc79244e332c8e84499057 (patch) | |
tree | fcb0cbfea05136a2f624332bd4a4c4fae2827e22 | |
parent | fa154d6c41ab291e63371399e9f5b48cf9b6a69a (diff) | |
download | pygments-77734cae87a0076423dc79244e332c8e84499057.tar.gz |
Remove nested comment from pawn example.
This has been causing a number of failing tests, and I find no evidence in half
an hour of searching online that nested comments are actually supported (an
example state machine in Pawn_Language_Guide.pdf doesn't; and says it's based on
C which doesn't.
I haven't tried the Pawn compiler itself, but to support nested comments better
will require adjusting other patterns as well.
-rw-r--r-- | tests/examplefiles/pawn_example | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/examplefiles/pawn_example b/tests/examplefiles/pawn_example index e8c17e33..ee2ecca2 100644 --- a/tests/examplefiles/pawn_example +++ b/tests/examplefiles/pawn_example @@ -16,15 +16,6 @@ DEFINE TEMP-TABLE ttNames NO-UNDO /* One-line comment */ /* Two-line Comment */ -/* - Nested - /* - Multiline - /* - Comment - */ - */ -*/ CREATE ttNames. ASSIGN ttNames.cName = {&MY_NAME}. |