Skip to content
Snippets Groups Projects
Commit 30224c5e 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 be0377af
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)
......
......@@ -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