summaryrefslogtreecommitdiff
path: root/tex/context/base/publ-dat.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/publ-dat.lua')
-rw-r--r--tex/context/base/publ-dat.lua9
1 files changed, 8 insertions, 1 deletions
diff --git a/tex/context/base/publ-dat.lua b/tex/context/base/publ-dat.lua
index e360ca1fe..c6b2cb105 100644
--- a/tex/context/base/publ-dat.lua
+++ b/tex/context/base/publ-dat.lua
@@ -602,7 +602,14 @@ do
current.loaded[source] = kind or true
end
current.newtags = #current.luadata > 0 and { } or current.newtags
+ local before = #current.luadata
lpegmatch(bibtotable,content or "",1,current)
+ local after = #current.luadata
+ if before == after then
+ report("no entries added")
+ else
+ report("%s entries added",after-before)
+ end
statistics.stoptiming(publications)
end
@@ -739,7 +746,7 @@ do
return
end
if trace then
- report("loading file",fullname)
+ report("loading file %a",fullname)
end
publications.loadbibdata(dataset,data,fullname,kind)
end