Changeset c97cbe81a1d91cffd70753dae8bbff4898fb4736
- Timestamp:
- 06/23/2008 01:08:01 PM
(2 months ago)
- Author:
- mitchell <mitchell@frost.(none)>
- git-committer:
- mitchell <mitchell@frost.(none)> 1214251681 -0400
- git-parent:
[0085604032fa0e94dcf0e8ea91a13bfec7506dc8]
- git-author:
- mitchell <mitchell@frost.(none)> 1214251681 -0400
- Message:
Added enqueue..commit to lua.rl's longstrings.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r0085604 |
rc97cbe8 |
|
| 63 | 63 | |
|---|
| 64 | 64 | lua_long_string = |
|---|
| 65 | | ('[' >lua_long_ec_res '='* $lua_long_ec_inc '[') @code ( |
|---|
| | 65 | ('[' >lua_long_ec_res '='* $lua_long_ec_inc '[') @enqueue @code ( |
|---|
| 66 | 66 | newline %{ entity = INTERNAL_NL; } %lua_ccallback |
|---|
| 67 | 67 | | |
|---|
| … | … | |
| 69 | 69 | | |
|---|
| 70 | 70 | (nonnewline - ws) @code |
|---|
| 71 | | )* :>> (']' '='* $lua_long_ec_dec ']' when { equal_count == 0 }); |
|---|
| | 71 | )* :>> (']' '='* $lua_long_ec_dec ']' when { equal_count == 0 }) @commit; |
|---|
| 72 | 72 | lua_sq_str = |
|---|
| 73 | 73 | '\'' @code ( |
|---|