summaryrefslogtreecommitdiff
path: root/Build/source/texk/cjkutils/cjkutils-4.8.3/extconv/bg5pltx.cmd
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2015-04-18 11:14:51 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2015-04-18 11:14:51 +0000
commit87e909ad6bf97ddf6790a93e82c4ff4ce7011d65 (patch)
treeff1a8bb8631b88582c8369cb02b58b3c3672f550 /Build/source/texk/cjkutils/cjkutils-4.8.3/extconv/bg5pltx.cmd
parent77812414effcce5077e2c1d5a1c85d8c425633a6 (diff)
cjkutils 4.8.4
git-svn-id: svn://tug.org/texlive/trunk@36903 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/cjkutils/cjkutils-4.8.3/extconv/bg5pltx.cmd')
-rw-r--r--Build/source/texk/cjkutils/cjkutils-4.8.3/extconv/bg5pltx.cmd44
1 files changed, 0 insertions, 44 deletions
diff --git a/Build/source/texk/cjkutils/cjkutils-4.8.3/extconv/bg5pltx.cmd b/Build/source/texk/cjkutils/cjkutils-4.8.3/extconv/bg5pltx.cmd
deleted file mode 100644
index cf65f69393b..00000000000
--- a/Build/source/texk/cjkutils/cjkutils-4.8.3/extconv/bg5pltx.cmd
+++ /dev/null
@@ -1,44 +0,0 @@
-/*----------------------------------------------------------------------*\
- bg5pltx.cmd
-
- This file is part of the CJK macro package for LaTeX2e ver. 4.8.3
-
- Copyright (C) 1994-2012 Wonkoo Kim <wkim+@pitt.edu>
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program in doc/COPYING; if not, write to the Free
- Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
- MA 02110-1301 USA
-
- Wonkoo Kim (wkim+@pitt.edu), September 2, 1996
-\*----------------------------------------------------------------------*/
-
-Call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
-Call SysLoadFuncs
-
-parse arg file
-
-drive = filespec('drive', file)
-path = filespec('path', file)
-fname = filespec('name', file)
-m = lastpos('.', fname)
-if (m = 0) then m = length(fname) + 1
-cjkfile = drive||path||delstr(fname, m)||'.cjk'
-
-'extconv <' file '>' cjkfile
-
-ucjkfile = translate(cjkfile,'/','\')
-if stream(cjkfile, 'C', 'QUERY EXISTS') \= '' then
- 'call latex.cmd' ucjkfile
-
-/* End of bg5pltx.cmd */