summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir/image
diff options
context:
space:
mode:
authorTaco Hoekwater <taco@elvenkind.com>2014-03-28 15:33:53 +0000
committerTaco Hoekwater <taco@elvenkind.com>2014-03-28 15:33:53 +0000
commitcf765726d33562cf94dbd3608efb46ba0cc1e3e4 (patch)
treefa3553a9e22a3ddc42d818feb1474f893067777b /Build/source/texk/web2c/luatexdir/image
parent137b56a5c65d26eec13dede7b8f398611aaa008d (diff)
check in luatex 0.79.0 (release version)
git-svn-id: svn://tug.org/texlive/trunk@33312 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/image')
-rw-r--r--Build/source/texk/web2c/luatexdir/image/writeimg.w8
-rw-r--r--Build/source/texk/web2c/luatexdir/image/writepng.w5
2 files changed, 4 insertions, 9 deletions
diff --git a/Build/source/texk/web2c/luatexdir/image/writeimg.w b/Build/source/texk/web2c/luatexdir/image/writeimg.w
index e5c39466ce7..e8a770684b5 100644
--- a/Build/source/texk/web2c/luatexdir/image/writeimg.w
+++ b/Build/source/texk/web2c/luatexdir/image/writeimg.w
@@ -22,7 +22,7 @@
@ @c
static const char _svn_version[] =
- "$Id: writeimg.w 4847 2014-03-05 18:13:17Z luigi $"
+ "$Id: writeimg.w 4956 2014-03-28 12:12:17Z luigi $"
"$URL: https://foundry.supelec.fr/svn/luatex/trunk/source/texk/web2c/luatexdir/image/writeimg.w $";
#include "ptexlib.h"
@@ -579,8 +579,7 @@ void write_img(PDF pdf, image_dict * idict)
{
assert(idict != NULL);
if (img_state(idict) < DICT_WRITTEN) {
- if (tracefilenames)
- tex_printf(" <%s", img_filepath(idict));
+ report_start_file(filetype_image, img_filepath(idict));
switch (img_type(idict)) {
case IMG_TYPE_PNG:
write_png(pdf, idict);
@@ -603,8 +602,7 @@ void write_img(PDF pdf, image_dict * idict)
default:
luatex_fail("internal error: unknown image type (1)");
}
- if (tracefilenames)
- tex_printf(">");
+ report_stop_file(filetype_image);
if (img_type(idict) == IMG_TYPE_PNG) {
write_additional_png_objects(pdf);
}
diff --git a/Build/source/texk/web2c/luatexdir/image/writepng.w b/Build/source/texk/web2c/luatexdir/image/writepng.w
index 56c853b26bd..5e2f34e1570 100644
--- a/Build/source/texk/web2c/luatexdir/image/writepng.w
+++ b/Build/source/texk/web2c/luatexdir/image/writepng.w
@@ -20,7 +20,7 @@
@ @c
static const char _svn_version[] =
- "$Id: writepng.w 4847 2014-03-05 18:13:17Z luigi $"
+ "$Id: writepng.w 4956 2014-03-28 12:12:17Z luigi $"
"$URL: https://foundry.supelec.fr/svn/luatex/trunk/source/texk/web2c/luatexdir/image/writepng.w $";
#include "ptexlib.h"
@@ -578,9 +578,6 @@ void write_png(PDF pdf, image_dict * idict)
&& !png_get_valid(png_p, info_p, PNG_INFO_hIST)
&& !png_get_valid(png_p, info_p, PNG_INFO_tRNS)
&& !png_get_valid(png_p, info_p, PNG_INFO_sPLT)) {
- /* PNG copy */
- if (tracefilenames)
- tex_printf(" (PNG copy)");
copy_png(pdf, idict);
} else {
if (0) {