Skip to content

Commit ae9de67

Browse files
committed
Import de la version 1.01.
git-svn-id: svn+ssh://thue/home/mpg/svn-rep/texing/ted@5 21542199-9fba-4508-a318-77bcb5d184c7
1 parent 3c5fafa commit ae9de67

File tree

3 files changed

+11
-18
lines changed

3 files changed

+11
-18
lines changed

README

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ ted.dtx: single source for both documentations and package
3434
Version info
3535
------------
3636

37-
2007-12-09 v1.0 fisrt release
37+
2007-12-09 v1.0 first release
38+
2007-12-12 v1.01 trivial bug fix
3839

3940
License
4041
-------

ted.dtx

+6-14
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@
2929
%<*package>
3030
% \fi
3131
% \ProvidesFile{ted.dtx}
32-
[2007/12/09 v1.0 \space token list editor \space (mpg)]
32+
[2007/12/12 v1.01 \space token list editor \space (mpg)]
3333
% \iffalse
3434
%</package>
3535
% \fi
36-
% \CheckSum{0}
36+
% \CheckSum{774}
3737
% \CharacterTable
3838
% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z
3939
% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z
@@ -207,7 +207,7 @@ This is a generated file. See ted.dtx for license information.
207207
% optionel. Cette fois, l'usage est inversé par rapport à l'argument optionel
208208
% : c'est la cas d'une macro qui est le plus naturel. Pour un registre de
209209
% lexèmes, vous devez écrire le \cs{the} vous même : ainsi, votre \meta{entrée}
210-
% poourra être de la forme \cs{macro}, ou \cs{the}\cs{toksreg}, ou toute autre
210+
% pourra être de la forme \cs{macro}, ou \cs{the}\cs{toksreg}, ou toute autre
211211
% chose dont le 1-développement donne ce que vous voulez.
212212
%
213213
% La version avec deux étoiles a aussi pour but de vous épargner la peine
@@ -519,12 +519,12 @@ This is a generated file. See ted.dtx for license information.
519519
% The \cs{ted@encode} macro is the master macro for encoding. It only
520520
% initialise a few things and launches the two loops. We select one of the
521521
% tree stpes by \cs{let}-ing \cs{ted@do@normal} and \cs{ted@do@special} to
522-
% the appropriate action. Since all this is going to be done inside a group,
523-
% we can set the first loop as the ``default'' one, and do the selection only
524-
% for the second one.
522+
% the appropriate action.
525523
% \begin{macrocode}
526524
\newcommand\ted@encode[1]{%
527525
\ted@list{}%
526+
\let\ted@do@normal\ted@gobble@encloop
527+
\let\ted@do@special\ted@scan@special
528528
\ted@encloop#1\ted@@end
529529
\ted@toks{}%
530530
\let\ted@do@normal\ted@addtoks@encloop
@@ -633,14 +633,6 @@ This is a generated file. See ted.dtx for license information.
633633
% \end{macrocode}
634634
% \end{macro}
635635
%
636-
% Okay, we're done with the pre-scanning macros. Now, just don't forget to set
637-
% those as the default action for the encoding loop, as we mentionned
638-
% previously.
639-
% \begin{macrocode}
640-
\let\ted@do@normal\ted@gobble@encloop
641-
\let\ted@do@special\ted@scan@special
642-
% \end{macrocode}
643-
%
644636
% \subsubsection{Actually encoding}
645637
%
646638
% Remember that, before this last encoding pass, \cs{ted@encode} did the

ted.sty

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
%%
1212
\NeedsTeXFormat{LaTeX2e}
1313
\ProvidesPackage{ted}
14-
[2007/12/09 v1.0 \space token list editor \space (mpg)]
14+
[2007/12/12 v1.01 \space token list editor \space (mpg)]
1515
\@ifdefinable\ted@toks{\newtoks\ted@toks}
1616
\@ifdefinable\ted@list{\let\ted@list\toks@}
1717
\@ifdefinable\ted@code{\let\ted@code\count@}
@@ -53,6 +53,8 @@
5353
\newcommand\ted@@active{\ted@@active@}
5454
\newcommand\ted@encode[1]{%
5555
\ted@list{}%
56+
\let\ted@do@normal\ted@gobble@encloop
57+
\let\ted@do@special\ted@scan@special
5658
\ted@encloop#1\ted@@end
5759
\ted@toks{}%
5860
\let\ted@do@normal\ted@addtoks@encloop
@@ -99,8 +101,6 @@
99101
\ted@encloop}
100102
\newcommand*\ted@addlist[1]{%
101103
\ted@list\expandafter{\the\ted@list#1 }}
102-
\let\ted@do@normal\ted@gobble@encloop
103-
\let\ted@do@special\ted@scan@special
104104
\newcommand\ted@addtoks@encloop[1]{%
105105
\ted@toks\expandafter{\the\ted@toks#1}%
106106
\ted@encloop}

0 commit comments

Comments
 (0)