summaryrefslogtreecommitdiff
path: root/mod/tex/context/third/rst/rst_helpers.lua
diff options
context:
space:
mode:
authorPhilipp Gesang <gesang@stud.uni-heidelberg.de>2013-03-12 17:05:16 +0100
committerPhilipp Gesang <gesang@stud.uni-heidelberg.de>2013-03-12 17:05:16 +0100
commit09dd07bcc2397ff03460d5e89f8125456c29e025 (patch)
treed65828105981aa94bfaa697358d09a799834609a /mod/tex/context/third/rst/rst_helpers.lua
parent9c6a8a9737e6f5b09ca65ed82a186b58e731e350 (diff)
downloadcontext-rst-09dd07bcc2397ff03460d5e89f8125456c29e025.tar.gz
fix spurious global; workaround buffer idiosyncrasy in manual
Diffstat (limited to 'mod/tex/context/third/rst/rst_helpers.lua')
-rw-r--r--mod/tex/context/third/rst/rst_helpers.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/tex/context/third/rst/rst_helpers.lua b/mod/tex/context/third/rst/rst_helpers.lua
index e90a55a..3ff53fe 100644
--- a/mod/tex/context/third/rst/rst_helpers.lua
+++ b/mod/tex/context/third/rst/rst_helpers.lua
@@ -515,7 +515,7 @@ do
return false
end
- local trc = state.roman_cache
+ local trc = thirddata.rst.state.roman_cache
n_str = trc[str] or nil
n_old = trc[old] or nil
if not n_str then
@@ -549,7 +549,7 @@ do
end
- local trc = state.roman_cache
+ local trc = thirddata.rst.state.roman_cache
n_str = trc[str] or nil
n_old = trc[old] or nil
if not n_str then
@@ -578,7 +578,7 @@ do
return false
end
- local trc = state.roman_cache
+ local trc = thirddata.rst.state.roman_cache
n_str = trc[str] or nil
if not n_str then
n_str = roman_to_arab(str:lower())