summaryrefslogtreecommitdiff
path: root/tex/context/base/font-clr.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/font-clr.lua')
-rw-r--r--tex/context/base/font-clr.lua31
1 files changed, 0 insertions, 31 deletions
diff --git a/tex/context/base/font-clr.lua b/tex/context/base/font-clr.lua
deleted file mode 100644
index 7d19aadd5..000000000
--- a/tex/context/base/font-clr.lua
+++ /dev/null
@@ -1,31 +0,0 @@
-if not modules then modules = { } end modules ['font-clr'] = {
- version = 1.001,
- comment = "companion to font-ini.mkiv",
- author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
- copyright = "PRAGMA ADE / ConTeXt Development Team",
- license = "see context related readme files"
-}
-
--- moved from ini ... will become inline
-
-fonts.colors = fonts.colors or { } -- dummy in ini
-local colors = fonts.colors
-
-local set_attribute = node.set_attribute
-local unset_attribute = node.unset_attribute
-
-local attribute = attributes.private('color')
-local mapping = attributes and attributes.list[attribute] or { }
-
-function colors.set(n,c)
- local mc = mapping[c]
- if not mc then
- unset_attribute(n,attribute)
- else
- set_attribute(n,attribute,mc)
- end
-end
-
-function colors.reset(n)
- unset_attribute(n,attribute)
-end