-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* string which represents filename does not expect to have "Japanese character" flag 0x100, * slow_print_filename and (rewrited) print_quoted both prints a string which represents filename. - slow_print_filename assumes that no kanji code conversion is required - print_quoted both prints assumes that code conversion should be performed
- Loading branch information
1 parent
9531158
commit 00b6c07
Showing
10 changed files
with
122 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
#!/bin/bash | ||
cat <<'EOF' > filename_日本語.tex | ||
% UTF-8 encoding | ||
\def\TEST#1{\ifx#1\relax\else\immediate\write16{[\meaning#1]}\expandafter\TEST\fi} | ||
\expandafter\TEST\jobname\relax | ||
\immediate\openout0=\jobname.txt | ||
\immediate\write0{日本語} | ||
\immediate\closeout0 | ||
\openin0=\jobname.txt | ||
\ifeof0 | ||
\immediate\write16{File `\jobname.txt' not found.} | ||
\else | ||
\read0 to \TEXT | ||
\immediate\write16{TEXT=\TEXT} | ||
\fi | ||
\closein0 | ||
\input \jobname.txt | ||
\end | ||
EOF | ||
|
||
ln -s filename_日本語.tex "filename_日本a.tex" | ||
eptex "\input {filename_日本a}" | ||
euptex "\input {filename_日本a}" | ||
ls "filename_日本a".* | ||
rm "filename_日本a".* | ||
ln -s filename_日本語.tex filename_日本ßſa.tex | ||
euptex filename_日本ßſa | ||
ls filename_日本ßſa.* | ||
rm filename_日本ßſa.* | ||
|
||
eptex "-jobname=漢ßſa" filename_日本語 | ||
ls 漢*; rm 漢* | ||
euptex "-jobname=漢ßſa" filename_日本語 | ||
ls 漢*; rm 漢* | ||
rm filename_日本語.tex |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters