Update of /cvsroot/py-howto/pyhowto
In directory sc8-pr-cvs1:/tmp/cvs-serv24637
Modified Files:
regex.tex
Log Message:
Comment out this paragraph, because it seems to be impossible to
get [\^] to display correctly in both DVI/PDF output and HTML output
at the same time. The paragraph isn't that critical, and I'm sick of having
to mess with it, endlessly, fruitlessly.
Things like this make me glad that TeX is dying.
Index: regex.tex
===================================================================
RCS file: /cvsroot/py-howto/pyhowto/regex.tex,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -r1.19 -r1.20
*** regex.tex 18 Apr 2003 13:45:41 -0000 1.19
--- regex.tex 18 Apr 2003 13:56:01 -0000 1.20
***************
*** 704,709 ****
\end{verbatim}
! To match a literal \character{\^}, use \regexp{\e\^} or enclose it
! inside a character class, as in \regexp{[{\e}\^]}.
\item[\regexp{\$}] Matches at the end of a line, which is defined as
--- 704,709 ----
\end{verbatim}
! %To match a literal \character{\^}, use \regexp{\e\^} or enclose it
! %inside a character class, as in \regexp{[{\e}\^]}.
\item[\regexp{\$}] Matches at the end of a line, which is defined as
|