summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/generic/genmisc
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2009-09-13 00:07:46 +0000
committerKarl Berry <karl@freefriends.org>2009-09-13 00:07:46 +0000
commit53c7b97a4701f774db0a63612aa5c6cba958205d (patch)
tree1545906b95ebe61e8529ece3e9d604b2721e92a5 /Master/texmf-dist/tex/generic/genmisc
parent17a7c98461feb7993c91e4c65f2225c7d9a44f32 (diff)
tabto.txt license update (12sep09)
git-svn-id: svn://tug.org/texlive/trunk@15248 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/generic/genmisc')
-rw-r--r--Master/texmf-dist/tex/generic/genmisc/tabto.tex35
1 files changed, 0 insertions, 35 deletions
diff --git a/Master/texmf-dist/tex/generic/genmisc/tabto.tex b/Master/texmf-dist/tex/generic/genmisc/tabto.tex
deleted file mode 100644
index df10685747e..00000000000
--- a/Master/texmf-dist/tex/generic/genmisc/tabto.tex
+++ /dev/null
@@ -1,35 +0,0 @@
-%-------------- tabto.tex ------------
-% Tab to a position relative to the left margin in a paragraph:
-% some text \tabto{1in} more text, and \tabto 3in final text.
-% If the text on the line already goes past the desired position,
-% the tab starts a new line.
-% Note that braces are allowed, but not required.
-%
-% Donald Arseneau (asnd@reg.triumf.ca, asnd@triumfcl (bitnet))
-
-\newdimen \scratchdim % or use \@tempdima in LaTeX
-\newdimen \scratchDIM % or use \@tempdimb in LaTeX
-
-% this preliminary mess is just TeX's awful way of reading a parameter
-% with or without braces.
-
-\def\tabto{\futurelet\nExt\tabtO}
-\def\tabtO{\ifx\nExt\bgroup\let\nExt\TabTo\else\let\nExt\tabtOO\fi\nExt}
-\def\tabtOO{\afterassignment\tabTOO\scratchDIM }
-\def\tabTOO{\TabTo\scratchDIM}
-
-\def\TabTo#1{\begingroup\leavevmode
-\ifinner\scratchdim=0pt\relax % in a \hbox, so ignore
-\else % unrestricted horizontal mode
- \parfillskip=0pt plus 1fill % must swamp the -1fil glue
- \hfil\null\penalty20 \hskip0ptplus-1fil
- \hbox{\mathstrut\kern\hsize\kern-#1}\vadjust{\nobreak}\par
- \scratchdim=\prevdepth
- \prevdepth=-999pt % make sure I get an exact \baselineskip
- \parskip=-999pt % but cancel the extra space
- \advance\parskip-\baselineskip % cancel the \baselineskip
- \advance\parskip-\scratchdim
- \noindent
-\fi \hbox to#1{\vrule depth\scratchdim width0pt\hss}\endgroup
-\ignorespaces}
-