summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir/tex/texfileio.w
diff options
context:
space:
mode:
authorTaco Hoekwater <taco@elvenkind.com>2011-05-05 14:59:16 +0000
committerTaco Hoekwater <taco@elvenkind.com>2011-05-05 14:59:16 +0000
commit8cea5ff4b0216ab69be00a2fcef7f00acd84868b (patch)
treea2fc06b851f29303eb94bdf1ef8a1b7ddadefab7 /Build/source/texk/web2c/luatexdir/tex/texfileio.w
parent573a4bfca168d1c77325143aa9bb7f39dcf2cd93 (diff)
final sources for luatex 0.70.0 (to be released tomorrow)
git-svn-id: svn://tug.org/texlive/trunk@22312 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/tex/texfileio.w')
-rw-r--r--Build/source/texk/web2c/luatexdir/tex/texfileio.w16
1 files changed, 13 insertions, 3 deletions
diff --git a/Build/source/texk/web2c/luatexdir/tex/texfileio.w b/Build/source/texk/web2c/luatexdir/tex/texfileio.w
index 652265d0119..92fbbe230bc 100644
--- a/Build/source/texk/web2c/luatexdir/tex/texfileio.w
+++ b/Build/source/texk/web2c/luatexdir/tex/texfileio.w
@@ -23,8 +23,8 @@
#include <kpathsea/absolute.h>
static const char _svn_version[] =
- "$Id: texfileio.w 4128 2011-04-11 12:37:47Z taco $"
- "$URL: http://foundry.supelec.fr/svn/luatex/tags/beta-0.66.0/source/texk/web2c/luatexdir/tex/texfileio.w $";
+ "$Id: texfileio.w 4229 2011-04-30 07:20:23Z taco $"
+ "$URL: http://foundry.supelec.fr/svn/luatex/branches/0.70.x/source/texk/web2c/luatexdir/tex/texfileio.w $";
@ @c
#define end_line_char int_par(end_line_char_code)
@@ -784,6 +784,16 @@ except of course for a short time just after |job_name| has become nonzero.
@c
unsigned char *texmf_log_name; /* full name of the log file */
+static void set_recorder_filename(char *filename) {
+ if (output_directory) {
+ filename = concat3(output_directory, DIR_SEP_STRING, filename);
+ recorder_change_filename(filename);
+ free(filename);
+ } else {
+ recorder_change_filename(filename);
+ }
+}
+
@ The |open_log_file| routine is used to open the transcript file and to help
it catch up to what has previously been printed on the terminal.
@@ -799,7 +809,7 @@ void open_log_file(void)
if (job_name == 0)
job_name = getjobname(maketexstring("texput")); /* TODO */
fn = pack_job_name(".fls");
- recorder_change_filename(fn);
+ set_recorder_filename(fn);
fn = pack_job_name(".log");
while (!lua_a_open_out(&log_file, fn, 0)) {
/* Try to get a different log file name */