summaryrefslogtreecommitdiff
path: root/lualibs-util-str.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lualibs-util-str.lua')
-rw-r--r--lualibs-util-str.lua8
1 files changed, 6 insertions, 2 deletions
diff --git a/lualibs-util-str.lua b/lualibs-util-str.lua
index 95534c8..a54a4aa 100644
--- a/lualibs-util-str.lua
+++ b/lualibs-util-str.lua
@@ -822,6 +822,10 @@ end
-- aA b cC d eE f gG hH iI jJ lL mM N o p qQ r sS tT uU wW xX z
+-- extensions : %!tag!
+
+-- can be made faster but not called that often
+
local builder = Cs { "start",
start = (
(
@@ -850,10 +854,10 @@ local builder = Cs { "start",
+ V("a") -- new
+ V("A") -- new
+ V("j") + V("J") -- stripped e E
- + V("m") + V("M") -- new
+ + V("m") + V("M") -- new (formatted number)
+ V("z") -- new
--
- -- + V("?") -- ignores probably messed up %
+ -- + V("?") -- ignored, probably messed up %
)
+ V("*")
)