Skip to content
Snippets Groups Projects
Commit 4cad4b8d authored by Luigi Scarso's avatar Luigi Scarso
Browse files

Fixed loading .tex when --output-directory is enabled. Sync trunk with experimental.

[[Split portion of a mixed commit.]]
parent 77e10504
No related branches found
No related tags found
No related merge requests found
2022-07-31 Luigi Scarso <luigi.scarso@gmail.com>
* Fixed loading .tex when --output-directory is enabled
2022-07-30 Luigi Scarso <luigi.scarso@gmail.com>
* Backtrack replace pointer when successive disc in exceptions (H.Hagen)
2022-07-30 Luigi Scarso <luigi.scarso@gmail.com>
* Take exception pre/port disc font from wordstart (H.Hagen)
......
......@@ -705,6 +705,7 @@ static void do_exception(halfword wordstart, halfword r, char *replacement)
/*tex check if we have two exceptions in a row */
if (uword[i + 1] == '{') {
i--;
t = alink(t);
}
} else {
t = vlink(t);
......
#ifndef luatex_svn_revision_h
#define luatex_svn_revision_h
#define luatex_svn_revision 7531
#define luatex_svn_revision 7532
#endif
......@@ -92,17 +92,12 @@ int read_file_callback_id[17];
static char *find_in_output_directory(const char *s)
{
if (output_directory && !kpse_absolute_p(s, false)) {
FILE *f_ptr;
char *ftemp = concat3(output_directory, DIR_SEP_STRING, s);
char *ret_val = NULL ;
/*tex This code is used for input files only. */
f_ptr = fopen(ftemp, "rb");
if (f_ptr) {
fclose(f_ptr);
return ftemp;
} else {
free(ftemp);
}
ret_val = kpse_find_file(ftemp, kpse_tex_format, 1);
free(ftemp);
return ret_val;
}
return NULL;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment