Skip to content

Commit

Permalink
call pdftex instead of the obsolete pdfetex
Browse files Browse the repository at this point in the history
  • Loading branch information
mbudaj committed May 23, 2020
1 parent dcde3ab commit 5f5e3c4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion thbook/ch06.tex
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@
* |pdftex-path <file-path>|
Set the full path to a pdf\TeX\ executable if Therion can't find it
(``|pdfetex|'' is the default).
(``|pdftex|'' is the default).
* |identify-path <file-path>|
Expand Down
2 changes: 1 addition & 1 deletion therion.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
### Paths to called executable files ###
# mpost-path "mpost"
# mpost-options "-tex=etex"
# pdftex-path "pdfetex"
# pdftex-path "pdftex"
# cavern-path "cavern"
# convert-path "convert"
# identify-path "identify"
Expand Down
6 changes: 3 additions & 3 deletions thinit.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const char * THCCC_INIT_FILE = "### Output character encodings ###\n"
"### Paths to called executable files ###\n"
"# mpost-path \"mpost\"\n"
"# mpost-options \"-tex=etex\"\n"
"# pdftex-path \"pdfetex\"\n"
"# pdftex-path \"pdftex\"\n"
"# cavern-path \"cavern\"\n"
"# convert-path \"convert\"\n"
"# identify-path \"identify\"\n\n"
Expand Down Expand Up @@ -380,12 +380,12 @@ void thinit::load()
this->path_pdftex = thcfg.install_path.get_buffer();
this->path_otftotfm = thcfg.install_path.get_buffer();
this->path_mpost += "\\bin\\win32\\mpost.exe";
this->path_pdftex += "\\bin\\win32\\pdfetex.exe";
this->path_pdftex += "\\bin\\win32\\pdftex.exe";
this->path_otftotfm += "\\bin\\win32\\otftotfm.exe";
} else {
#endif
this->path_mpost = "mpost";
this->path_pdftex = "pdfetex";
this->path_pdftex = "pdftex";
this->path_otftotfm = "otftotfm";
#ifdef THWIN32
}
Expand Down

0 comments on commit 5f5e3c4

Please sign in to comment.