summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/syst-mac.lmt
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2020-10-31 00:09:22 +0100
committerContext Git Mirror Bot <phg@phi-gamma.net>2020-10-31 00:09:22 +0100
commit7043cd3b7046f6a11112a5d49c4ae5e2dc0c6896 (patch)
tree92ffcd258fb29e37b4a136eb071fbfd0717be29e /tex/context/base/mkiv/syst-mac.lmt
parenta0270f13065d116355a953c6f246cbba26289fc2 (diff)
downloadcontext-7043cd3b7046f6a11112a5d49c4ae5e2dc0c6896.tar.gz
2020-10-30 22:27:00
Diffstat (limited to 'tex/context/base/mkiv/syst-mac.lmt')
-rw-r--r--tex/context/base/mkiv/syst-mac.lmt4
1 files changed, 2 insertions, 2 deletions
diff --git a/tex/context/base/mkiv/syst-mac.lmt b/tex/context/base/mkiv/syst-mac.lmt
index 6fc8df2a4..410a49f8b 100644
--- a/tex/context/base/mkiv/syst-mac.lmt
+++ b/tex/context/base/mkiv/syst-mac.lmt
@@ -35,7 +35,7 @@ local function pushmacro(name,global)
if s then
insert(stack[name],s)
else
- report("no macro %a",name)
+ report("no macro %a to push",name)
insert(stack[name],false)
end
end
@@ -45,7 +45,7 @@ local function popmacro(name)
if s then
pop_macro(s)
else
- -- error
+ report("no macro %a to pop",name)
end
end