Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
luatex
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeXLive
luatex
Commits
30224c5e
Commit
30224c5e
authored
2 years ago
by
Luigi Scarso
Browse files
Options
Downloads
Patches
Plain Diff
Fixed loading .tex when --output-directory is enabled. Sync trunk with experimental.
[[Split portion of a mixed commit.]]
parent
be0377af
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/texk/web2c/luatexdir/ChangeLog
+3
-0
3 additions, 0 deletions
source/texk/web2c/luatexdir/ChangeLog
source/texk/web2c/luatexdir/tex/texfileio.c
+4
-9
4 additions, 9 deletions
source/texk/web2c/luatexdir/tex/texfileio.c
with
7 additions
and
9 deletions
source/texk/web2c/luatexdir/ChangeLog
+
3
−
0
View file @
30224c5e
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)
...
...
This diff is collapsed.
Click to expand it.
source/texk/web2c/luatexdir/tex/texfileio.c
+
4
−
9
View file @
30224c5e
...
...
@@ -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
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment