summaryrefslogtreecommitdiff
path: root/tex/context/base/l-lpeg.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/l-lpeg.lua')
-rw-r--r--tex/context/base/l-lpeg.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tex/context/base/l-lpeg.lua b/tex/context/base/l-lpeg.lua
index 44e648607..afe941e9d 100644
--- a/tex/context/base/l-lpeg.lua
+++ b/tex/context/base/l-lpeg.lua
@@ -107,8 +107,8 @@ function string:checkedsplit(separator)
local c = cache[separator]
if not c then
separator = P(separator)
- local other = C((1 - separator)^1)
- c = Ct(other * (separator^1 * other)^1)
+ local other = C((1 - separator)^0)
+ c = Ct(separator^0 * other * (separator^1 * other)^0)
cache[separator] = c
end
return c:match(self)