diff options
author | Robert Alessi <alessi@robertalessi.net> | 2018-01-23 10:00:41 +0100 |
---|---|---|
committer | Robert Alessi <alessi@robertalessi.net> | 2018-01-23 10:00:41 +0100 |
commit | cf4ae7f383207050b319d96757964ab5e2e2ed62 (patch) | |
tree | 5fba64f00067a747ce8985a7e21d88dbee0ed6f2 | |
parent | a5962363602757d592da1d2f3d6d2a8f98ed906a (diff) | |
download | arabluatex-cf4ae7f383207050b319d96757964ab5e2e2ed62.tar.gz |
newfile is no longer required
-rw-r--r-- | arabluatex.dtx | 3 | ||||
-rw-r--r-- | arabluatex.lua | 7 |
2 files changed, 0 insertions, 10 deletions
diff --git a/arabluatex.dtx b/arabluatex.dtx index c09debe..84bc6ad 100644 --- a/arabluatex.dtx +++ b/arabluatex.dtx | |||
@@ -3461,7 +3461,6 @@ wa-ya.sIru ta.hta 'l-jild-i | |||
3461 | \RequirePackage{xparse} | 3461 | \RequirePackage{xparse} |
3462 | \RequirePackage{environ} | 3462 | \RequirePackage{environ} |
3463 | \RequirePackage{adjustbox} | 3463 | \RequirePackage{adjustbox} |
3464 | \RequirePackage{newfile} | ||
3465 | % \end{macrocode} | 3464 | % \end{macrocode} |
3466 | % The following boolean will be set to |true| in |RL| mode: | 3465 | % The following boolean will be set to |true| in |RL| mode: |
3467 | % \begin{macrocode} | 3466 | % \begin{macrocode} |
@@ -3660,8 +3659,6 @@ wa-ya.sIru ta.hta 'l-jild-i | |||
3660 | {\luadirect{tex.sprint(uc(\luastringN{#1}))}} | 3659 | {\luadirect{tex.sprint(uc(\luastringN{#1}))}} |
3661 | % \end{macrocode} | 3660 | % \end{macrocode} |
3662 | % \end{macro} | 3661 | % \end{macro} |
3663 | % \package{arabluatex} is able to write out unicode Arabic or unicode | ||
3664 | % transliterated Arabic to an external file. | ||
3665 | % \begin{macro}{\Uc} \cs{uc} may be used safely in all of the modes | 3662 | % \begin{macro}{\Uc} \cs{uc} may be used safely in all of the modes |
3666 | % that are provided by \package{arabluatex} as any of the |voc|, | 3663 | % that are provided by \package{arabluatex} as any of the |voc|, |
3667 | % |fullvoc| and |novoc| modes discard it on top of any other | 3664 | % |fullvoc| and |novoc| modes discard it on top of any other |
diff --git a/arabluatex.lua b/arabluatex.lua index 495e6a0..2b1360c 100644 --- a/arabluatex.lua +++ b/arabluatex.lua | |||
@@ -761,10 +761,3 @@ function aemph(str) | |||
761 | end | 761 | end |
762 | return str | 762 | return str |
763 | end | 763 | end |
764 | |||
765 | function writevrb(str) | ||
766 | local f = io.open(tex.jobname.."-out.tex", "a+") | ||
767 | f:write(str) | ||
768 | f:close() | ||
769 | return true | ||
770 | end | ||