summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/context/base/mkiv/strc-usr.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/tex/context/base/mkiv/strc-usr.lua')
-rw-r--r--Master/texmf-dist/tex/context/base/mkiv/strc-usr.lua29
1 files changed, 0 insertions, 29 deletions
diff --git a/Master/texmf-dist/tex/context/base/mkiv/strc-usr.lua b/Master/texmf-dist/tex/context/base/mkiv/strc-usr.lua
deleted file mode 100644
index f121fe296a7..00000000000
--- a/Master/texmf-dist/tex/context/base/mkiv/strc-usr.lua
+++ /dev/null
@@ -1,29 +0,0 @@
-if not modules then modules = { } end modules ['strc-usr'] = {
- version = 1.000,
- comment = "companion to strc-usr.mkiv",
- author = "Wolfgang Schuster",
- copyright = "PRAGMA ADE / ConTeXt Development Team",
- license = "see context related readme files"
-}
-
--- The following is copied from \type {tabl-xtb.lua} to make the userdata environment
--- work with \LUA\ documents.
-
-local context = context
-local ctxcore = context.core
-
-local startuserdata = ctxcore.startuserdata
-local stopuserdata = ctxcore.stopuserdata
-
-local startcollecting = context.startcollecting
-local stopcollecting = context.stopcollecting
-
-function ctxcore.startuserdata(...)
- startcollecting()
- startuserdata(...)
-end
-
-function ctxcore.stopuserdata()
- stopuserdata()
- stopcollecting()
-end