summaryrefslogtreecommitdiff
path: root/tex/context/base/syst-aux.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/syst-aux.lua')
-rw-r--r--tex/context/base/syst-aux.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/tex/context/base/syst-aux.lua b/tex/context/base/syst-aux.lua
index 9ef28996a..6b5e18d16 100644
--- a/tex/context/base/syst-aux.lua
+++ b/tex/context/base/syst-aux.lua
@@ -108,3 +108,8 @@ local pattern = Cs(
function commands.thetexdefinition(str)
context(lpegmatch(pattern,str))
end
+
+local upper, lower = utf.upper, utf.lower
+
+function commands.upper(s) context(upper(s)) end
+function commands.lower(s) context(lower(s)) end