Skip to content
This repository has been archived by the owner on Mar 6, 2023. It is now read-only.

Commit

Permalink
also support {oeps.foo} filenames in openin/out -- trunk. (HH)
Browse files Browse the repository at this point in the history
git-svn-id: https://serveur-svn.lri.fr/svn/modhel/luatex/trunk@7215 0b2b3880-5936-4365-a048-eb17d2e5a6bf
  • Loading branch information
luigiScarso committed Oct 25, 2019
1 parent a16953d commit 142fc2d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
4 changes: 4 additions & 0 deletions source/texk/web2c/luatexdir/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2019-10-25 Luigi Scarso <[email protected]>
* Also support {oeps.foo} filenames in openin/out


2019-10-22 Luigi Scarso <[email protected]>
* *** DROPPED "page_objnum_provider" callback , replaced with "page_order_index" ***

Expand Down
2 changes: 1 addition & 1 deletion source/texk/web2c/luatexdir/luatex_svnversion.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define luatex_svn_revision 7208
#define luatex_svn_revision 7211
12 changes: 11 additions & 1 deletion source/texk/web2c/luatexdir/tex/extensions.c
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,17 @@ void do_extension(int immediate)
p = tail;
new_write_whatsit(open_node_size,1);
scan_optional_equals();
scan_file_name();
/* scan_file_name(); */
do {
get_x_token();
} while ((cur_cmd == spacer_cmd) || (cur_cmd == relax_cmd));
back_input();
if (cur_cmd != left_brace_cmd) {
scan_file_name();
} else {
scan_file_name_toks();
}
/* */
open_name(tail) = cur_name;
open_area(tail) = cur_area;
open_ext(tail) = cur_ext;
Expand Down

0 comments on commit 142fc2d

Please sign in to comment.