texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: Indent def_item in LaTeX


From: Gavin D. Smith
Subject: branch master updated: Indent def_item in LaTeX
Date: Sat, 06 Aug 2022 17:24:50 -0400

This is an automated email from the git hooks/post-receive script.

gavin pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new f3b88867ab Indent def_item in LaTeX
f3b88867ab is described below

commit f3b88867abe610e6591238e057418de280c49f0d
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Sat Aug 6 22:24:39 2022 +0100

    Indent def_item in LaTeX
    
    * tp/Texinfo/Convert/LaTeX.pm (_convert) <def_item>:
    Wrap body of definition with \begin{quote} and \end{quote}.
    
    (_open_preformatted): Also do not indent @smallformat environment.
    Remove extraneous {} from output.
---
 ChangeLog                                          |   10 +
 tp/Texinfo/Convert/LaTeX.pm                        |   12 +-
 .../res_latex/definition_commands.tex              |   34 +
 tp/t/results/converters_tests/image_formatting.pl  |    2 +-
 .../converters_tests/test_deftypefnnewline.pl      |   28 +
 tp/t/results/def/omit_def_space.pl                 |    2 +
 tp/t/results/latex_tests/combined_fonts.pl         |    2 +-
 .../combined_fonts/res_latex/combined_fonts.tex    |    2 +-
 tp/t/results/latex_tests/example_in_cartouche.pl   |    2 +-
 .../res_latex/example_in_cartouche.tex             |    2 +-
 tp/t/results/latex_tests/kbdinputstyle_and_kbd.pl  |    8 +-
 tp/t/results/misc_commands/kbdinputstyle.pl        |    6 +-
 .../res_latex/quotation_author_in_example.tex      |    2 +-
 .../inter_item_commands_in_table_in_example.tex    |    2 +-
 .../res_parser/formatting_latex/formatting.tex     | 1172 +++++++++++++-------
 15 files changed, 866 insertions(+), 420 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index e538d88d60..efa5ec3401 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2022-08-06  Gavin Smith  <gavinsmith0123@gmail.com>
+
+       Indent def_item in LaTeX
+
+       * tp/Texinfo/Convert/LaTeX.pm (_convert) <def_item>:
+       Wrap body of definition with \begin{quote} and \end{quote}.
+
+       (_open_preformatted): Also do not indent @smallformat environment.
+       Remove extraneous {} from output.
+
 2022-08-06  Gavin Smith  <gavinsmith0123@gmail.com>
 
        @exdent in LaTeX
diff --git a/tp/Texinfo/Convert/LaTeX.pm b/tp/Texinfo/Convert/LaTeX.pm
index 7e66ec2026..cddeb38f8c 100644
--- a/tp/Texinfo/Convert/LaTeX.pm
+++ b/tp/Texinfo/Convert/LaTeX.pm
@@ -40,9 +40,7 @@
 #
 # @group should also be added together with the non filled environments.
 #
-# @def* body in Texinfo TeX is narrower than the @def* line.  The
-# difference is more marked for @def* within a @*table or @quotation.
-# Also Texinfo TeX leaves more space for the category on the right
+# Texinfo TeX leaves more space for the category on the right
 # if the def line is too long.  If the category is formatted with
 # @tie{}, like Escape@tie{}sequence, with Texinfo TeX the space is
 # more or less a normal space, with LaTeX, the space has shrinked so
@@ -1844,7 +1842,7 @@ sub _open_preformatted($$)
   $result .= '\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing';
 
   my $indent;
-  if ($command eq 'format') {
+  if ($command eq 'format' or $command eq 'smallformat') {
     $indent = '0em';
   } else {
     $indent = $example_indent;
@@ -1857,7 +1855,7 @@ sub _open_preformatted($$)
   if ($small_font_preformatted_commands{$command}) {
     $result .= "\\$small_font_size";
   }
-  $result .= '{}'."%\n";
+  $result .= "%\n";
   return $result;
 }
 
@@ -3636,6 +3634,8 @@ sub _convert($$)
       }
       $result .= "\n";
       $result .= _index_entry($self, $element);
