summaryrefslogtreecommitdiff
path: root/tex/context/base/blob-ini.mkiv
diff options
context:
space:
mode:
authorContext Git Mirror Bot <phg42.2a@gmail.com>2016-01-12 17:15:07 +0100
committerContext Git Mirror Bot <phg42.2a@gmail.com>2016-01-12 17:15:07 +0100
commit8d8d528d2ad52599f11250cfc567fea4f37f2a8b (patch)
tree94286bc131ef7d994f9432febaf03fe23d10eef8 /tex/context/base/blob-ini.mkiv
parentf5aed2e51223c36c84c5f25a6cad238b2af59087 (diff)
downloadcontext-8d8d528d2ad52599f11250cfc567fea4f37f2a8b.tar.gz
2016-01-12 16:26:00
Diffstat (limited to 'tex/context/base/blob-ini.mkiv')
-rw-r--r--tex/context/base/blob-ini.mkiv62
1 files changed, 0 insertions, 62 deletions
diff --git a/tex/context/base/blob-ini.mkiv b/tex/context/base/blob-ini.mkiv
deleted file mode 100644
index 64582c0db..000000000
--- a/tex/context/base/blob-ini.mkiv
+++ /dev/null
@@ -1,62 +0,0 @@
-%D \module
-%D [ file=blob-ini,
-%D version=2010.04.06,
-%D title=\CONTEXT\ \LUA\ Typesetting,
-%D subtitle=Initialization,
-%D author=Hans Hagen,
-%D date=\currentdate,
-%D copyright={PRAGMA ADE \& \CONTEXT\ Development Team}]
-%C
-%C This module is part of the \CONTEXT\ macro||package and is
-%C therefore copyrighted by \PRAGMA. See mreadme.pdf for
-%C details.
-
-\writestatus{loading}{ConTeXt Lua Typesetting / Initialization}
-
-%D This is a prelude to typesetting at the \LUA\ end. The code
-%D is already quite old but will only get nice when we are further
-%D down the road (close to version 1.00 of \LUATEX). Typesetting in
-%D pure \LUA\ sometimes makes sense.
-
-\registerctxluafile{node-typ}{1.001} % experimental
-\registerctxluafile{blob-ini}{1.001}
-
-%D For the moment here:
-
-\unprotect
-
-% this one takes simple (utf) strings
-
-\def\wdofstring#1{\dimexpr\clf_strwd{#1}\scaledpoint\relax}
-\def\htofstring#1{\dimexpr\clf_strht{#1}\scaledpoint\relax}
-\def\dpofstring#1{\dimexpr\clf_strdp{#1}\scaledpoint\relax}
-\def\hdofstring#1{\dimexpr\clf_strhd{#1}\scaledpoint\relax}
-
-\def\widthofstring {\the\wdofstring}
-\def\heightofstring {\the\htofstring}
-\def\depthofstring {\the\dpofstring}
-\def\heightanddepthofstring{\the\hdofstring}
-
-\let\htdpofstring \hdofstring
-
-\let\hd\htdp % if yes then move this
-
-% this one takes anything that can be typeset
-
-\unexpanded\def\setwidthof#1\to#2%
- {\bgroup
- \setbox\scratchbox\hbox{#1}%
- \expanded{\egroup\def\noexpand#2{\the\wd\scratchbox}}}
-
-\protect \endinput
-
-% \starttext
-%
-% \startluacode
-% local b = blobs.new()
-% blobs.append(b,"Hello world.\n Here we are.\n\n And Again!")
-% blobs.pack(b)
-% blobs.write(b)
-% \stopluacode
-%
-% \stoptext