diff options
author | Reinhard Kotucha <reinhard.kotucha@web.de> | 2008-04-21 00:10:29 +0000 |
---|---|---|
committer | Reinhard Kotucha <reinhard.kotucha@web.de> | 2008-04-21 00:10:29 +0000 |
commit | c45aea54ea6e47ebd46f0a0025acfd0b9b2b9311 (patch) | |
tree | 3e72dd327252d62c03b92690029b56de2ef89053 | |
parent | ffdc21fce6a2d2bdfcf6a948d0e57fa3bfefa752 (diff) |
texconf.tlu: bugfix.
git-svn-id: svn://tug.org/texlive/trunk@7556 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/texmf/scripts/texlive/texconf.tlu | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Master/texmf/scripts/texlive/texconf.tlu b/Master/texmf/scripts/texlive/texconf.tlu index dca57b12d13..d8685b459fe 100755 --- a/Master/texmf/scripts/texlive/texconf.tlu +++ b/Master/texmf/scripts/texlive/texconf.tlu @@ -490,8 +490,9 @@ elseif arg[1] == 'paper' then set_papersize(arg[2]) elseif arg[1] == 'dvips' then if arg[2] == 'help' or arg[3]==nil then - usage_paper(dvips) + usage_paper('dvips') elseif arg[2]=='paper' then + set_dvips_papersize(arg[3]) end elseif arg[1] == 'xdvi' then if arg[2] == 'help' or arg[3]==nil then |