+    } elsif ($element->{'type'} eq 'def_item') {
+      $result .= "\\begin{quote}\n";
     } elsif ($element->{'type'} eq 'table_term') {
       $result .= '\item[{\parbox[b]{\linewidth}{%'."\n";
       # count @item/@itemx to add //\n to each except for the last
@@ -3681,6 +3681,8 @@ sub _convert($$)
   if ($type) {
     if ($type eq '_dot_not_end_sentence') {
       $self->{'formatting_context'}->[-1]->{'dot_not_end_sentence'} -= 1;
+    } elsif ($type eq 'def_item') {
+      $result .= "\\end{quote}\n";
     } elsif ($type eq 'table_term') {
       $result .= '}}]'."\n";
       pop @{$self->{'formatting_context'}->[-1]->{'nr_table_items_context'}};
diff --git 
a/tp/t/results/converters_tests/definition_commands/res_latex/definition_commands.tex
 
b/tp/t/results/converters_tests/definition_commands/res_latex/definition_commands.tex
index 61b2023741..d0ef5587ba 100644
--- 
a/tp/t/results/converters_tests/definition_commands/res_latex/definition_commands.tex
+++ 
b/tp/t/results/converters_tests/definition_commands/res_latex/definition_commands.tex
@@ -76,21 +76,27 @@
 
 
 \index[fn]{fname@\texttt{fname}}%
+\begin{quote}
 deffn no var for \textsl{a---rg1} and \textsl{a--rg2}
+\end{quote}
 
 \noindent\texttt{fname \EmbracOn{}\textnormal{\textsl{\textsl{a---rg1} 
\textsl{a--rg2}}}\EmbracOff{}}\hfill[Func]
 
 
 
 \index[fn]{fname@\texttt{fname}}%
+\begin{quote}
 deffn explict var for \textsl{a---rg1} and \textsl{a--rg2}
+\end{quote}
 
 \noindent\texttt{fname 
\EmbracOn{}\textnormal{\textsl{\EmbracOff{}\textnormal{\textsl{a---rg1}}\EmbracOn{}
 \EmbracOff{}\textnormal{\textsl{a--rg2}}\EmbracOn{}}}\EmbracOff{}}\hfill[Func]
 
 
 
 \index[fn]{fname@\texttt{fname}}%
+\begin{quote}
 deffn r slanted for \textsl{a---rg1} and \textsl{a--rg2}
+\end{quote}
 
 \noindent\texttt{foobar \EmbracOn{}\textnormal{\textsl{(var [from to [inc]]) 
default}}\EmbracOff{}}\hfill[Special Form]
 
@@ -144,7 +150,9 @@ deffn r slanted for \textsl{a---rg1} and \textsl{a--rg2}
 
 
 \index[fn]{foobar@\texttt{foobar}}%
+\begin{quote}
 separators
+\end{quote}
 
 \noindent\texttt{foobar \EmbracOn{}\textnormal{\textsl{va---riable 
default}}\EmbracOff{}}\hfill[Special Form]
 
@@ -208,7 +216,9 @@ separators
 
 
 \index[fn]{foobar@\texttt{foobar}}%
+\begin{quote}
 name
+\end{quote}
 
 \noindent\texttt{\texttt{.ft} 
\EmbracOn{}\textnormal{\textsl{[\EmbracOff{}\textnormal{\textsl{font}}\EmbracOn{}]}}\EmbracOff{}}\hfill[Request]
 
@@ -237,9 +247,11 @@ name
 
 
 \index[fn]{\textbackslash{}n[.sty]@\texttt{\texttt{\textbackslash{}n[.sty]}}}%
+\begin{quote}
 The \texttt{ft} request and the \texttt{\textbackslash{}f} escape change the 
current font
 to \textsl{font} (one-character name\hbox{}\textsl{f}, two-character name
 \textsl{fn}).
+\end{quote}
 
 \noindent\texttt{foobar \EmbracOn{}\textnormal{\textsl{[ 
\EmbracOff{}\textnormal{[}\EmbracOn{} \textsl{[} 
\EmbracMakeKnown{texttt}\texttt{[} \texttt{[} 
\EmbracOff{}\textnormal{\textsl{[}}\EmbracOn{} 
\EmbracOff{}\textnormal{\texttt{[}}\EmbracOn{} 
\EmbracOff{}\textnormal{\texttt{\textsl{[}}}\EmbracOn{} 
\EmbracOff{}\textnormal{\texttt{[}}\EmbracOn{} , 
\EmbracOff{}\textnormal{,}\EmbracOn{} \textsl{,} \texttt{,} \texttt{,} 
\EmbracOff{}\textnormal{\textsl{,}}\EmbracOn{} \EmbracOff{}\textnormal [...]
 
@@ -255,21 +267,27 @@ to \textsl{font} (one-character name\hbox{}\textsl{f}, 
two-character name
 
\cs_undefine:N{\embrac_texttt:nn}\cs_undefine:N{\embrac_orig_texttt:n}\cs_undefine:N{\__embrac_texttt:n}%
 \ExplSyntaxOff%
 \index[fn]{foobar@\texttt{foobar}}%
+\begin{quote}
 test formatting of separators
+\end{quote}
 
 \noindent\texttt{int foobar (int \textsl{f{-}{-}{-}oo}, float 
\textsl{b{-}{-}ar})}\hfill[Library Function]
 
 
 
 \index[fn]{foobar@\texttt{foobar}}%
+\begin{quote}
 \dots{}\@ with var for \textsl{f---oo} and \textsl{b--ar}
+\end{quote}
 
 \noindent\texttt{int foobar (int \textnormal{\textsl{f---oo}}, float 
\textnormal{\textsl{b--ar}})}\hfill[Library Function]
 
 
 
 \index[fn]{foobar@\texttt{foobar}}%
+\begin{quote}
 \dots{}\@ with r slanted for \textsl{f---oo} and \textsl{b--ar}
+\end{quote}
 
 \noindent{}produces:
 \noindent\texttt{border-pattern}\hfill[Class Option of \texttt{Window}]
@@ -277,14 +295,18 @@ test formatting of separators
 
 
 \index[vr]{border-pattern@\texttt{border-pattern}}%
+\begin{quote}
 \dots{}\@
+\end{quote}
 
 \noindent\texttt{\texttt{int} border-pattern}\hfill[Class Option of 
\texttt{Window}]
 
 
 
 \index[vr]{border-pattern of Window@\texttt{border-pattern of Window}}%
+\begin{quote}
 \dots{}\@
+\end{quote}
 
 \begin{quote}
 \noindent\texttt{int foobar (int \textsl{foo}, float 
\textsl{bar})}\hfill[Library Function]
@@ -292,22 +314,28 @@ test formatting of separators
 
 
 \index[fn]{foobar@\texttt{foobar}}%
+\begin{quote}
 \dots{}\@ for \textsl{foo} and \textsl{bar}
 \end{quote}
+\end{quote}
 
 \noindent\texttt{apply \EmbracOn{}\textnormal{\textsl{function \&rest 
arguments}}\EmbracOff{}}\hfill[Function]
 
 
 
 \index[fn]{apply@\texttt{apply}}%
+\begin{quote}
 \texttt{apply} calls no var \textsl{function} with \textsl{arguments}
+\end{quote}
 
 \noindent\texttt{apply \EmbracOn{}\textnormal{\textsl{function 
\EmbracOff{}\textnormal{\textbf{\&rest}}\EmbracOn{} 
argument}}\EmbracOff{}}\hfill[Function]
 
 
 
 \index[fn]{apply@\texttt{apply}}%
+\begin{quote}
 explicit keyword marking, no var \textsl{function} with \textsl{arguments}
+\end{quote}
 
 \noindent\texttt{name \EmbracOn{}\textnormal{\textsl{argument 
\EmbracMakeKnown{texttt}\texttt{int} \texttt{a{-}{-}b} \textsl{v--ar1}, word 
\texttt{{-}{-}} (\texttt{type o{-}{-}ther}, \textsl{v---ar2}  [\texttt{float} 
[\textsl{var4}]])}}\EmbracOff{}}\hfill[Category]
 
@@ -316,7 +344,9 @@ explicit keyword marking, no var \textsl{function} with 
\textsl{arguments}
 
\cs_undefine:N{\embrac_texttt:nn}\cs_undefine:N{\embrac_orig_texttt:n}\cs_undefine:N{\__embrac_texttt:n}%
 \ExplSyntaxOff%
 \index[fn]{name@\texttt{name}}%
+\begin{quote}
 In deffn with code and var used
+\end{quote}
 
 \noindent\texttt{int foobar (int \textsl{f{-}{-}{-}oo}[, float 
\textsl{b{-}{-}ar}]) default}\hfill[Library Function]
 
@@ -363,7 +393,9 @@ In deffn with code and var used
 
 
 \index[fn]{foobar@\texttt{foobar}}%
+\begin{quote}
 separators
+\end{quote}
 
 \noindent\texttt{int foobar (i{-}{-}nt \textsl{f{-}{-}{-}oo}[, float 
\textsl{b{-}{-}ar}]) default}\hfill[Library Function]
 
@@ -410,6 +442,8 @@ separators
 
 
 \index[fn]{foobar@\texttt{foobar}}%
+\begin{quote}
 name
+\end{quote}
 
 \end{document}
diff --git a/tp/t/results/converters_tests/image_formatting.pl 
b/tp/t/results/converters_tests/image_formatting.pl
index 25c42d057b..3c67915a90 100644
--- a/tp/t/results/converters_tests/image_formatting.pl
+++ b/tp/t/results/converters_tests/image_formatting.pl
@@ -3035,7 +3035,7 @@ $result_converted{'latex'}->{'image_formatting'} = 
'\\label{anchor:Top}%
 \\texttt{@image\\{@file\\{f{-}{-}ile\\}@@@.,aze,az,alt,@file\\{file ext\\} 
e{-}{-}xt@\\}} \\includegraphics[width=aze,height=az]{f--ile@.}
 \\includegraphics{image} \\includegraphics{image}
 
-\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em 
\\parskip=0pt \\parindent=0pt \\ttfamily{}%
+\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em 
\\parskip=0pt \\parindent=0pt \\ttfamily%
 \\texttt{@image\\{f{-}{-}ile\\}} \\includegraphics{f--ile}
 \\texttt{@image\\{f{-}{-}ile,l{-}{-}i\\}} \\includegraphics[width=l--i]{f--ile}
 \\texttt{@image\\{f{-}{-}ile,,l{-}{-}e\\}} 
\\includegraphics[height=l--e]{f--ile}
diff --git a/tp/t/results/converters_tests/test_deftypefnnewline.pl 
b/tp/t/results/converters_tests/test_deftypefnnewline.pl
index aee8f59aeb..c66f173721 100644
--- a/tp/t/results/converters_tests/test_deftypefnnewline.pl
+++ b/tp/t/results/converters_tests/test_deftypefnnewline.pl
@@ -3628,49 +3628,63 @@ $result_converted{'latex'}->{'test_deftypefnnewline'} = 
'
 
 
 \\index[fn]{name@\\texttt{name}}%
+\\begin{quote}
 aaa
+\\end{quote}
 
 
\\noindent\\texttt{t{-}{-}ype\\leavevmode{}\\\\d{-}{-}eftypefn\\_name}\\hfill[c--ategory]
 
 
 
 \\index[fn]{d--eftypefn\\_name@\\texttt{d{-}{-}eftypefn\\_name}}%
+\\begin{quote}
 d--eftypefn no arg
+\\end{quote}
 
 \\noindent\\texttt{t{-}{-}ype\\leavevmode{}\\\\d{-}{-}eftypeop\\_name 
a{-}{-}rguments...}\\hfill[c--ategory on \\texttt{c{-}{-}lass}]
 
 
 
 \\index[fn]{d--eftypeop\\_name on c--lass@\\texttt{d{-}{-}eftypeop\\_name on 
c{-}{-}lass}}%
+\\begin{quote}
 d--eftypeop
+\\end{quote}
 
 
\\noindent\\texttt{t{-}{-}ype\\leavevmode{}\\\\d{-}{-}eftypeop\\_name}\\hfill[c--ategory
 on \\texttt{c{-}{-}lass}]
 
 
 
 \\index[fn]{d--eftypeop\\_name on c--lass@\\texttt{d{-}{-}eftypeop\\_name on 
c{-}{-}lass}}%
+\\begin{quote}
 d--eftypeop no arg
+\\end{quote}
 
 \\noindent\\texttt{t{-}{-}ype d{-}{-}eftypecv\\_name}\\hfill[c--ategory of 
\\texttt{c{-}{-}lass}]
 
 
 
 \\index[vr]{d--eftypecv\\_name of c--lass@\\texttt{d{-}{-}eftypecv\\_name of 
c{-}{-}lass}}%
+\\begin{quote}
 d--eftypecv
+\\end{quote}
 
 \\noindent\\texttt{t{-}{-}ype d{-}{-}eftypecv\\_name 
a{-}{-}rguments...}\\hfill[c--ategory of \\texttt{c{-}{-}lass}]
 
 
 
 \\index[vr]{d--eftypecv\\_name of c--lass@\\texttt{d{-}{-}eftypecv\\_name of 
c{-}{-}lass}}%
+\\begin{quote}
 d--eftypecv with arguments
+\\end{quote}
 
 \\noindent\\texttt{arg}\\hfill[fun]
 
 
 
 \\index[fn]{arg@\\texttt{arg}}%
+\\begin{quote}
 fff
+\\end{quote}
 
 
 \\noindent\\texttt{data-type2 name2 arguments2...}\\hfill[Function]
@@ -3678,49 +3692,63 @@ fff
 
 
 \\index[fn]{name2@\\texttt{name2}}%
+\\begin{quote}
 aaa2
+\\end{quote}
 
 \\noindent\\texttt{t{-}{-}ype2 d{-}{-}eftypefn\\_name2}\\hfill[c--ategory2]
 
 
 
 \\index[fn]{d--eftypefn\\_name2@\\texttt{d{-}{-}eftypefn\\_name2}}%
+\\begin{quote}
 d--eftypefn no arg2
+\\end{quote}
 
 \\noindent\\texttt{t{-}{-}ype2 d{-}{-}eftypeop\\_name2 
a{-}{-}rguments2...}\\hfill[c--ategory2 on \\texttt{c{-}{-}lass2}]
 
 
 
 \\index[fn]{d--eftypeop\\_name2 on c--lass2@\\texttt{d{-}{-}eftypeop\\_name2 
on c{-}{-}lass2}}%
+\\begin{quote}
 d--eftypeop2
+\\end{quote}
 
 \\noindent\\texttt{t{-}{-}ype2 d{-}{-}eftypeop\\_name2}\\hfill[c--ategory2 on 
\\texttt{c{-}{-}lass2}]
 
 
 
 \\index[fn]{d--eftypeop\\_name2 on c--lass2@\\texttt{d{-}{-}eftypeop\\_name2 
on c{-}{-}lass2}}%
+\\begin{quote}
 d--eftypeop no arg2
+\\end{quote}
 
 \\noindent\\texttt{t{-}{-}ype2 d{-}{-}eftypecv\\_name2}\\hfill[c--ategory2 of 
\\texttt{c{-}{-}lass2}]
 
 
 
 \\index[vr]{d--eftypecv\\_name2 of c--lass2@\\texttt{d{-}{-}eftypecv\\_name2 
of c{-}{-}lass2}}%
+\\begin{quote}
 d--eftypecv2
+\\end{quote}
 
 \\noindent\\texttt{t{-}{-}ype2 d{-}{-}eftypecv\\_name2 
a{-}{-}rguments2...}\\hfill[c--ategory2 of \\texttt{c{-}{-}lass2}]
 
 
 
 \\index[vr]{d--eftypecv\\_name2 of c--lass2@\\texttt{d{-}{-}eftypecv\\_name2 
of c{-}{-}lass2}}%
+\\begin{quote}
 d--eftypecv with arguments2
+\\end{quote}
 
 \\noindent\\texttt{arg2}\\hfill[fun2]
 
 
 
 \\index[fn]{arg2@\\texttt{arg2}}%
+\\begin{quote}
 fff2
+\\end{quote}
 ';
 
 1;
diff --git a/tp/t/results/def/omit_def_space.pl 
b/tp/t/results/def/omit_def_space.pl
index c6e66002c2..a3f4915c4a 100644
--- a/tp/t/results/def/omit_def_space.pl
+++ b/tp/t/results/def/omit_def_space.pl
@@ -656,7 +656,9 @@ $result_converted{'latex'}->{'omit_def_space'} = 
'\\label{anchor:Top}%
 
 
 \\index[fn]{another@\\texttt{another}}%
+\\begin{quote}
 explain
+\\end{quote}
 ';
 
 1;
diff --git a/tp/t/results/latex_tests/combined_fonts.pl 
b/tp/t/results/latex_tests/combined_fonts.pl
index 43b0b5ada5..875cebb09c 100644
--- a/tp/t/results/latex_tests/combined_fonts.pl
+++ b/tp/t/results/latex_tests/combined_fonts.pl
@@ -1539,7 +1539,7 @@ $result_converted{'latex'}->{'combined_fonts'} = '
 \\textbf{\\textsl{slanted in b}}
 \\textsl{\\textbf{b in slanted}}
 
-\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em 
\\parskip=0pt \\parindent=0pt \\ttfamily{}%
+\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em 
\\parskip=0pt \\parindent=0pt \\ttfamily%
 \\textsl{var in example}
 \\GNUTexinfocommandstylecodetextcite{cite in example}
 \\endgroup{}%
diff --git 
a/tp/t/results/latex_tests/combined_fonts/res_latex/combined_fonts.tex 
b/tp/t/results/latex_tests/combined_fonts/res_latex/combined_fonts.tex
index 44e6fc4ade..42470506c4 100644
--- a/tp/t/results/latex_tests/combined_fonts/res_latex/combined_fonts.tex
+++ b/tp/t/results/latex_tests/combined_fonts/res_latex/combined_fonts.tex
@@ -84,7 +84,7 @@
 \textbf{\textsl{slanted in b}}
 \textsl{\textbf{b in slanted}}
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 \textsl{var in example}
 \GNUTexinfocommandstylecodetextcite{cite in example}
 \endgroup{}%
diff --git a/tp/t/results/latex_tests/example_in_cartouche.pl 
b/tp/t/results/latex_tests/example_in_cartouche.pl
index f086008928..ced9417994 100644
--- a/tp/t/results/latex_tests/example_in_cartouche.pl
+++ b/tp/t/results/latex_tests/example_in_cartouche.pl
@@ -345,7 +345,7 @@ New para
 \\end{mdframed}
 
 \\begin{mdframed}[style=GNUTexinfocartouche]
-\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em 
\\parskip=0pt \\parindent=0pt \\ttfamily{}%
+\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em 
\\parskip=0pt \\parindent=0pt \\ttfamily%
 \\% pwd
 /usr/local/share/emacs
 \\endgroup{}%
diff --git 
a/tp/t/results/latex_tests/example_in_cartouche/res_latex/example_in_cartouche.tex
 
b/tp/t/results/latex_tests/example_in_cartouche/res_latex/example_in_cartouche.tex
index 7e9641a228..583c46f029 100644
--- 
a/tp/t/results/latex_tests/example_in_cartouche/res_latex/example_in_cartouche.tex
+++ 
b/tp/t/results/latex_tests/example_in_cartouche/res_latex/example_in_cartouche.tex
@@ -70,7 +70,7 @@ New para
 \end{mdframed}
 
 \begin{mdframed}[style=GNUTexinfocartouche]
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 \% pwd
 /usr/local/share/emacs
 \endgroup{}%
diff --git a/tp/t/results/latex_tests/kbdinputstyle_and_kbd.pl 
b/tp/t/results/latex_tests/kbdinputstyle_and_kbd.pl
index 203d5f15f5..21cd888939 100644
--- a/tp/t/results/latex_tests/kbdinputstyle_and_kbd.pl
+++ b/tp/t/results/latex_tests/kbdinputstyle_and_kbd.pl
@@ -762,22 +762,22 @@ $result_floats{'kbdinputstyle_and_kbd'} = {};
 
 $result_converted{'latex'}->{'kbdinputstyle_and_kbd'} = '\\begin{document}
 {\\ttfamily\\textsl{default kbdinputstyle}}
-\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em 
\\parskip=0pt \\parindent=0pt \\ttfamily{}%
+\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em 
\\parskip=0pt \\parindent=0pt \\ttfamily%
 {\\ttfamily\\textsl{in example default kbdinputstyle}}
 \\endgroup{}%
 
 \\texttt{code kbdinputstyle}
-\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em 
\\parskip=0pt \\parindent=0pt \\ttfamily{}%
+\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em 
\\parskip=0pt \\parindent=0pt \\ttfamily%
 \\texttt{in example code kbdinputstyle}
 \\endgroup{}%
 
 {\\ttfamily\\textsl{example kbdinputstyle}}
-\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em 
\\parskip=0pt \\parindent=0pt \\ttfamily{}%
+\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em 
\\parskip=0pt \\parindent=0pt \\ttfamily%
 \\texttt{in example example kbdinputstyle}
 \\endgroup{}%
 
 {\\ttfamily\\textsl{distinct kbdinputstyle}}
-\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em 
\\parskip=0pt \\parindent=0pt \\ttfamily{}%
+\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em 
\\parskip=0pt \\parindent=0pt \\ttfamily%
 {\\ttfamily\\textsl{in example distinct kbdinputstyle}}
 \\endgroup{}%
 ';
diff --git a/tp/t/results/misc_commands/kbdinputstyle.pl 
b/tp/t/results/misc_commands/kbdinputstyle.pl
index 154ef8f6fd..bd1ebcc066 100644
--- a/tp/t/results/misc_commands/kbdinputstyle.pl
+++ b/tp/t/results/misc_commands/kbdinputstyle.pl
@@ -1711,7 +1711,7 @@ $result_converted{'latex'}->{'kbdinputstyle'} = '
 \\texttt{kbd \\texttt{in code}}.
 
 in example
-\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em 
\\parskip=0pt \\parindent=0pt \\ttfamily{}%
+\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em 
\\parskip=0pt \\parindent=0pt \\ttfamily%
 \\texttt{in code in example \\texttt{in nested code}}.
 \\texttt{kbd in example}.
 \\texttt{kbd \\texttt{in code} in example}.
@@ -1725,7 +1725,7 @@ in example
 \\texttt{kbd {\\ttfamily\\textsl{in code}}}.
 
 in example
-\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em 
\\parskip=0pt \\parindent=0pt \\ttfamily{}%
+\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em 
\\parskip=0pt \\parindent=0pt \\ttfamily%
 \\texttt{in code in example \\texttt{in nested code}}.
 \\texttt{kbd in example}.
 \\texttt{kbd \\texttt{in code} in example}.
@@ -1739,7 +1739,7 @@ in example
 \\texttt{kbd {\\ttfamily\\textsl{in code}}}.
 
 in example
-\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em 
\\parskip=0pt \\parindent=0pt \\ttfamily{}%
+\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em 
\\parskip=0pt \\parindent=0pt \\ttfamily%
 \\texttt{in code in example \\texttt{in nested code}}.
 {\\ttfamily\\textsl{kbd in example}}.
 \\texttt{kbd {\\ttfamily\\textsl{in code}} in example}.
diff --git 
a/tp/t/results/quotation/quotation_author_in_example/res_latex/quotation_author_in_example.tex
 
b/tp/t/results/quotation/quotation_author_in_example/res_latex/quotation_author_in_example.tex
index 031516a889..59bcab12e8 100644
--- 
a/tp/t/results/quotation/quotation_author_in_example/res_latex/quotation_author_in_example.tex
+++ 
b/tp/t/results/quotation/quotation_author_in_example/res_latex/quotation_author_in_example.tex
@@ -57,7 +57,7 @@
 
 \begin{document}
 \begin{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 A quot{-}{-}{-}ation
 \endgroup{}%
 \end{quote}
diff --git 
a/tp/t/results/xtable/inter_item_commands_in_table_in_example/res_latex/inter_item_commands_in_table_in_example.tex
 
b/tp/t/results/xtable/inter_item_commands_in_table_in_example/res_latex/inter_item_commands_in_table_in_example.tex
index 5d24b588ac..6b5f62f9e1 100644
--- 
a/tp/t/results/xtable/inter_item_commands_in_table_in_example/res_latex/inter_item_commands_in_table_in_example.tex
+++ 
b/tp/t/results/xtable/inter_item_commands_in_table_in_example/res_latex/inter_item_commands_in_table_in_example.tex
@@ -71,7 +71,7 @@
 \textsl{b}\\
 
 \textsl{c}}}]
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 l{-}{-}ine
 \endgroup{}%
 \item[{\parbox[b]{\linewidth}{%
diff --git a/tp/tests/layout/res_parser/formatting_latex/formatting.tex 
b/tp/tests/layout/res_parser/formatting_latex/formatting.tex
index 163b556de3..1e99bb827d 100644
--- a/tp/tests/layout/res_parser/formatting_latex/formatting.tex
+++ b/tp/tests/layout/res_parser/formatting_latex/formatting.tex
@@ -369,7 +369,7 @@ $$
 \index[cp]{vtable i--tem default kbdinputstyle@\texttt{vtable i{-}{-}tem 
default kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 {\ttfamily\textsl{in example default kbdinputstyle}}
 \endgroup{}%
 \begin{description}
@@ -386,7 +386,7 @@ $$
 \index[cp]{vtable i--tem code kbdinputstyle@\texttt{vtable i{-}{-}tem code 
kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 \texttt{in example code kbdinputstyle}
 \endgroup{}%
 \begin{description}
@@ -403,7 +403,7 @@ $$
 \index[cp]{vtable i--tem example kbdinputstyle@\texttt{vtable i{-}{-}tem 
example kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 \texttt{in example example kbdinputstyle}
 \endgroup{}%
 \begin{description}
@@ -420,7 +420,7 @@ $$
 \index[cp]{vtable i--tem distinct kbdinputstyle@\texttt{vtable i{-}{-}tem 
distinct kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 {\ttfamily\textsl{in example distinct kbdinputstyle}}
 \endgroup{}%
 \begin{description}
@@ -619,105 +619,105 @@ lone mu--ltitable item&\\
 truc &bidule\\
 \end{tabular}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 e{-}{-}xample  some
    text
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example one arg
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example two args
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example three args
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example four args
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example five args
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 The something \'{e} \TeX{} is here.
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 A @ at the end of the @example line.
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example with empty args
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example with empty and non empty args mix
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Exam{-}{-}{-}ple
 
 \endgroup{}%
 \noindent Other li---ne
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 not exdented
 \endgroup{}%
 
 \noindent exdented  and dash --- in example
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Not exdented one
 \endgroup{}%
 \noindent exdented two
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Not exdented two
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Example   Hoho.
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Nested Other line
 \endgroup{}%
 \noindent exdented nested other line
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize%
 s{-}{-}mallexample
 \endgroup{}%
 
 \texttt{@noindent} after smallexample.
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize%
 \$ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.guess?rev=HEAD\&content-type=text/plain'
 \$ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEAD\&content-type=text/plain'
 \endgroup{}%
 \noindent{}Less recent versions are also present.
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt {}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt %
 d--isplay
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \footnotesize%
 s--malldisplay
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 l{-}{-}isp
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize%
 s{-}{-}malllisp
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=0em \parskip=0pt 
\parindent=0pt {}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=0em \parskip=0pt 
\parindent=0pt %
 f--ormat
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=0em \parskip=0pt 
\parindent=0pt \footnotesize%
 s--mallformat
 \endgroup{}%
 
@@ -726,14 +726,18 @@ s--mallformat
 
 
 \index[fn]{d--effn\_name@\texttt{d{-}{-}effn\_name}}%
+\begin{quote}
 d--effn
+\end{quote}
 
 \noindent\texttt{de{-}{-}ffn\_name \EmbracOn{}\textnormal{\textsl{ar--guments  
  more args \leavevmode{}\\ even more so}}\EmbracOff{}}\hfill[cate--gory]
 
 
 
 \index[fn]{de--ffn\_name@\texttt{de{-}{-}ffn\_name}}%
+\begin{quote}
 def--fn
+\end{quote}
 
 \noindent\texttt{\textsl{i} \EmbracOn{}\textnormal{\textsl{a 
g}}\EmbracOff{}}\hfill[fset]
 
@@ -844,7 +848,9 @@ def--fn
 
 
 \index[fn]{truc@\texttt{truc}}%
+\begin{quote}
 text in def item for second def item
+\end{quote}
 
 
 \noindent\texttt{d{-}{-}efvr\_name}\hfill[c--ategory]
@@ -852,189 +858,243 @@ text in def item for second def item
 
 
 \index[cp]{d--efvr\_name@\texttt{d{-}{-}efvr\_name}}%
+\begin{quote}
 d--efvr
+\end{quote}
 
 \noindent\texttt{n{-}{-}ame 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[c--ategory]
 
 
 
 \index[fn]{n--ame@\texttt{n{-}{-}ame}}%
+\begin{quote}
 d--effn
+\end{quote}
 
 \noindent\texttt{n{-}{-}ame}\hfill[c--ategory]
 
 
 
 \index[fn]{n--ame@\texttt{n{-}{-}ame}}%
+\begin{quote}
 d--effn no arg
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypefn\_name 
a{-}{-}rguments...}\hfill[c--ategory]
 
 
 
 \index[fn]{d--eftypefn\_name@\texttt{d{-}{-}eftypefn\_name}}%
+\begin{quote}
 d--eftypefn
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypefn\_name}\hfill[c--ategory]
 
 
 
 \index[fn]{d--eftypefn\_name@\texttt{d{-}{-}eftypefn\_name}}%
+\begin{quote}
 d--eftypefn no arg
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeop\_name 
a{-}{-}rguments...}\hfill[c--ategory on \texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on 
c{-}{-}lass}}%
+\begin{quote}
 d--eftypeop
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeop\_name}\hfill[c--ategory on 
\texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on 
c{-}{-}lass}}%
+\begin{quote}
 d--eftypeop no arg
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypevr\_name}\hfill[c--ategory]
 
 
 
 \index[cp]{d--eftypevr\_name@\texttt{d{-}{-}eftypevr\_name}}%
+\begin{quote}
 d--eftypevr
+\end{quote}
 
 \noindent\texttt{d{-}{-}efcv\_name}\hfill[c--ategory of \texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--efcv\_name@\texttt{d{-}{-}efcv\_name}}%
+\begin{quote}
 d--efcv
+\end{quote}
 
 \noindent\texttt{d{-}{-}efcv\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[c--ategory 
of \texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--efcv\_name@\texttt{d{-}{-}efcv\_name}}%
+\begin{quote}
 d--efcv with arguments
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypecv\_name}\hfill[c--ategory of 
\texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of 
c{-}{-}lass}}%
+\begin{quote}
 d--eftypecv
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypecv\_name 
a{-}{-}rguments...}\hfill[c--ategory of \texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of 
c{-}{-}lass}}%
+\begin{quote}
 d--eftypecv with arguments
+\end{quote}
 
 \noindent\texttt{d{-}{-}efop\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[c--ategory 
on \texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
+\begin{quote}
 d--efop
+\end{quote}
 
 \noindent\texttt{d{-}{-}efop\_name}\hfill[c--ategory on \texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
+\begin{quote}
 d--efop no arg
+\end{quote}
 
 \noindent\texttt{d{-}{-}eftp\_name 
\EmbracOn{}\textnormal{\textsl{a--ttributes...}}\EmbracOff{}}\hfill[c--ategory]
 
 
 
 \index[tp]{d--eftp\_name@\texttt{d{-}{-}eftp\_name}}%
+\begin{quote}
 d--eftp
+\end{quote}
 
 \noindent\texttt{d{-}{-}efun\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Function]
 
 
 
 \index[fn]{d--efun\_name@\texttt{d{-}{-}efun\_name}}%
+\begin{quote}
 d--efun
+\end{quote}
 
 \noindent\texttt{d{-}{-}efmac\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Macro]
 
 
 
 \index[fn]{d--efmac\_name@\texttt{d{-}{-}efmac\_name}}%
+\begin{quote}
 d--efmac
+\end{quote}
 
 \noindent\texttt{d{-}{-}efspec\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Special Form]
 
 
 
 \index[fn]{d--efspec\_name@\texttt{d{-}{-}efspec\_name}}%
+\begin{quote}
 d--efspec
+\end{quote}
 
 \noindent\texttt{d{-}{-}efvar\_name}\hfill[Variable]
 
 
 
 \index[cp]{d--efvar\_name@\texttt{d{-}{-}efvar\_name}}%
+\begin{quote}
 d--efvar
+\end{quote}
 
 \noindent\texttt{d{-}{-}efvar\_name \EmbracOn{}\textnormal{\textsl{arg--var 
arg--var1}}\EmbracOff{}}\hfill[Variable]
 
 
 
 \index[cp]{d--efvar\_name@\texttt{d{-}{-}efvar\_name}}%
+\begin{quote}
 d--efvar with args
+\end{quote}
 
 \noindent\texttt{d{-}{-}efopt\_name}\hfill[User Option]
 
 
 
 \index[cp]{d--efopt\_name@\texttt{d{-}{-}efopt\_name}}%
+\begin{quote}
 d--efopt
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypefun\_name 
a{-}{-}rguments...}\hfill[Function]
 
 
 
 \index[fn]{d--eftypefun\_name@\texttt{d{-}{-}eftypefun\_name}}%
+\begin{quote}
 d--eftypefun
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypevar\_name}\hfill[Variable]
 
 
 
 \index[cp]{d--eftypevar\_name@\texttt{d{-}{-}eftypevar\_name}}%
+\begin{quote}
 d--eftypevar
+\end{quote}
 
 \noindent\texttt{d{-}{-}efivar\_name}\hfill[Instance Variable of 
\texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--efivar\_name of c--lass@\texttt{d{-}{-}efivar\_name of 
c{-}{-}lass}}%
+\begin{quote}
 d--efivar
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeivar\_name}\hfill[Instance Variable 
of \texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--eftypeivar\_name of c--lass@\texttt{d{-}{-}eftypeivar\_name of 
c{-}{-}lass}}%
+\begin{quote}
 d--eftypeivar
+\end{quote}
 
 \noindent\texttt{d{-}{-}efmethod\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Method on 
\texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--efmethod\_name on c--lass@\texttt{d{-}{-}efmethod\_name on 
c{-}{-}lass}}%
+\begin{quote}
 d--efmethod
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypemethod\_name 
a{-}{-}rguments...}\hfill[Method on \texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--eftypemethod\_name on c--lass@\texttt{d{-}{-}eftypemethod\_name 
on c{-}{-}lass}}%
+\begin{quote}
 d--eftypemethod
+\end{quote}
 
 
 \noindent\texttt{data-type2\leavevmode{}\\name2 arguments2...}\hfill[Function]
@@ -1042,49 +1102,63 @@ d--eftypemethod
 
 
 \index[fn]{name2@\texttt{name2}}%
+\begin{quote}
 aaa2
+\end{quote}
 
 
\noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypefn\_name2}\hfill[c--ategory2]
 
 
 
 \index[fn]{d--eftypefn\_name2@\texttt{d{-}{-}eftypefn\_name2}}%
+\begin{quote}
 d--eftypefn no arg2
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2 
a{-}{-}rguments2...}\hfill[c--ategory2 on \texttt{c{-}{-}lass2}]
 
 
 
 \index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on 
c{-}{-}lass2}}%
+\begin{quote}
 d--eftypeop2
+\end{quote}
 
 
\noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2}\hfill[c--ategory2
 on \texttt{c{-}{-}lass2}]
 
 
 
 \index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on 
c{-}{-}lass2}}%
+\begin{quote}
 d--eftypeop no arg2
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype2 d{-}{-}eftypecv\_name2}\hfill[c--ategory2 of 
\texttt{c{-}{-}lass2}]
 
 
 
 \index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of 
c{-}{-}lass2}}%
+\begin{quote}
 d--eftypecv2
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype2 d{-}{-}eftypecv\_name2 
a{-}{-}rguments2...}\hfill[c--ategory2 of \texttt{c{-}{-}lass2}]
 
 
 
 \index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of 
c{-}{-}lass2}}%
+\begin{quote}
 d--eftypecv with arguments2
+\end{quote}
 
 \noindent\texttt{arg2}\hfill[fun2]
 
 
 
 \index[fn]{arg2@\texttt{arg2}}%
+\begin{quote}
 fff2
+\end{quote}
 
 
 \texttt{@xref\{c{-}{-}{-}hapter@@, cross r{-}{-}{-}ef name@@, 
t{-}{-}{-}itle@@, file n{-}{-}{-}ame@@, ma{-}{-}{-}nual@@\}} See Section 
``t---itle@'' in \textsl{ma---nual@}.
@@ -1712,7 +1786,7 @@ $$
 \index[cp]{vtable i--tem default kbdinputstyle@\texttt{vtable i{-}{-}tem 
default kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 {\ttfamily\textsl{in example default kbdinputstyle}}
 \endgroup{}%
 \begin{description}
@@ -1729,7 +1803,7 @@ $$
 \index[cp]{vtable i--tem code kbdinputstyle@\texttt{vtable i{-}{-}tem code 
kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 \texttt{in example code kbdinputstyle}
 \endgroup{}%
 \begin{description}
@@ -1746,7 +1820,7 @@ $$
 \index[cp]{vtable i--tem example kbdinputstyle@\texttt{vtable i{-}{-}tem 
example kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 \texttt{in example example kbdinputstyle}
 \endgroup{}%
 \begin{description}
@@ -1763,7 +1837,7 @@ $$
 \index[cp]{vtable i--tem distinct kbdinputstyle@\texttt{vtable i{-}{-}tem 
distinct kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 {\ttfamily\textsl{in example distinct kbdinputstyle}}
 \endgroup{}%
 \begin{description}
@@ -1962,105 +2036,105 @@ lone mu--ltitable item&\\
 truc &bidule\\
 \end{tabular}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 e{-}{-}xample  some
    text
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example one arg
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example two args
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example three args
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example four args
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example five args
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 The something \'{e} \TeX{} is here.
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 A @ at the end of the @example line.
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example with empty args
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example with empty and non empty args mix
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Exam{-}{-}{-}ple
 
 \endgroup{}%
 \noindent Other li---ne
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 not exdented
 \endgroup{}%
 
 \noindent exdented  and dash --- in example
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Not exdented one
 \endgroup{}%
 \noindent exdented two
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Not exdented two
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Example   Hoho.
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Nested Other line
 \endgroup{}%
 \noindent exdented nested other line
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize%
 s{-}{-}mallexample
 \endgroup{}%
 
 \texttt{@noindent} after smallexample.
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize%
 \$ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.guess?rev=HEAD\&content-type=text/plain'
 \$ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEAD\&content-type=text/plain'
 \endgroup{}%
 \noindent{}Less recent versions are also present.
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt {}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt %
 d--isplay
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \footnotesize%
 s--malldisplay
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 l{-}{-}isp
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize%
 s{-}{-}malllisp
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=0em \parskip=0pt 
\parindent=0pt {}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=0em \parskip=0pt 
\parindent=0pt %
 f--ormat
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=0em \parskip=0pt 
\parindent=0pt \footnotesize%
 s--mallformat
 \endgroup{}%
 
@@ -2069,14 +2143,18 @@ s--mallformat
 
 
 \index[fn]{d--effn\_name@\texttt{d{-}{-}effn\_name}}%
+\begin{quote}
 d--effn
+\end{quote}
 
 \noindent\texttt{de{-}{-}ffn\_name \EmbracOn{}\textnormal{\textsl{ar--guments  
  more args \leavevmode{}\\ even more so}}\EmbracOff{}}\hfill[cate--gory]
 
 
 
 \index[fn]{de--ffn\_name@\texttt{de{-}{-}ffn\_name}}%
+\begin{quote}
 def--fn
+\end{quote}
 
 \noindent\texttt{\textsl{i} \EmbracOn{}\textnormal{\textsl{a 
g}}\EmbracOff{}}\hfill[fset]
 
@@ -2187,7 +2265,9 @@ def--fn
 
 
 \index[fn]{truc@\texttt{truc}}%
+\begin{quote}
 text in def item for second def item
+\end{quote}
 
 
 \noindent\texttt{d{-}{-}efvr\_name}\hfill[c--ategory]
@@ -2195,189 +2275,243 @@ text in def item for second def item
 
 
 \index[cp]{d--efvr\_name@\texttt{d{-}{-}efvr\_name}}%
+\begin{quote}
 d--efvr
+\end{quote}
 
 \noindent\texttt{n{-}{-}ame 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[c--ategory]
 
 
 
 \index[fn]{n--ame@\texttt{n{-}{-}ame}}%
+\begin{quote}
 d--effn
+\end{quote}
 
 \noindent\texttt{n{-}{-}ame}\hfill[c--ategory]
 
 
 
 \index[fn]{n--ame@\texttt{n{-}{-}ame}}%
+\begin{quote}
 d--effn no arg
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypefn\_name 
a{-}{-}rguments...}\hfill[c--ategory]
 
 
 
 \index[fn]{d--eftypefn\_name@\texttt{d{-}{-}eftypefn\_name}}%
+\begin{quote}
 d--eftypefn
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypefn\_name}\hfill[c--ategory]
 
 
 
 \index[fn]{d--eftypefn\_name@\texttt{d{-}{-}eftypefn\_name}}%
+\begin{quote}
 d--eftypefn no arg
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeop\_name 
a{-}{-}rguments...}\hfill[c--ategory on \texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on 
c{-}{-}lass}}%
+\begin{quote}
 d--eftypeop
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeop\_name}\hfill[c--ategory on 
\texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on 
c{-}{-}lass}}%
+\begin{quote}
 d--eftypeop no arg
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypevr\_name}\hfill[c--ategory]
 
 
 
 \index[cp]{d--eftypevr\_name@\texttt{d{-}{-}eftypevr\_name}}%
+\begin{quote}
 d--eftypevr
+\end{quote}
 
 \noindent\texttt{d{-}{-}efcv\_name}\hfill[c--ategory of \texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--efcv\_name@\texttt{d{-}{-}efcv\_name}}%
+\begin{quote}
 d--efcv
+\end{quote}
 
 \noindent\texttt{d{-}{-}efcv\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[c--ategory 
of \texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--efcv\_name@\texttt{d{-}{-}efcv\_name}}%
+\begin{quote}
 d--efcv with arguments
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypecv\_name}\hfill[c--ategory of 
\texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of 
c{-}{-}lass}}%
+\begin{quote}
 d--eftypecv
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypecv\_name 
a{-}{-}rguments...}\hfill[c--ategory of \texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of 
c{-}{-}lass}}%
+\begin{quote}
 d--eftypecv with arguments
+\end{quote}
 
 \noindent\texttt{d{-}{-}efop\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[c--ategory 
on \texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
+\begin{quote}
 d--efop
+\end{quote}
 
 \noindent\texttt{d{-}{-}efop\_name}\hfill[c--ategory on \texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
+\begin{quote}
 d--efop no arg
+\end{quote}
 
 \noindent\texttt{d{-}{-}eftp\_name 
\EmbracOn{}\textnormal{\textsl{a--ttributes...}}\EmbracOff{}}\hfill[c--ategory]
 
 
 
 \index[tp]{d--eftp\_name@\texttt{d{-}{-}eftp\_name}}%
+\begin{quote}
 d--eftp
+\end{quote}
 
 \noindent\texttt{d{-}{-}efun\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Function]
 
 
 
 \index[fn]{d--efun\_name@\texttt{d{-}{-}efun\_name}}%
+\begin{quote}
 d--efun
+\end{quote}
 
 \noindent\texttt{d{-}{-}efmac\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Macro]
 
 
 
 \index[fn]{d--efmac\_name@\texttt{d{-}{-}efmac\_name}}%
+\begin{quote}
 d--efmac
+\end{quote}
 
 \noindent\texttt{d{-}{-}efspec\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Special Form]
 
 
 
 \index[fn]{d--efspec\_name@\texttt{d{-}{-}efspec\_name}}%
+\begin{quote}
 d--efspec
+\end{quote}
 
 \noindent\texttt{d{-}{-}efvar\_name}\hfill[Variable]
 
 
 
 \index[cp]{d--efvar\_name@\texttt{d{-}{-}efvar\_name}}%
+\begin{quote}
 d--efvar
+\end{quote}
 
 \noindent\texttt{d{-}{-}efvar\_name \EmbracOn{}\textnormal{\textsl{arg--var 
arg--var1}}\EmbracOff{}}\hfill[Variable]
 
 
 
 \index[cp]{d--efvar\_name@\texttt{d{-}{-}efvar\_name}}%
+\begin{quote}
 d--efvar with args
+\end{quote}
 
 \noindent\texttt{d{-}{-}efopt\_name}\hfill[User Option]
 
 
 
 \index[cp]{d--efopt\_name@\texttt{d{-}{-}efopt\_name}}%
+\begin{quote}
 d--efopt
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypefun\_name 
a{-}{-}rguments...}\hfill[Function]
 
 
 
 \index[fn]{d--eftypefun\_name@\texttt{d{-}{-}eftypefun\_name}}%
+\begin{quote}
 d--eftypefun
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypevar\_name}\hfill[Variable]
 
 
 
 \index[cp]{d--eftypevar\_name@\texttt{d{-}{-}eftypevar\_name}}%
+\begin{quote}
 d--eftypevar
+\end{quote}
 
 \noindent\texttt{d{-}{-}efivar\_name}\hfill[Instance Variable of 
\texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--efivar\_name of c--lass@\texttt{d{-}{-}efivar\_name of 
c{-}{-}lass}}%
+\begin{quote}
 d--efivar
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeivar\_name}\hfill[Instance Variable 
of \texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--eftypeivar\_name of c--lass@\texttt{d{-}{-}eftypeivar\_name of 
c{-}{-}lass}}%
+\begin{quote}
 d--eftypeivar
+\end{quote}
 
 \noindent\texttt{d{-}{-}efmethod\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Method on 
\texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--efmethod\_name on c--lass@\texttt{d{-}{-}efmethod\_name on 
c{-}{-}lass}}%
+\begin{quote}
 d--efmethod
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypemethod\_name 
a{-}{-}rguments...}\hfill[Method on \texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--eftypemethod\_name on c--lass@\texttt{d{-}{-}eftypemethod\_name 
on c{-}{-}lass}}%
+\begin{quote}
 d--eftypemethod
