diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/creole.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/creole.lua b/data/creole.lua index 5b7d7f554..590dfc871 100644 --- a/data/creole.lua +++ b/data/creole.lua @@ -186,5 +186,5 @@ G = P{ "Doc", } function Reader(input, reader_options) - return lpeg.match(G, input) + return lpeg.match(G, tostring(input)) end |