summaryrefslogtreecommitdiff
path: root/tex/context
diff options
context:
space:
mode:
authorPhilipp Gesang <gesang@stud.uni-heidelberg.de>2012-06-06 10:17:13 +0200
committerPhilipp Gesang <gesang@stud.uni-heidelberg.de>2012-06-06 10:17:13 +0200
commitdc637761adf54caa9ccb4f18226d5a72670180bc (patch)
treeefdb4cac0ec1fa99938e1e1d3ecebf57d8c0cb5f /tex/context
parent2967f2cc01ba0e6cdfe6df20771d5aeecdb26dd9 (diff)
downloadenigma-dc637761adf54caa9ccb4f18226d5a72670180bc.tar.gz
[interface] fixed plain/latex setup macro
Diffstat (limited to 'tex/context')
-rw-r--r--tex/context/third/enigma/enigma.lua7
1 files changed, 6 insertions, 1 deletions
diff --git a/tex/context/third/enigma/enigma.lua b/tex/context/third/enigma/enigma.lua
index 521c4b7..a34e669 100644
--- a/tex/context/third/enigma/enigma.lua
+++ b/tex/context/third/enigma/enigma.lua
@@ -93,6 +93,10 @@ local utf8len = unicode.utf8.len
local utf8sub = unicode.utf8.sub
local utfcharacters = string.utfcharacters
+--- debugging tool (careful, this *will* break context!)
+--dofile(kpse.find_file("lualibs-table.lua")) -- archaic version :(
+--table.print = function (...) print(table.serialize(...)) end
+
local tablecopy
if format_is_context_p then
tablecopy = table.copy
@@ -1404,7 +1408,8 @@ on.
--ichd]]--
local new_machine = function (_, name)
local args = configurations[name]
- verbose_level = args.verbose or verbose_level
+ --table.print(configurations)
+ verbose_level = args and args.verbose or verbose_level
local machine = new(name, args)
return machine
end