+\end{quote}
 
 
 \noindent\texttt{data-type2\leavevmode{}\\name2 arguments2...}\hfill[Function]
@@ -2385,49 +2519,63 @@ d--eftypemethod
 
 
 \index[fn]{name2@\texttt{name2}}%
+\begin{quote}
 aaa2
+\end{quote}
 
 
\noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypefn\_name2}\hfill[c--ategory2]
 
 
 
 \index[fn]{d--eftypefn\_name2@\texttt{d{-}{-}eftypefn\_name2}}%
+\begin{quote}
 d--eftypefn no arg2
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2 
a{-}{-}rguments2...}\hfill[c--ategory2 on \texttt{c{-}{-}lass2}]
 
 
 
 \index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on 
c{-}{-}lass2}}%
+\begin{quote}
 d--eftypeop2
+\end{quote}
 
 
\noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2}\hfill[c--ategory2
 on \texttt{c{-}{-}lass2}]
 
 
 
 \index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on 
c{-}{-}lass2}}%
+\begin{quote}
 d--eftypeop no arg2
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype2 d{-}{-}eftypecv\_name2}\hfill[c--ategory2 of 
\texttt{c{-}{-}lass2}]
 
 
 
 \index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of 
c{-}{-}lass2}}%
+\begin{quote}
 d--eftypecv2
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype2 d{-}{-}eftypecv\_name2 
a{-}{-}rguments2...}\hfill[c--ategory2 of \texttt{c{-}{-}lass2}]
 
 
 
 \index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of 
