diff options
author | 2016-06-11 14:59:11 -0400 | |
---|---|---|
committer | 2016-06-11 14:59:11 -0400 | |
commit | 3b3955794078a5bea50e68441e6e0ced4f7a5828 (patch) | |
tree | 6f4642b98a4cba2e212d5431f54d399daae39e58 /doc | |
parent | 5bbef174e4d6be4cd88ee765913befc07075deaa (diff) | |
download | textadept-3b3955794078a5bea50e68441e6e0ced4f7a5828.tar.gz textadept-3b3955794078a5bea50e68441e6e0ced4f7a5828.zip |
Updated to Lua 5.3.3.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/manual.md b/doc/manual.md index 16c3d11c..b66179dc 100644 --- a/doc/manual.md +++ b/doc/manual.md @@ -1734,6 +1734,11 @@ combinations are allowed in describing a character class: underscore, `[0-7]` represents the octal digits, and `[0-7%l%-]` represents the octal digits plus the lowercase letters plus the '`-`' character. <br /><br /> + You can put a closing square bracket in a set by positioning it as the first + character in the set. You can put an hyphen in a set by positioning it as the + first or the last character in the set. (You can also use an escape for both + cases.) + <br /><br /> The interaction between ranges and classes is not defined. Therefore, patterns like `[%a-z]` or `[a-%%]` have no meaning. * **`[^set]`:** represents the complement of _set_, where _set_ is interpreted |