diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-05-25 19:58:37 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-05-25 19:58:37 +0100 |
commit | 931269d18f5f7eb4a2133dd40ae867546d9be90c (patch) | |
tree | d50eb92729193d2b405cf3cd3001ee18f2d3da8b | |
parent | Handle dollar quoting and new line whitespace (diff) | |
download | project2-931269d18f5f7eb4a2133dd40ae867546d9be90c.tar.bz2 project2-931269d18f5f7eb4a2133dd40ae867546d9be90c.tar.xz project2-931269d18f5f7eb4a2133dd40ae867546d9be90c.zip |
Handle tagless dollar quoting
-rw-r--r-- | project2/sql/sql.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project2/sql/sql.ll b/project2/sql/sql.ll index dd51742..b4aab45 100644 --- a/project2/sql/sql.ll +++ b/project2/sql/sql.ll @@ -20,7 +20,7 @@ term ; any ({other}|{space}) quote ' quote_apos '' -dollarquote "$".[a-zA-Z]."$" +dollarquote ("$".[a-zA-Z]."$"|"$$") %x COMMENT %x STATEMENT |