c{-}{-}lass2}}%
+\begin{quote}
 d--eftypecv with arguments2
+\end{quote}
 
 \noindent\texttt{arg2}\hfill[fun2]
 
 
 
 \index[fn]{arg2@\texttt{arg2}}%
+\begin{quote}
 fff2
+\end{quote}
 
 
 \texttt{@xref\{c{-}{-}{-}hapter@@, cross r{-}{-}{-}ef name@@, 
t{-}{-}{-}itle@@, file n{-}{-}{-}ame@@, ma{-}{-}{-}nual@@\}} See Section 
``t---itle@'' in \textsl{ma---nual@}.
@@ -3076,7 +3224,7 @@ $$
 \index[cp]{vtable i--tem default kbdinputstyle@\texttt{vtable i{-}{-}tem 
default kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 {\ttfamily\textsl{in example default kbdinputstyle}}
 \endgroup{}%
 \begin{description}
@@ -3093,7 +3241,7 @@ $$
 \index[cp]{vtable i--tem code kbdinputstyle@\texttt{vtable i{-}{-}tem code 
kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 \texttt{in example code kbdinputstyle}
 \endgroup{}%
 \begin{description}
@@ -3110,7 +3258,7 @@ $$
 \index[cp]{vtable i--tem example kbdinputstyle@\texttt{vtable i{-}{-}tem 
example kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 \texttt{in example example kbdinputstyle}
 \endgroup{}%
 \begin{description}
@@ -3127,7 +3275,7 @@ $$
 \index[cp]{vtable i--tem distinct kbdinputstyle@\texttt{vtable i{-}{-}tem 
distinct kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 {\ttfamily\textsl{in example distinct kbdinputstyle}}
 \endgroup{}%
 \begin{description}
@@ -3326,105 +3474,105 @@ lone mu--ltitable item&\\
 truc &bidule\\
 \end{tabular}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 e{-}{-}xample  some
    text
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example one arg
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example two args
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example three args
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example four args
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example five args
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 The something \'{e} \TeX{} is here.
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 A @ at the end of the @example line.
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example with empty args
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example with empty and non empty args mix
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Exam{-}{-}{-}ple
 
 \endgroup{}%
 \noindent Other li---ne
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 not exdented
 \endgroup{}%
 
 \noindent exdented  and dash --- in example
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Not exdented one
 \endgroup{}%
 \noindent exdented two
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Not exdented two
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Example   Hoho.
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Nested Other line
 \endgroup{}%
 \noindent exdented nested other line
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize%
 s{-}{-}mallexample
 \endgroup{}%
 
 \texttt{@noindent} after smallexample.
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize%
 \$ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.guess?rev=HEAD\&content-type=text/plain'
 \$ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEAD\&content-type=text/plain'
 \endgroup{}%
 \noindent{}Less recent versions are also present.
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt {}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt %
 d--isplay
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \footnotesize%
 s--malldisplay
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 l{-}{-}isp
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize%
 s{-}{-}malllisp
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=0em \parskip=0pt 
\parindent=0pt {}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=0em \parskip=0pt 
\parindent=0pt %
 f--ormat
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=0em \parskip=0pt 
\parindent=0pt \footnotesize%
 s--mallformat
 \endgroup{}%
 
@@ -3433,14 +3581,18 @@ s--mallformat
 
 
 \index[fn]{d--effn\_name@\texttt{d{-}{-}effn\_name}}%
+\begin{quote}
 d--effn
+\end{quote}
 
 \noindent\texttt{de{-}{-}ffn\_name \EmbracOn{}\textnormal{\textsl{ar--guments  
  more args \leavevmode{}\\ even more so}}\EmbracOff{}}\hfill[cate--gory]
 
 
 
 \index[fn]{de--ffn\_name@\texttt{de{-}{-}ffn\_name}}%
+\begin{quote}
 def--fn
+\end{quote}
 
 \noindent\texttt{\textsl{i} \EmbracOn{}\textnormal{\textsl{a 
g}}\EmbracOff{}}\hfill[fset]
 
@@ -3551,7 +3703,9 @@ def--fn
 
 
 \index[fn]{truc@\texttt{truc}}%
+\begin{quote}
 text in def item for second def item
+\end{quote}
 
 
 \noindent\texttt{d{-}{-}efvr\_name}\hfill[c--ategory]
@@ -3559,189 +3713,243 @@ text in def item for second def item
 
 
 \index[cp]{d--efvr\_name@\texttt{d{-}{-}efvr\_name}}%
+\begin{quote}
 d--efvr
+\end{quote}
 
 \noindent\texttt{n{-}{-}ame 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[c--ategory]
 
 
 
 \index[fn]{n--ame@\texttt{n{-}{-}ame}}%
+\begin{quote}
 d--effn
+\end{quote}
 
 \noindent\texttt{n{-}{-}ame}\hfill[c--ategory]
 
 
 
 \index[fn]{n--ame@\texttt{n{-}{-}ame}}%
+\begin{quote}
 d--effn no arg
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypefn\_name 
a{-}{-}rguments...}\hfill[c--ategory]
 
 
 
 \index[fn]{d--eftypefn\_name@\texttt{d{-}{-}eftypefn\_name}}%
+\begin{quote}
 d--eftypefn
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypefn\_name}\hfill[c--ategory]
 
 
 
 \index[fn]{d--eftypefn\_name@\texttt{d{-}{-}eftypefn\_name}}%
+\begin{quote}
 d--eftypefn no arg
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeop\_name 
a{-}{-}rguments...}\hfill[c--ategory on \texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on 
c{-}{-}lass}}%
+\begin{quote}
 d--eftypeop
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeop\_name}\hfill[c--ategory on 
\texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on 
c{-}{-}lass}}%
+\begin{quote}
 d--eftypeop no arg
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypevr\_name}\hfill[c--ategory]
 
 
 
 \index[cp]{d--eftypevr\_name@\texttt{d{-}{-}eftypevr\_name}}%
+\begin{quote}
 d--eftypevr
+\end{quote}
 
 \noindent\texttt{d{-}{-}efcv\_name}\hfill[c--ategory of \texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--efcv\_name@\texttt{d{-}{-}efcv\_name}}%
+\begin{quote}
 d--efcv
+\end{quote}
 
 \noindent\texttt{d{-}{-}efcv\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[c--ategory 
of \texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--efcv\_name@\texttt{d{-}{-}efcv\_name}}%
+\begin{quote}
 d--efcv with arguments
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypecv\_name}\hfill[c--ategory of 
\texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of 
c{-}{-}lass}}%
+\begin{quote}
 d--eftypecv
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypecv\_name 
a{-}{-}rguments...}\hfill[c--ategory of \texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of 
c{-}{-}lass}}%
+\begin{quote}
 d--eftypecv with arguments
