diff options
| author | Marius <mariausol@gmail.com> | 2013-10-20 01:21:09 +0300 | 
|---|---|---|
| committer | Marius <mariausol@gmail.com> | 2013-10-20 01:21:09 +0300 | 
| commit | b8ac6d7b7fdb16293c28034c349efd5b0b7b20b3 (patch) | |
| tree | 0e9051dbe21b4e9cfc72fe594df5b0fe7bc511f3 /tex/context/base/lxml-tab.lua | |
| parent | 965214d981e6129b782c67adcaf3a81aedcb0bac (diff) | |
| download | context-b8ac6d7b7fdb16293c28034c349efd5b0b7b20b3.tar.gz | |
beta 2013.10.20 07:09
Diffstat (limited to 'tex/context/base/lxml-tab.lua')
| -rw-r--r-- | tex/context/base/lxml-tab.lua | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/tex/context/base/lxml-tab.lua b/tex/context/base/lxml-tab.lua index 2bb5844fc..3e10eb96d 100644 --- a/tex/context/base/lxml-tab.lua +++ b/tex/context/base/lxml-tab.lua @@ -34,6 +34,8 @@ as the current variant was written when <l n='lpeg'/> showed up and it's easier  build tables in one go.</p>  --ldx]]-- +if lpeg.setmaxstack then lpeg.setmaxstack(1000) end -- deeply nested xml files +  xml = xml or { }  local xml = xml @@ -627,7 +629,6 @@ local publicdoctype    = doctypename * somespace * P("PUBLIC") * somespace * val  local systemdoctype    = doctypename * somespace * P("SYSTEM") * somespace * value * somespace * doctypeset  local simpledoctype    = (1-close)^1 -- * balanced^0  local somedoctype      = C((somespace * (publicdoctype + systemdoctype + definitiondoctype + simpledoctype) * optionalspace)^0) -local somedoctype      = C((somespace * (publicdoctype + systemdoctype + definitiondoctype + simpledoctype) * optionalspace)^0)  local instruction      = (spacing * begininstruction * someinstruction * endinstruction) / function(...) add_special("@pi@",...) end  local comment          = (spacing * begincomment     * somecomment     * endcomment    ) / function(...) add_special("@cm@",...) end | 
