diff options
author | Adrian Thurston <thurston@complang.org> | 2012-05-21 15:50:00 -0400 |
---|---|---|
committer | Adrian Thurston <thurston@complang.org> | 2012-05-21 15:50:00 -0400 |
commit | dd0f1865850106fd12f6f1f01e0639457f9dea4f (patch) | |
tree | dd3949056f70d6c98d0b8881084a67fa196cbaee /test/order2.lm | |
parent | 6b7f2d2af94a2e420d8f4c72dbc1b388faf6fbf9 (diff) | |
download | colm-dd0f1865850106fd12f6f1f01e0639457f9dea4f.tar.gz |
auto trim before $ string conversion
The $ operation automatically adds a TRIM. The '%' opertion was added, which is
the original $ conversion without the trim.
Diffstat (limited to 'test/order2.lm')
-rw-r--r-- | test/order2.lm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/order2.lm b/test/order2.lm index 1dd99987..33458524 100644 --- a/test/order2.lm +++ b/test/order2.lm @@ -88,7 +88,7 @@ Output: output Output = construct output [] # Take off the leading C from the input file and send it out. match P [C: c '%%' protocol*] -Output << [$C] +Output << [%C] Output << "#include <assert.h> " |