blob: 2a58ebf2d7a3783db5d90883f26b69e3c273f2d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
%Date: Sat, 30 Jul 1994 17:58:55 PST
%From: Donald Arseneau <asnd@erich.triumf.ca>
%
% \@removefromreset{FOO}{BAR} : Removes counter FOO from the list of
% counters \cl@BAR to be reset when counter BAR
% is stepped. The opposite of \@addtoreset.
\def\@removefromreset#1#2{\let\@tempb\@elt
\expandafter\let\expandafter\@tempa\csname c@#1\endcsname
\def\@elt##1{\expandafter\ifx\csname c@##1\endcsname\@tempa\else
\noexpand\@elt{##1}\fi}%
\expandafter\edef\csname cl@#2\endcsname{\csname cl@#2\endcsname}%
\let\@elt\@tempb}
|