diff options
Diffstat (limited to 'Master/texmf-dist/tex/context/base/luat-uni.lua')
-rw-r--r-- | Master/texmf-dist/tex/context/base/luat-uni.lua | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/Master/texmf-dist/tex/context/base/luat-uni.lua b/Master/texmf-dist/tex/context/base/luat-uni.lua deleted file mode 100644 index 06945ed2bab..00000000000 --- a/Master/texmf-dist/tex/context/base/luat-uni.lua +++ /dev/null @@ -1,23 +0,0 @@ --- filename : luat-uni.lua --- comment : companion to luat-uni.tex --- author : Hans Hagen, PRAGMA-ADE, Hasselt NL --- copyright: PRAGMA ADE / ConTeXt Development Team --- license : see context related readme files - -if not versions then versions = { } end versions['luat-uni'] = 1.001 - -function unicode.utf8.split(str) - lst = { } - -- for snippet in unicode.utf8.gfind(str,".") do - for snippet in string.utfcharacters(str) do - table.insert(lst,snippet) - end - return lst -end - -function unicode.utf8.each(str,fnc) - -- for snippet in unicode.utf8.gfind(str,".") do - for snippet in string.utfcharacters(str) do - fnc(snippet) - end -end |