summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2016-07-08 21:40:37 +0000
committerKarl Berry <karl@freefriends.org>2016-07-08 21:40:37 +0000
commit625406d67c04aff1f4f94c6120aa8d14b2252708 (patch)
tree0fc40c9b417e941d65f3ba5e16b596a982705fe8 /Master/texmf-dist/tex/latex
parentf9eb210015cebb4ec1dc660a507fdcceaae4f08e (diff)
rm getargs, obsolete on CTAN
git-svn-id: svn://tug.org/texlive/trunk@41662 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex')
-rw-r--r--Master/texmf-dist/tex/latex/getargs/getargs.sty56
1 files changed, 0 insertions, 56 deletions
diff --git a/Master/texmf-dist/tex/latex/getargs/getargs.sty b/Master/texmf-dist/tex/latex/getargs/getargs.sty
deleted file mode 100644
index be28d6257b2..00000000000
--- a/Master/texmf-dist/tex/latex/getargs/getargs.sty
+++ /dev/null
@@ -1,56 +0,0 @@
-\def\getargsversionnumber{v1.01}
-\ProvidesPackage{getargs}
-[2016/05/20 \getargsversionnumber\
- Macro to parse an argument list, using user-specified parsing character]
-% CREATED BY Steven B. Segletes <steven.b.segletes.civ@mail.mil>
-% THIS PACKAGE IS RELEASED IN ACCORDANCE WITH THE LaTeX PUBLIC PROJECT LICENSE
-% LPPL v1.3c (http://ctan.org/license/lppl1.3) OR ITS SUCCESSORS
-
-% V1.00-Initial release
-\newcounter{getarg@ctr}
-\let\getargs\relax
-\newcommand\getargs{}
-
-\newcommand\setparsechar[1]{%
- \def\getargparsechar{#1}%
- \renewcommand{\getargs}[1]{%
- \setcounter{getarg@ctr}{0}%
- \parse@args##1#1\relax\relax%
- }%
- \def\parse@args##1#1##2\relax{%
- \stepcounter{getarg@ctr}%
- \expandafter\gdef\csname\getarg@root\romannumeral\value{getarg@ctr}\endcsname{##1}%
- \ifx\relax##2\relax%
- \expandafter\xdef\csname n\getarg@root\endcsname{\thegetarg@ctr}\else%
- \parse@args##2\relax\fi%
- }%
-}
-
-\newcommand\setparserootname[1][arg]{\def\getarg@root{#1}}
-
-\let\showargs\relax
-\newcommand\showargs[1][t]{%
- \fboxrule=.7pt\relax\fboxsep=\dimexpr-.5pt-\fboxrule\relax%
- \csname n\getarg@root\endcsname{} \textbackslash\getarg@root\ldots{} items %
- \if x#1(expanded)\else (tokens)\fi%
- : \showargs@help{#1}{1}{\csname n\getarg@root\endcsname}\unskip\fbox{\strut}.%
-}
-
-\newcommand\showargs@help[3]{%
- \setcounter{getarg@ctr}{#2}%
- \if x#1%
- \fbox{\strut}\csname\getarg@root\romannumeral\value{getarg@ctr}\endcsname%
- \hskip0pt\relax%
- \else
- \fbox{\strut}%
- \expandafter\detokenize\expandafter\expandafter\expandafter{%
- \csname\getarg@root\romannumeral\value{getarg@ctr}\endcsname}\hskip0pt\relax%
- \fi
- \ifnum\value{getarg@ctr}<#3\relax\stepcounter{getarg@ctr}%
- \showargs@help{#1}{\thegetarg@ctr}{#3}%
- \fi%
-}
-
-\setparserootname
-\setparsechar{,}
-\endinput