diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-03-28T20·34+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-03-28T20·34+0000 |
commit | db3e644c1ce7d856dbaca7718fa0af8231c486d2 (patch) | |
tree | 96639187d411cdab9aa597eed170e08029236aaa /src/libexpr/lexer.l | |
parent | f8cd904e05b95c5a3ca7cf570c0503a25a2095ca (diff) |
* Added plain lambdas, e.g., `let { id = x: x; const = x: y: x; }'.
`bla:' is now no longer parsed as a URL. * Re-enabled support for the `args' attribute in derivations to specify command line arguments to the builder, e.g., ... builder = /usr/bin/python; args = ["-c" ./builder.py]; ...
Diffstat (limited to 'src/libexpr/lexer.l')
-rw-r--r-- | src/libexpr/lexer.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/lexer.l b/src/libexpr/lexer.l index ce1c4673d7a6..9637fd304db7 100644 --- a/src/libexpr/lexer.l +++ b/src/libexpr/lexer.l @@ -38,7 +38,7 @@ ID [a-zA-Z\_][a-zA-Z0-9\_\']* INT [0-9]+ STR \"[^\n\"]*\" PATH [a-zA-Z0-9\.\_\-\+]*(\/[a-zA-Z0-9\.\_\-\+]+)+ -URI [a-zA-Z][a-zA-Z0-9\+\-\.]*\:[a-zA-Z0-9\%\/\?\:\@\&\=\+\$\,\-\_\.\!\~\*\']* +URI [a-zA-Z][a-zA-Z0-9\+\-\.]*\:[a-zA-Z0-9\%\/\?\:\@\&\=\+\$\,\-\_\.\!\~\*\']+ %% |