+\end{quote}
 
 \noindent\texttt{d{-}{-}efop\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[c--ategory 
on \texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
+\begin{quote}
 d--efop
+\end{quote}
 
 \noindent\texttt{d{-}{-}efop\_name}\hfill[c--ategory on \texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
+\begin{quote}
 d--efop no arg
+\end{quote}
 
 \noindent\texttt{d{-}{-}eftp\_name 
\EmbracOn{}\textnormal{\textsl{a--ttributes...}}\EmbracOff{}}\hfill[c--ategory]
 
 
 
 \index[tp]{d--eftp\_name@\texttt{d{-}{-}eftp\_name}}%
+\begin{quote}
 d--eftp
+\end{quote}
 
 \noindent\texttt{d{-}{-}efun\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Function]
 
 
 
 \index[fn]{d--efun\_name@\texttt{d{-}{-}efun\_name}}%
+\begin{quote}
 d--efun
+\end{quote}
 
 \noindent\texttt{d{-}{-}efmac\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Macro]
 
 
 
 \index[fn]{d--efmac\_name@\texttt{d{-}{-}efmac\_name}}%
+\begin{quote}
 d--efmac
+\end{quote}
 
 \noindent\texttt{d{-}{-}efspec\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Special Form]
 
 
 
 \index[fn]{d--efspec\_name@\texttt{d{-}{-}efspec\_name}}%
+\begin{quote}
 d--efspec
+\end{quote}
 
 \noindent\texttt{d{-}{-}efvar\_name}\hfill[Variable]
 
 
 
 \index[cp]{d--efvar\_name@\texttt{d{-}{-}efvar\_name}}%
+\begin{quote}
 d--efvar
+\end{quote}
 
 \noindent\texttt{d{-}{-}efvar\_name \EmbracOn{}\textnormal{\textsl{arg--var 
arg--var1}}\EmbracOff{}}\hfill[Variable]
 
 
 
 \index[cp]{d--efvar\_name@\texttt{d{-}{-}efvar\_name}}%
+\begin{quote}
 d--efvar with args
+\end{quote}
 
 \noindent\texttt{d{-}{-}efopt\_name}\hfill[User Option]
 
 
 
 \index[cp]{d--efopt\_name@\texttt{d{-}{-}efopt\_name}}%
+\begin{quote}
 d--efopt
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypefun\_name 
a{-}{-}rguments...}\hfill[Function]
 
 
 
 \index[fn]{d--eftypefun\_name@\texttt{d{-}{-}eftypefun\_name}}%
+\begin{quote}
 d--eftypefun
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypevar\_name}\hfill[Variable]
 
 
 
 \index[cp]{d--eftypevar\_name@\texttt{d{-}{-}eftypevar\_name}}%
+\begin{quote}
 d--eftypevar
+\end{quote}
 
 \noindent\texttt{d{-}{-}efivar\_name}\hfill[Instance Variable of 
\texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--efivar\_name of c--lass@\texttt{d{-}{-}efivar\_name of 
c{-}{-}lass}}%
+\begin{quote}
 d--efivar
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeivar\_name}\hfill[Instance Variable 
of \texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--eftypeivar\_name of c--lass@\texttt{d{-}{-}eftypeivar\_name of 
c{-}{-}lass}}%
+\begin{quote}
 d--eftypeivar
+\end{quote}
 
 \noindent\texttt{d{-}{-}efmethod\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Method on 
\texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--efmethod\_name on c--lass@\texttt{d{-}{-}efmethod\_name on 
c{-}{-}lass}}%
+\begin{quote}
 d--efmethod
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypemethod\_name 
a{-}{-}rguments...}\hfill[Method on \texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--eftypemethod\_name on c--lass@\texttt{d{-}{-}eftypemethod\_name 
on c{-}{-}lass}}%
+\begin{quote}
 d--eftypemethod
+\end{quote}
 
 
 \noindent\texttt{data-type2\leavevmode{}\\name2 arguments2...}\hfill[Function]
@@ -3749,49 +3957,63 @@ d--eftypemethod
 
 
 \index[fn]{name2@\texttt{name2}}%
+\begin{quote}
 aaa2
+\end{quote}
 
 
\noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypefn\_name2}\hfill[c--ategory2]
 
 
 
 \index[fn]{d--eftypefn\_name2@\texttt{d{-}{-}eftypefn\_name2}}%
+\begin{quote}
 d--eftypefn no arg2
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2 
a{-}{-}rguments2...}\hfill[c--ategory2 on \texttt{c{-}{-}lass2}]
 
 
 
 \index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on 
c{-}{-}lass2}}%
+\begin{quote}
 d--eftypeop2
+\end{quote}
 
 
\noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2}\hfill[c--ategory2
 on \texttt{c{-}{-}lass2}]
 
 
 
 \index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on 
c{-}{-}lass2}}%
+\begin{quote}
 d--eftypeop no arg2
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype2 d{-}{-}eftypecv\_name2}\hfill[c--ategory2 of 
\texttt{c{-}{-}lass2}]
 
 
 
 \index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of 
c{-}{-}lass2}}%
+\begin{quote}
 d--eftypecv2
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype2 d{-}{-}eftypecv\_name2 
a{-}{-}rguments2...}\hfill[c--ategory2 of \texttt{c{-}{-}lass2}]
 
 
 
 \index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of 
c{-}{-}lass2}}%
+\begin{quote}
 d--eftypecv with arguments2
+\end{quote}
 
 \noindent\texttt{arg2}\hfill[fun2]
 
 
 
 \index[fn]{arg2@\texttt{arg2}}%
+\begin{quote}
 fff2
