From f9acc59c55784e1de247554c3639e9b11b398c61 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Wed, 9 Sep 1998 15:27:43 +0000 Subject: [PATCH] \itembreak, \itemjoin: Remove obsolete macros. \itemnewline: Rename to \py@itemnewline, since it's only used internally. --- Doc/texinputs/python.sty | 27 +++++++-------------------- 1 file changed, 7 insertions(+), 20 deletions(-) diff --git a/Doc/texinputs/python.sty b/Doc/texinputs/python.sty index 0e8bf8ec12..0df36023e7 100644 --- a/Doc/texinputs/python.sty +++ b/Doc/texinputs/python.sty @@ -433,11 +433,16 @@ % {fulllineitems} is used in one place in libregex.tex, but is really for % internal use in this file. % +\newcommand{\py@itemnewline}[1]{% + \@tempdima\linewidth% + \advance\@tempdima \leftmargin\makebox[\@tempdima][l]{#1}% +} + \newenvironment{fulllineitems}{ \begin{list}{}{\labelwidth \leftmargin \labelsep 0pt \rightmargin 0pt \topsep -\parskip \partopsep \parskip \itemsep -\parsep - \let\makelabel=\itemnewline} + \let\makelabel=\py@itemnewline} }{\end{list}} % \optional is mostly for use in the arguments parameters to the various @@ -759,24 +764,6 @@ \end{center}% } -\newcommand{\itemnewline}[1]{% - \@tempdima\linewidth% - \advance\@tempdima \leftmargin\makebox[\@tempdima][l]{#1}% -} - -% Define \itembreak: force the text after an item to start on a new line -\newcommand{\itembreak}{% - \mbox{}% - \\*[0mm]% -} - -% Define \itemjoin: some negative vspace to join two items together -\newcommand{\itemjoin}{% - \mbox{}% - \vspace{-\itemsep}% - \vspace{-\parsep}% -} - % Cross-referencing (AMK, new impl. FLD) % Sample usage: % \begin{seealso} @@ -858,7 +845,7 @@ % \newenvironment{definitions}{% \begin{description}% - \def\term##1{\item[##1]\itembreak} + \def\term##1{\item[##1]\mbox{}\\*[0mm]} }{% \end{description}% } -- 2.50.1