summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/char-tex.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/mkiv/char-tex.lua')
-rw-r--r--tex/context/base/mkiv/char-tex.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/tex/context/base/mkiv/char-tex.lua b/tex/context/base/mkiv/char-tex.lua
index 1e86ca171..4580ae40a 100644
--- a/tex/context/base/mkiv/char-tex.lua
+++ b/tex/context/base/mkiv/char-tex.lua
@@ -679,15 +679,15 @@ if not csletters then
if is_character[category] then
if chr.unicodeslot < 128 then
if isletter then
- texsetmacro(contextname,utfchar(u),"permanent")
+ texsetmacro(contextname,utfchar(u),"immutable")
else
texsetchar(contextname,u)
end
else
- texsetmacro(contextname,utfchar(u),"permanent")
+ texsetmacro(contextname,utfchar(u),"immutable")
end
elseif is_command[category] and not forbidden[u] then
- texsetmacro(contextname,utfchar(u),"permanent")
+ texsetmacro(contextname,utfchar(u),"immutable")
end
end
end