+\end{quote}
 
 
 \texttt{@xref\{c{-}{-}{-}hapter@@, cross r{-}{-}{-}ef name@@, 
t{-}{-}{-}itle@@, file n{-}{-}{-}ame@@, ma{-}{-}{-}nual@@\}} See Section 
``t---itle@'' in \textsl{ma---nual@}.
@@ -4418,7 +4640,7 @@ $$
 \index[cp]{vtable i--tem default kbdinputstyle@\texttt{vtable i{-}{-}tem 
default kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 {\ttfamily\textsl{in example default kbdinputstyle}}
 \endgroup{}%
 \begin{description}
@@ -4435,7 +4657,7 @@ $$
 \index[cp]{vtable i--tem code kbdinputstyle@\texttt{vtable i{-}{-}tem code 
kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 \texttt{in example code kbdinputstyle}
 \endgroup{}%
 \begin{description}
@@ -4452,7 +4674,7 @@ $$
 \index[cp]{vtable i--tem example kbdinputstyle@\texttt{vtable i{-}{-}tem 
example kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 \texttt{in example example kbdinputstyle}
 \endgroup{}%
 \begin{description}
@@ -4469,7 +4691,7 @@ $$
 \index[cp]{vtable i--tem distinct kbdinputstyle@\texttt{vtable i{-}{-}tem 
distinct kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 {\ttfamily\textsl{in example distinct kbdinputstyle}}
 \endgroup{}%
 \begin{description}
@@ -4668,105 +4890,105 @@ lone mu--ltitable item&\\
 truc &bidule\\
 \end{tabular}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 e{-}{-}xample  some
    text
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example one arg
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example two args
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example three args
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example four args
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example five args
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 The something \'{e} \TeX{} is here.
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 A @ at the end of the @example line.
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example with empty args
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example with empty and non empty args mix
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Exam{-}{-}{-}ple
 
 \endgroup{}%
 \noindent Other li---ne
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 not exdented
 \endgroup{}%
 
 \noindent exdented  and dash --- in example
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Not exdented one
 \endgroup{}%
 \noindent exdented two
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Not exdented two
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Example   Hoho.
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Nested Other line
 \endgroup{}%
 \noindent exdented nested other line
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize%
 s{-}{-}mallexample
 \endgroup{}%
 
 \texttt{@noindent} after smallexample.
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize%
 \$ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.guess?rev=HEAD\&content-type=text/plain'
 \$ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEAD\&content-type=text/plain'
 \endgroup{}%
 \noindent{}Less recent versions are also present.
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt {}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt %
 d--isplay
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \footnotesize%
 s--malldisplay
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 l{-}{-}isp
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize%
 s{-}{-}malllisp
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=0em \parskip=0pt 
\parindent=0pt {}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=0em \parskip=0pt 
\parindent=0pt %
 f--ormat
 \endgroup{}%
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=0em \parskip=0pt 
\parindent=0pt \footnotesize%
 s--mallformat
 \endgroup{}%
 
@@ -4775,14 +4997,18 @@ s--mallformat
 
 
 \index[fn]{d--effn\_name@\texttt{d{-}{-}effn\_name}}%
+\begin{quote}
 d--effn
+\end{quote}
 
 \noindent\texttt{de{-}{-}ffn\_name \EmbracOn{}\textnormal{\textsl{ar--guments  
  more args \leavevmode{}\\ even more so}}\EmbracOff{}}\hfill[cate--gory]
 
 
 
 \index[fn]{de--ffn\_name@\texttt{de{-}{-}ffn\_name}}%
+\begin{quote}
 def--fn
+\end{quote}
 
 \noindent\texttt{\textsl{i} \EmbracOn{}\textnormal{\textsl{a 
g}}\EmbracOff{}}\hfill[fset]
 
@@ -4893,7 +5119,9 @@ def--fn
 
 
 \index[fn]{truc@\texttt{truc}}%
+\begin{quote}
 text in def item for second def item
+\end{quote}
 
 
 \noindent\texttt{d{-}{-}efvr\_name}\hfill[c--ategory]
@@ -4901,189 +5129,243 @@ text in def item for second def item
 
 
 \index[cp]{d--efvr\_name@\texttt{d{-}{-}efvr\_name}}%
+\begin{quote}
 d--efvr
+\end{quote}
 
 \noindent\texttt{n{-}{-}ame 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[c--ategory]
 
 
 
 \index[fn]{n--ame@\texttt{n{-}{-}ame}}%
+\begin{quote}
 d--effn
+\end{quote}
 
 \noindent\texttt{n{-}{-}ame}\hfill[c--ategory]
 
 
 
 \index[fn]{n--ame@\texttt{n{-}{-}ame}}%
+\begin{quote}
 d--effn no arg
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypefn\_name 
a{-}{-}rguments...}\hfill[c--ategory]
 
 
 
 \index[fn]{d--eftypefn\_name@\texttt{d{-}{-}eftypefn\_name}}%
+\begin{quote}
 d--eftypefn
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypefn\_name}\hfill[c--ategory]
 
 
 
 \index[fn]{d--eftypefn\_name@\texttt{d{-}{-}eftypefn\_name}}%
+\begin{quote}
 d--eftypefn no arg
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeop\_name 
a{-}{-}rguments...}\hfill[c--ategory on \texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on 
c{-}{-}lass}}%
+\begin{quote}
 d--eftypeop
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeop\_name}\hfill[c--ategory on 
\texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on 
c{-}{-}lass}}%
+\begin{quote}
 d--eftypeop no arg
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypevr\_name}\hfill[c--ategory]
 
 
 
 \index[cp]{d--eftypevr\_name@\texttt{d{-}{-}eftypevr\_name}}%
+\begin{quote}
 d--eftypevr
+\end{quote}
 
 \noindent\texttt{d{-}{-}efcv\_name}\hfill[c--ategory of \texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--efcv\_name@\texttt{d{-}{-}efcv\_name}}%
+\begin{quote}
 d--efcv
+\end{quote}
 
 \noindent\texttt{d{-}{-}efcv\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[c--ategory 
of \texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--efcv\_name@\texttt{d{-}{-}efcv\_name}}%
+\begin{quote}
 d--efcv with arguments
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypecv\_name}\hfill[c--ategory of 
\texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of 
c{-}{-}lass}}%
+\begin{quote}
 d--eftypecv
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypecv\_name 
a{-}{-}rguments...}\hfill[c--ategory of \texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of 
c{-}{-}lass}}%
+\begin{quote}
 d--eftypecv with arguments
+\end{quote}
 
 \noindent\texttt{d{-}{-}efop\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[c--ategory 
on \texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
+\begin{quote}
 d--efop
+\end{quote}
 
 \noindent\texttt{d{-}{-}efop\_name}\hfill[c--ategory on \texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
+\begin{quote}
 d--efop no arg
+\end{quote}
 
 \noindent\texttt{d{-}{-}eftp\_name 
\EmbracOn{}\textnormal{\textsl{a--ttributes...}}\EmbracOff{}}\hfill[c--ategory]
 
 
 
 \index[tp]{d--eftp\_name@\texttt{d{-}{-}eftp\_name}}%
+\begin{quote}
 d--eftp
+\end{quote}
 
 \noindent\texttt{d{-}{-}efun\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Function]
 
 
 
 \index[fn]{d--efun\_name@\texttt{d{-}{-}efun\_name}}%
+\begin{quote}
 d--efun
+\end{quote}
 
 \noindent\texttt{d{-}{-}efmac\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Macro]
 
 
 
 \index[fn]{d--efmac\_name@\texttt{d{-}{-}efmac\_name}}%
+\begin{quote}
 d--efmac
+\end{quote}
 
 \noindent\texttt{d{-}{-}efspec\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Special Form]
 
 
 
 \index[fn]{d--efspec\_name@\texttt{d{-}{-}efspec\_name}}%
+\begin{quote}
 d--efspec
+\end{quote}
 
 \noindent\texttt{d{-}{-}efvar\_name}\hfill[Variable]
 
 
 
 \index[cp]{d--efvar\_name@\texttt{d{-}{-}efvar\_name}}%
+\begin{quote}
 d--efvar
+\end{quote}
 
 \noindent\texttt{d{-}{-}efvar\_name \EmbracOn{}\textnormal{\textsl{arg--var 
arg--var1}}\EmbracOff{}}\hfill[Variable]
 
 
 
 \index[cp]{d--efvar\_name@\texttt{d{-}{-}efvar\_name}}%
+\begin{quote}
 d--efvar with args
+\end{quote}
 
 \noindent\texttt{d{-}{-}efopt\_name}\hfill[User Option]
 
 
 
 \index[cp]{d--efopt\_name@\texttt{d{-}{-}efopt\_name}}%
+\begin{quote}
 d--efopt
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypefun\_name 
a{-}{-}rguments...}\hfill[Function]
 
 
 
 \index[fn]{d--eftypefun\_name@\texttt{d{-}{-}eftypefun\_name}}%
+\begin{quote}
 d--eftypefun
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypevar\_name}\hfill[Variable]
 
 
 
 \index[cp]{d--eftypevar\_name@\texttt{d{-}{-}eftypevar\_name}}%
+\begin{quote}
 d--eftypevar
+\end{quote}
 
 \noindent\texttt{d{-}{-}efivar\_name}\hfill[Instance Variable of 
\texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--efivar\_name of c--lass@\texttt{d{-}{-}efivar\_name of 
c{-}{-}lass}}%
+\begin{quote}
 d--efivar
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeivar\_name}\hfill[Instance Variable 
of \texttt{c{-}{-}lass}]
 
 
 
 \index[cp]{d--eftypeivar\_name of c--lass@\texttt{d{-}{-}eftypeivar\_name of 
c{-}{-}lass}}%
+\begin{quote}
 d--eftypeivar
+\end{quote}
 
 \noindent\texttt{d{-}{-}efmethod\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Method on 
\texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--efmethod\_name on c--lass@\texttt{d{-}{-}efmethod\_name on 
c{-}{-}lass}}%
+\begin{quote}
 d--efmethod
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypemethod\_name 
a{-}{-}rguments...}\hfill[Method on \texttt{c{-}{-}lass}]
 
 
 
 \index[fn]{d--eftypemethod\_name on c--lass@\texttt{d{-}{-}eftypemethod\_name 
on c{-}{-}lass}}%
+\begin{quote}
 d--eftypemethod
+\end{quote}
 
 
 \noindent\texttt{data-type2\leavevmode{}\\name2 arguments2...}\hfill[Function]
@@ -5091,49 +5373,63 @@ d--eftypemethod
 
 
 \index[fn]{name2@\texttt{name2}}%
+\begin{quote}
 aaa2
+\end{quote}
 
 
\noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypefn\_name2}\hfill[c--ategory2]
 
 
 
 \index[fn]{d--eftypefn\_name2@\texttt{d{-}{-}eftypefn\_name2}}%
+\begin{quote}
 d--eftypefn no arg2
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2 
a{-}{-}rguments2...}\hfill[c--ategory2 on \texttt{c{-}{-}lass2}]
 
 
 
 \index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on 
c{-}{-}lass2}}%
+\begin{quote}
 d--eftypeop2
+\end{quote}
 
 
\noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2}\hfill[c--ategory2
 on \texttt{c{-}{-}lass2}]
 
 
 
 \index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on 
c{-}{-}lass2}}%
+\begin{quote}
 d--eftypeop no arg2
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype2 d{-}{-}eftypecv\_name2}\hfill[c--ategory2 of 
\texttt{c{-}{-}lass2}]
 
 
 
 \index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of 
c{-}{-}lass2}}%
+\begin{quote}
 d--eftypecv2
+\end{quote}
 
 \noindent\texttt{t{-}{-}ype2 d{-}{-}eftypecv\_name2 
a{-}{-}rguments2...}\hfill[c--ategory2 of \texttt{c{-}{-}lass2}]
 
 
 
 \index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of 
c{-}{-}lass2}}%
+\begin{quote}
 d--eftypecv with arguments2
+\end{quote}
 
 \noindent\texttt{arg2}\hfill[fun2]
 
 
 
 \index[fn]{arg2@\texttt{arg2}}%
+\begin{quote}
 fff2
+\end{quote}
 
 
 \texttt{@xref\{c{-}{-}{-}hapter@@, cross r{-}{-}{-}ef name@@, 
t{-}{-}{-}itle@@, file n{-}{-}{-}ame@@, ma{-}{-}{-}nual@@\}} See Section 
``t---itle@'' in \textsl{ma---nual@}.
@@ -5510,7 +5806,7 @@ g--roupe
 
 
 In example.
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 <
 >
@@ -5662,7 +5958,7 @@ but , ,\@
 \texttt{@sansserif\{{-}{-}a\}} \textsf{{-}{-}a}
 \texttt{@slanted\{{-}{-}a\}} \textsl{{-}{-}a}
 \texttt{@titlefont\{{-}{-}a\}} \endgroup{}%
-{\huge \bfseries 
--a}\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+{\huge \bfseries 
--a}\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 
 \texttt{@indicateurl\{{-}{-}a\}} `\texttt{{-}{-}a}'
 \texttt{@uref\{{-}{-}a,{-}{-}b\}} \href{--a}{{-}{-}b (\nolinkurl{--a})}
@@ -5709,12 +6005,12 @@ but , ,\@
 \endgroup{}%
 \newpage{}%
 \phantom{blabla}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \texttt{need 1002}
 \endgroup{}%
 \needspace{1.002pt}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \texttt{@clicksequence\{click @click\{\} A\}} click $\rightarrow{}$ A
 After clickstyle $\Rightarrow{}$
@@ -5726,14 +6022,14 @@ $$
 disp--laymath
 f(x) = {1 \over \sigma \sqrt{2\pi}}e^{-{1 \over 2}\left({x-\mu \over 
\sigma}\right)^2}
 $$
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 $$
 \mathbf{``simple-double--three---four----''} \hbox{aa}
 `\hbox{}`simple-double-\hbox{}-three---four----'\hbox{}'
 $$
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 $$
@@ -5743,7 +6039,7 @@ $$
  \ {}\ {} \ {}\-{}  ! @ \} \{ 
 \today{}
 $$
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 $$
@@ -5755,7 +6051,7 @@ u
 \mathord{\text{\TH{}}} \mathord{\text{\dh{}}} \mathord{\text{\th{}}} 
\mathord{\text{\textexclamdown{}}} \mathord{\text{\textquestiondown{}}} 
\mathsterling{}
 \mathord{\text{\textordfeminine{}}} \mathord{\text{\textordmasculine{}}} , 
 $$
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 $$
@@ -5764,13 +6060,13 @@ $$
 \mathord{\text{\guillemotright{}}} \mathord{\text{\guillemotleft{}}} 
\mathord{\text{\guillemotright{}}} \mathord{\text{\guilsinglleft{}}}
 \mathord{\text{\guilsinglright{}}} \euro{} \rightarrow{} \leq{} \geq{}
 $$
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 $$
 \mathbf{b} \mathit{i} \mathrm{r} sc \mathsf{sansserif} slanted
 $$
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 {\ttfamily\textsl{default kbdinputstyle}}
 \endgroup{}%
@@ -5780,9 +6076,9 @@ $$
 \index[cp]{vtable i--tem default kbdinputstyle@\texttt{vtable i{-}{-}tem 
default kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 {\ttfamily\textsl{in example default kbdinputstyle}}
 \endgroup{}%
 \begin{description}
@@ -5791,7 +6087,7 @@ $$
 \index[cp]{vtable i--tem in example default kbdinputstyle@\texttt{vtable 
i{-}{-}tem in example default kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \texttt{code kbdinputstyle}
 \endgroup{}%
@@ -5801,9 +6097,9 @@ $$
 \index[cp]{vtable i--tem code kbdinputstyle@\texttt{vtable i{-}{-}tem code 
kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 \texttt{in example code kbdinputstyle}
 \endgroup{}%
 \begin{description}
@@ -5812,7 +6108,7 @@ $$
 \index[cp]{vtable i--tem in example code kbdinputstyle@\texttt{vtable 
i{-}{-}tem in example code kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \texttt{example kbdinputstyle}
 \endgroup{}%
@@ -5822,9 +6118,9 @@ $$
 \index[cp]{vtable i--tem example kbdinputstyle@\texttt{vtable i{-}{-}tem 
example kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 \texttt{in example example kbdinputstyle}
 \endgroup{}%
 \begin{description}
@@ -5833,7 +6129,7 @@ $$
 \index[cp]{vtable i--tem in example example kbdinputstyle@\texttt{vtable 
i{-}{-}tem in example example kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 {\ttfamily\textsl{distinct kbdinputstyle}}
 \endgroup{}%
@@ -5843,9 +6139,9 @@ $$
 \index[cp]{vtable i--tem distinct kbdinputstyle@\texttt{vtable i{-}{-}tem 
distinct kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 {\ttfamily\textsl{in example distinct kbdinputstyle}}
 \endgroup{}%
 \begin{description}
@@ -5854,502 +6150,502 @@ $$
 \index[cp]{vtable i--tem in example distinct kbdinputstyle@\texttt{vtable 
i{-}{-}tem in example distinct kbdinputstyle}}%
 }}]
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 A quot{-}{-}{-}ation
 \endgroup{}%
 \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
-\textbf{Note:} \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\textbf{Note:} \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 A Note
 \endgroup{}%
 \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
-\textbf{note:} \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\textbf{note:} \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 A note
 \endgroup{}%
 \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
-\textbf{Caution:} 
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\textbf{Caution:} 
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Caution
 \endgroup{}%
 \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
-\textbf{Important:} 
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\textbf{Important:} 
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Important
 \endgroup{}%
 \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
-\textbf{Tip:} \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\textbf{Tip:} \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 a Tip
 \endgroup{}%
 \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
-\textbf{Warning:} 
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\textbf{Warning:} 
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 a Warning.
 \endgroup{}%
 \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
-\textbf{something \'{e} \TeX{}:} 
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\textbf{something \'{e} \TeX{}:} 
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 The something \'{e} \TeX{} is here.
 \endgroup{}%
 \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
-\textbf{@ at the end of line \ {}:} 
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\textbf{@ at the end of line \ {}:} 
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 A @ at the end of the @quotation line.
 \endgroup{}%
 \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
-\textbf{something, other thing:} 
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\textbf{something, other thing:} 
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 something, other thing
 \endgroup{}%
 \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
-\textbf{Note, the note:} 
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\textbf{Note, the note:} 
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Note, the note
 \endgroup{}%
 \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
 \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
 \textbf{Empty:} \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
 \textbf{:} \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
 \textbf{\leavevmode{}\\:} \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 aaa quotation
 \endgroup{}%
 \end{quote}
 \begin{center}
 --- \emph{quotation author}
 \end{center}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 indent in quotation
 \endgroup{}%
 \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
 \noindent exdented quotation line   and dash --- in quotation
 \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Not exdented followed by exdented
 \endgroup{}%
 \noindent exdented quotation line
 \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
 \noindent exdented quotation line
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Followed by not exdented 
 \endgroup{}%
 \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 quotation1
 \endgroup{}%
 \noindent in exdented protected eol \ {}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 following
 \endgroup{}%
 \noindent in exdented a @* \leavevmode{}\\ and following
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 after exdented
 \endgroup{}%
 \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
 \begin{footnotesize}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 A small quot{-}{-}{-}ation
 \endgroup{}%
 \end{footnotesize}
 \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
 \begin{footnotesize}
-\textbf{Note:} \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\textbf{Note:} \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 A small Note
 \endgroup{}%
 \end{footnotesize}
 \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{quote}
 \begin{footnotesize}
-\textbf{something, other thing:} 
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\textbf{something, other thing:} 
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 something, other thing
 \endgroup{}%
 \end{footnotesize}
 \end{quote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{itemize}
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 i{-}{-}temize
 \endgroup{}%
 \end{itemize}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{itemize}[label=+]
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 i{-}{-}tem +
 \endgroup{}%
 \end{itemize}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{itemize}[label=\textbullet{}]
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 b{-}{-}ullet
 \endgroup{}%
 \end{itemize}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{itemize}[label=-]
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 minu{-}{-}s
 \endgroup{}%
 \end{itemize}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{itemize}[label=\emph{after emph}]
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 \endgroup{}%
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 e{-}{-}mph item
 \endgroup{}%
 \end{itemize}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{itemize}[label=\textbullet{} a--n itemize line]
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 \endgroup{}%
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 \index[cp]{index entry within itemize}%
 i{-}{-}tem 1
 \endgroup{}%
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 i{-}{-}tem 2
 \endgroup{}%
 \end{itemize}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{itemize}[label={}]
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 with w a{-}{-}b
 \endgroup{}%
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 with w c{-}{-}d
 \endgroup{}%
 \end{itemize}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{itemize}[label=\hbox{} on a line]
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 line w a{-}{-}b
 \endgroup{}%
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 line with w c{-}{-}d
 \endgroup{}%
 \end{itemize}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{enumerate}[start=1]
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 e{-}{-}numerate
 \endgroup{}%
 \end{enumerate}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{enumerate}[start=3]
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 first third
 \endgroup{}%
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 second third
 \endgroup{}%
 \end{enumerate}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{enumerate}[label=\alph*.]
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 e{-}{-}numerate
 \endgroup{}%
 \end{enumerate}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{enumerate}[label=\alph*.,start=3]
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 first c
 \endgroup{}%
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 second c
 \endgroup{}%
 \end{enumerate}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{tabular}{m{0.4\textwidth} m{0.6\textwidth}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 mu{-}{-}ltitable headitem \endgroup{}%&
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 another tab
 \endgroup{}%
 \\
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 mu{-}{-}ltitable item \endgroup{}%&
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 multitable tab
 \endgroup{}%
 \\
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 mu{-}{-}ltitable item 2 \endgroup{}%&
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 multitable tab 2
 \index[cp]{index entry within multitable}%
 \endgroup{}%
 \\
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 lone mu{-}{-}ltitable item
 \endgroup{}%&\\
 \end{tabular}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{tabular}{m{0.4\textwidth} m{0.6\textwidth}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 truc \endgroup{}%&
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 bidule
 \endgroup{}%
 \\
 \end{tabular}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 e{-}{-}xample  some
    text
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example one arg
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example two args
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example three args
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example four args
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example five args
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 The something \'{e} \TeX{} is here.
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 A @ at the end of the @example line.
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example with empty args
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 example with empty and non empty args mix
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Exam{-}{-}{-}ple
 
 \endgroup{}%
 \noindent Other li---ne
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 not exdented
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent exdented  and dash --- in example
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Not exdented one
 \endgroup{}%
 \noindent exdented two
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Not exdented two
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Example   Hoho.
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Nested Other line
 \endgroup{}%
 \noindent exdented nested other line
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize%
 s{-}{-}mallexample
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \texttt{@noindent} after smallexample.
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize%
 \$ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.guess?rev=HEAD\&content-type=text/plain'
 \$ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEAD\&content-type=text/plain'
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 \noindent{}Less recent versions are also present.
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt {}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt %
 d--isplay
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \footnotesize%
 s--malldisplay
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 l{-}{-}isp
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily\footnotesize%
 s{-}{-}malllisp
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=0em \parskip=0pt 
\parindent=0pt {}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=0em \parskip=0pt 
\parindent=0pt %
 f--ormat
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \footnotesize{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=0em \parskip=0pt 
\parindent=0pt \footnotesize%
 s--mallformat
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{d{-}{-}effn\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[c--ategory]
@@ -6357,10 +6653,12 @@ s--mallformat
 
 
 \index[fn]{d--effn\_name@\texttt{d{-}{-}effn\_name}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}effn
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{de{-}{-}ffn\_name \EmbracOn{}\textnormal{\textsl{ar--guments  
  more args \leavevmode{}\\ even more so}}\EmbracOff{}}\hfill[cate--gory]
@@ -6368,10 +6666,12 @@ d{-}{-}effn
 
 
 \index[fn]{de--ffn\_name@\texttt{de{-}{-}ffn\_name}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 def{-}{-}fn
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{\textsl{i} \EmbracOn{}\textnormal{\textsl{a 
g}}\EmbracOff{}}\hfill[fset]
@@ -6379,7 +6679,7 @@ def{-}{-}fn
 
 
 \index[fn]{i@\texttt{\textsl{i}}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 \index[cp]{index entry within deffn}%
 \endgroup{}%
 \noindent\texttt{truc 
\EmbracOn{}\textnormal{\textsl{}}\EmbracOff{}}\hfill[cmde]
@@ -6440,7 +6740,7 @@ def{-}{-}fn
 
 
 \index[fn]{followed@\texttt{followed}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 \endgroup{}%
 \noindent\texttt{}\hfill[]
 
@@ -6458,7 +6758,7 @@ def{-}{-}fn
 
 
 \index[fn]{deffnx@\texttt{deffnx}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 
 \endgroup{}%
@@ -6467,7 +6767,7 @@ def{-}{-}fn
 
 
 \index[fn]{deffn@\texttt{deffn}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{deffn \EmbracOn{}\textnormal{\textsl{with 
deffnx}}\EmbracOff{}}\hfill[empty]
@@ -6475,14 +6775,14 @@ def{-}{-}fn
 
 
 \index[fn]{deffn@\texttt{deffn}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 \endgroup{}%
 \noindent\texttt{deffnx}\hfill[empty]
 
 
 
 \index[fn]{deffnx@\texttt{deffnx}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{\textsl{i} \EmbracOn{}\textnormal{\textsl{a 
g}}\EmbracOff{}}\hfill[fset]
@@ -6495,10 +6795,12 @@ def{-}{-}fn
 
 
 \index[fn]{truc@\texttt{truc}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 text in def item for second def item
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 
 \endgroup{}%
@@ -6507,10 +6809,12 @@ text in def item for second def item
 
 
 \index[cp]{d--efvr\_name@\texttt{d{-}{-}efvr\_name}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}efvr
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{n{-}{-}ame 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[c--ategory]
@@ -6518,10 +6822,12 @@ d{-}{-}efvr
 
 
 \index[fn]{n--ame@\texttt{n{-}{-}ame}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}effn
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{n{-}{-}ame}\hfill[c--ategory]
@@ -6529,10 +6835,12 @@ d{-}{-}effn
 
 
 \index[fn]{n--ame@\texttt{n{-}{-}ame}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}effn no arg
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypefn\_name 
a{-}{-}rguments...}\hfill[c--ategory]
@@ -6540,10 +6848,12 @@ d{-}{-}effn no arg
 
 
 \index[fn]{d--eftypefn\_name@\texttt{d{-}{-}eftypefn\_name}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}eftypefn
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypefn\_name}\hfill[c--ategory]
@@ -6551,10 +6861,12 @@ d{-}{-}eftypefn
 
 
 \index[fn]{d--eftypefn\_name@\texttt{d{-}{-}eftypefn\_name}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}eftypefn no arg
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeop\_name 
a{-}{-}rguments...}\hfill[c--ategory on \texttt{c{-}{-}lass}]
@@ -6562,10 +6874,12 @@ d{-}{-}eftypefn no arg
 
 
 \index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on 
c{-}{-}lass}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}eftypeop
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeop\_name}\hfill[c--ategory on 
\texttt{c{-}{-}lass}]
@@ -6573,10 +6887,12 @@ d{-}{-}eftypeop
 
 
 \index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on 
c{-}{-}lass}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}eftypeop no arg
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypevr\_name}\hfill[c--ategory]
@@ -6584,10 +6900,12 @@ d{-}{-}eftypeop no arg
 
 
 \index[cp]{d--eftypevr\_name@\texttt{d{-}{-}eftypevr\_name}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}eftypevr
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{d{-}{-}efcv\_name}\hfill[c--ategory of \texttt{c{-}{-}lass}]
@@ -6595,10 +6913,12 @@ d{-}{-}eftypevr
 
 
 \index[cp]{d--efcv\_name@\texttt{d{-}{-}efcv\_name}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}efcv
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{d{-}{-}efcv\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[c--ategory 
of \texttt{c{-}{-}lass}]
@@ -6606,10 +6926,12 @@ d{-}{-}efcv
 
 
 \index[cp]{d--efcv\_name@\texttt{d{-}{-}efcv\_name}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}efcv with arguments
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypecv\_name}\hfill[c--ategory of 
\texttt{c{-}{-}lass}]
@@ -6617,10 +6939,12 @@ d{-}{-}efcv with arguments
 
 
 \index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of 
c{-}{-}lass}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}eftypecv
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypecv\_name 
a{-}{-}rguments...}\hfill[c--ategory of \texttt{c{-}{-}lass}]
@@ -6628,10 +6952,12 @@ d{-}{-}eftypecv
 
 
 \index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of 
c{-}{-}lass}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}eftypecv with arguments
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{d{-}{-}efop\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[c--ategory 
on \texttt{c{-}{-}lass}]
@@ -6639,10 +6965,12 @@ d{-}{-}eftypecv with arguments
 
 
 \index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}efop
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{d{-}{-}efop\_name}\hfill[c--ategory on \texttt{c{-}{-}lass}]
@@ -6650,10 +6978,12 @@ d{-}{-}efop
 
 
 \index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}efop no arg
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{d{-}{-}eftp\_name 
\EmbracOn{}\textnormal{\textsl{a--ttributes...}}\EmbracOff{}}\hfill[c--ategory]
@@ -6661,10 +6991,12 @@ d{-}{-}efop no arg
 
 
 \index[tp]{d--eftp\_name@\texttt{d{-}{-}eftp\_name}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}eftp
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{d{-}{-}efun\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Function]
@@ -6672,10 +7004,12 @@ d{-}{-}eftp
 
 
 \index[fn]{d--efun\_name@\texttt{d{-}{-}efun\_name}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}efun
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{d{-}{-}efmac\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Macro]
@@ -6683,10 +7017,12 @@ d{-}{-}efun
 
 
 \index[fn]{d--efmac\_name@\texttt{d{-}{-}efmac\_name}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}efmac
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{d{-}{-}efspec\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Special Form]
@@ -6694,10 +7030,12 @@ d{-}{-}efmac
 
 
 \index[fn]{d--efspec\_name@\texttt{d{-}{-}efspec\_name}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}efspec
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{d{-}{-}efvar\_name}\hfill[Variable]
@@ -6705,10 +7043,12 @@ d{-}{-}efspec
 
 
 \index[cp]{d--efvar\_name@\texttt{d{-}{-}efvar\_name}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}efvar
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{d{-}{-}efvar\_name \EmbracOn{}\textnormal{\textsl{arg--var 
arg--var1}}\EmbracOff{}}\hfill[Variable]
@@ -6716,10 +7056,12 @@ d{-}{-}efvar
 
 
 \index[cp]{d--efvar\_name@\texttt{d{-}{-}efvar\_name}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}efvar with args
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{d{-}{-}efopt\_name}\hfill[User Option]
@@ -6727,10 +7069,12 @@ d{-}{-}efvar with args
 
 
 \index[cp]{d--efopt\_name@\texttt{d{-}{-}efopt\_name}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}efopt
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypefun\_name 
a{-}{-}rguments...}\hfill[Function]
@@ -6738,10 +7082,12 @@ d{-}{-}efopt
 
 
 \index[fn]{d--eftypefun\_name@\texttt{d{-}{-}eftypefun\_name}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}eftypefun
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypevar\_name}\hfill[Variable]
@@ -6749,10 +7095,12 @@ d{-}{-}eftypefun
 
 
 \index[cp]{d--eftypevar\_name@\texttt{d{-}{-}eftypevar\_name}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}eftypevar
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{d{-}{-}efivar\_name}\hfill[Instance Variable of 
\texttt{c{-}{-}lass}]
@@ -6760,10 +7108,12 @@ d{-}{-}eftypevar
 
 
 \index[cp]{d--efivar\_name of c--lass@\texttt{d{-}{-}efivar\_name of 
c{-}{-}lass}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}efivar
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeivar\_name}\hfill[Instance Variable 
of \texttt{c{-}{-}lass}]
@@ -6771,10 +7121,12 @@ d{-}{-}efivar
 
 
 \index[cp]{d--eftypeivar\_name of c--lass@\texttt{d{-}{-}eftypeivar\_name of 
c{-}{-}lass}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}eftypeivar
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{d{-}{-}efmethod\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Method on 
\texttt{c{-}{-}lass}]
@@ -6782,10 +7134,12 @@ d{-}{-}eftypeivar
 
 
 \index[fn]{d--efmethod\_name on c--lass@\texttt{d{-}{-}efmethod\_name on 
c{-}{-}lass}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}efmethod
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypemethod\_name 
a{-}{-}rguments...}\hfill[Method on \texttt{c{-}{-}lass}]
@@ -6793,10 +7147,12 @@ d{-}{-}efmethod
 
 
 \index[fn]{d--eftypemethod\_name on c--lass@\texttt{d{-}{-}eftypemethod\_name 
on c{-}{-}lass}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}eftypemethod
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 
 \endgroup{}%
@@ -6805,10 +7161,12 @@ d{-}{-}eftypemethod
 
 
 \index[fn]{name2@\texttt{name2}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 aaa2
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 
\noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypefn\_name2}\hfill[c--ategory2]
@@ -6816,10 +7174,12 @@ aaa2
 
 
 \index[fn]{d--eftypefn\_name2@\texttt{d{-}{-}eftypefn\_name2}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}eftypefn no arg2
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2 
a{-}{-}rguments2...}\hfill[c--ategory2 on \texttt{c{-}{-}lass2}]
@@ -6827,10 +7187,12 @@ d{-}{-}eftypefn no arg2
 
 
 \index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on 
c{-}{-}lass2}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}eftypeop2
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 
\noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2}\hfill[c--ategory2
 on \texttt{c{-}{-}lass2}]
@@ -6838,10 +7200,12 @@ d{-}{-}eftypeop2
 
 
 \index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on 
c{-}{-}lass2}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}eftypeop no arg2
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{t{-}{-}ype2 d{-}{-}eftypecv\_name2}\hfill[c--ategory2 of 
\texttt{c{-}{-}lass2}]
@@ -6849,10 +7213,12 @@ d{-}{-}eftypeop no arg2
 
 
 \index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of 
c{-}{-}lass2}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}eftypecv2
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{t{-}{-}ype2 d{-}{-}eftypecv\_name2 
a{-}{-}rguments2...}\hfill[c--ategory2 of \texttt{c{-}{-}lass2}]
@@ -6860,10 +7226,12 @@ d{-}{-}eftypecv2
 
 
 \index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of 
c{-}{-}lass2}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 d{-}{-}eftypecv with arguments2
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{arg2}\hfill[fun2]
@@ -6871,10 +7239,12 @@ d{-}{-}eftypecv with arguments2
 
 
 \index[fn]{arg2@\texttt{arg2}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 fff2
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 
 \texttt{@xref\{c{-}{-}{-}hapter@@, cross r{-}{-}{-}ef name@@, 
t{-}{-}{-}itle@@, file n{-}{-}{-}ame@@, ma{-}{-}{-}nual@@\}} See Section 
``t{-}{-}{-}itle@'' in \textsl{ma{-}{-}{-}nual@}.
@@ -6944,15 +7314,15 @@ Section ``title with uref2 
\href{href://http/myhost.com/index2.html}{uref2 (\nol
 
 \endgroup{}%
 \begin{description}
-\item[] \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item[] \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 \endgroup{}%
 \item[{\parbox[b]{\linewidth}{%
 \textbf{a--strong}}}]
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 l{-}{-}ine
 \endgroup{}%
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{description}
@@ -6962,11 +7332,11 @@ a--asis\\
 b
 \index[cp]{b@\texttt{b}}%
 }}]
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 l{-}{-}ine
 \endgroup{}%
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{description}
@@ -6977,75 +7347,75 @@ l{-}{-}ine
 \GNUTexinfotablestyleemph{b}
 \index[fn]{b@\texttt{b}}%
 }}]
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 l{-}{-}ine
 \endgroup{}%
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{description}
-\item[] \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item[] \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 Title
 \endgroup{}%
 \item[{\parbox[b]{\linewidth}{%
 \texttt{a{-}{-}code}}}]
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Value{-}{-}table code
 \endgroup{}%
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{description}
-\item[] \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item[] \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 Title
 \endgroup{}%
 \item[{\parbox[b]{\linewidth}{%
 \GNUTexinfotablestylesamp{a{-}{-}samp}\\
 \GNUTexinfotablestylesamp{a2{-}{-}samp}}}]
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Value{-}{-}table samp
 \endgroup{}%
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{mdframed}[style=GNUTexinfocartouche]
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 c{-}{-}artouche
 \endgroup{}%
 \end{mdframed}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 f{-}{-}lushleft
 more text
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 f{-}{-}lushright
 more text
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{center}
 ce--ntered line
 \end{center}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{flushleft}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 r{-}{-}raggedright
 more text
 \endgroup{}%
 \end{flushleft}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{verbatim}
@@ -7061,13 +7431,13 @@ This is a very simple texi manual @  <>.
 
 @bye
 \end{verbatim}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{verbatim}
 in verbatim ''
 \end{verbatim}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 
 
@@ -7077,23 +7447,23 @@ $\frac{a < b \texttt{tex \hbox{ code }}}{b}$ ``
 
 \endgroup{}%
 \GNUTexinfonopagebreakheading{\chapter*}{majorheading}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \GNUTexinfonopagebreakheading{\chapter*}{chapheading}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \GNUTexinfonopagebreakheading{\section*}{heading}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \GNUTexinfonopagebreakheading{\subsection*}{subheading}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \GNUTexinfonopagebreakheading{\subsubsection*}{subsubheading}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 
 \texttt{@acronym\{{-}{-}a,an accronym @comma\{\} @enddots\{\}\}} {-}{-}a (an 
accronym , \dots{})
@@ -7159,81 +7529,81 @@ $$
 \breve{a} \check{a}
  ? .
 $$
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 $$
 TeX LaTeX \star{} \mathord{\text{\aa{}}} \circledR{} ^{\circ{}} 
 $$
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 $$
 \mathtt{t} 
 $$
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{itemize}[label=\emph{}]
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 e{-}{-}mph item
 \endgroup{}%
 \end{itemize}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{itemize}[label=\emph{} after emph]
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 e{-}{-}mph item
 \endgroup{}%
 \end{itemize}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{itemize}[label=\textbullet{} a--n itemize line]
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 i{-}{-}tem 1
 \endgroup{}%
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 i{-}{-}tem 2
 \endgroup{}%
 \end{itemize}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{itemize}[label={}]
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 without brace w a{-}{-}b
 \endgroup{}%
-\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 without brace w c{-}{-}d
 \endgroup{}%
 \end{itemize}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{description}
-\item[] \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item[] \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 \endgroup{}%
 \item[{\parbox[b]{\linewidth}{%
 a}}]
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 l{-}{-}ine
 \endgroup{}%
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{description}
-\item[] \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily{}%
+\item[] \par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em 
\parskip=0pt \parindent=0pt \ttfamily%
 \endgroup{}%
 \item[{\parbox[b]{\linewidth}{%
 a--missing style formatting}}]
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 l{-}{-}ine
 \endgroup{}%
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \begin{description}
@@ -7244,11 +7614,11 @@ a\\
 b
 \index[fn]{b@\texttt{b}}%
 }}]
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 l{-}{-}ine
 \endgroup{}%
 \end{description}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{}\hfill[fun]
@@ -7280,7 +7650,7 @@ l{-}{-}ine
 
 
 \index[fn]{followed@\texttt{followed}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 Various deff lines
 \endgroup{}%
 \noindent\texttt{after \EmbracOn{}\textnormal{\textsl{a deff 
item}}\EmbracOff{}}\hfill[truc]
@@ -7288,7 +7658,7 @@ Various deff lines
 
 
 \index[fn]{after@\texttt{after}}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
 \noindent\texttt{\textsl{invalid} \EmbracOn{}\textnormal{\textsl{a 
g}}\EmbracOff{}}\hfill[fsetinv]
@@ -7313,13 +7683,13 @@ Various deff lines
 
 
 
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 g{-}{-}roupe
 \endgroup{}%
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em \parskip=0pt 
\parindent=0pt \ttfamily%
 
 \texttt{@ref\{node\}} node
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]